diff --git a/build.cmd b/build.cmd index ec7ebd37c..7fa30d27a 100644 --- a/build.cmd +++ b/build.cmd @@ -16,17 +16,21 @@ copy %CACHED_NUGET% .nuget\nuget.exe > nul :restore IF EXIST packages\KoreBuild goto run -.nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre +IF DEFINED BUILDCMD_RELEASE ( + .nuget\NuGet.exe install KoreBuild -version 0.2.1-%BUILDCMD_RELEASE% -ExcludeVersion -o packages -nocache -pre +) ELSE ( + .nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre +) .nuget\NuGet.exe install Sake -version 0.2 -o packages -ExcludeVersion -IF "%1" == "rebuild-package" goto run - -IF "%SKIP_DNX_INSTALL%"=="1" ( - REM On the CI, don't upgrade since the previous installed DNVM is already there. - CALL packages\KoreBuild\build\dnvm use default -runtime CLR -arch x86 +IF "%SKIP_DNX_INSTALL%"=="1" goto run +IF DEFINED BUILDCMD_RELEASE ( + CALL packages\KoreBuild\build\dnvm install 1.0.0-%BUILDCMD_RELEASE% -runtime CLR -arch x86 -a default ) ELSE ( - CALL packages\KoreBuild\build\dnvm upgrade -runtime CLR -arch x86 + CALL packages\KoreBuild\build\dnvm upgrade -runtime CLR -arch x86 ) +CALL packages\KoreBuild\build\dnvm install default -runtime CoreCLR -arch x86 :run -packages\Sake\tools\Sake.exe -I packages\KoreBuild\build -f makefile.shade %* \ No newline at end of file +CALL packages\KoreBuild\build\dnvm use default -runtime CLR -arch x86 +packages\Sake\tools\Sake.exe -I packages\KoreBuild\build -f makefile.shade %* diff --git a/misc/DnuWrapTestSolutions/ConsoleApp1/src/ConsoleApp1/project.json b/misc/DnuWrapTestSolutions/ConsoleApp1/src/ConsoleApp1/project.json index 1a7a7e841..fa19a550e 100644 --- a/misc/DnuWrapTestSolutions/ConsoleApp1/src/ConsoleApp1/project.json +++ b/misc/DnuWrapTestSolutions/ConsoleApp1/src/ConsoleApp1/project.json @@ -1,7 +1,7 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "dependencies": { - "LibraryAlpha": "1.0.0-*" + "LibraryAlpha": "1.0.0-beta5" }, "commands": { "run" : "run" diff --git a/misc/DnuWrapTestSolutions/ConsoleApp1/src/LibraryAlpha/project.json b/misc/DnuWrapTestSolutions/ConsoleApp1/src/LibraryAlpha/project.json index bb78ca616..73d7db884 100644 --- a/misc/DnuWrapTestSolutions/ConsoleApp1/src/LibraryAlpha/project.json +++ b/misc/DnuWrapTestSolutions/ConsoleApp1/src/LibraryAlpha/project.json @@ -1,7 +1,7 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "dependencies": { - "LibraryBeta": "1.0.0-*" + "LibraryBeta": "1.0.0-beta5" }, "frameworks" : { diff --git a/misc/DnuWrapTestSolutions/ConsoleApp1/src/LibraryBeta/project.json b/misc/DnuWrapTestSolutions/ConsoleApp1/src/LibraryBeta/project.json index f12e9cff6..2199e469e 100644 --- a/misc/DnuWrapTestSolutions/ConsoleApp1/src/LibraryBeta/project.json +++ b/misc/DnuWrapTestSolutions/ConsoleApp1/src/LibraryBeta/project.json @@ -1,5 +1,5 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "dependencies": { }, diff --git a/misc/LockFileTestProjects/src/Dnx451AppReferencingNet40Lib/project.json b/misc/LockFileTestProjects/src/Dnx451AppReferencingNet40Lib/project.json index 62fe9eade..6170aa40b 100644 --- a/misc/LockFileTestProjects/src/Dnx451AppReferencingNet40Lib/project.json +++ b/misc/LockFileTestProjects/src/Dnx451AppReferencingNet40Lib/project.json @@ -1,5 +1,5 @@ -{ - "version": "1.0.0-*", +{ + "version": "1.0.0-beta5", "dependencies": { "Net40Lib": "" }, diff --git a/misc/LockFileTestProjects/src/Net40Lib/project.json b/misc/LockFileTestProjects/src/Net40Lib/project.json index d0e70ef82..105b438ef 100644 --- a/misc/LockFileTestProjects/src/Net40Lib/project.json +++ b/misc/LockFileTestProjects/src/Net40Lib/project.json @@ -1,5 +1,5 @@ -{ - "version": "1.0.0-*", +{ + "version": "1.0.0-beta5", "dependencies": { "Newtonsoft.Json": "6.0.6" }, diff --git a/misc/ResourcesTestProjects/testproject/project.json b/misc/ResourcesTestProjects/testproject/project.json index dc7cbcbdf..331aeae31 100644 --- a/misc/ResourcesTestProjects/testproject/project.json +++ b/misc/ResourcesTestProjects/testproject/project.json @@ -1,5 +1,5 @@ -{ - "version": "1.0.0-*", +{ + "version": "1.0.0-beta5", "dependencies": { }, @@ -10,9 +10,9 @@ }, "dnxcore50": { "dependencies": { - "System.Runtime": "4.0.20-beta-*", - "System.Reflection": "4.0.0-beta-*", - "System.Console": "4.0.0-beta-*" + "System.Runtime": "4.0.20-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Console": "4.0.0-beta-23019" } } }, diff --git a/misc/ServicingTestProjects/ServiceableLib1/project.json b/misc/ServicingTestProjects/ServiceableLib1/project.json index 1dc6a519e..5575af2a2 100644 --- a/misc/ServicingTestProjects/ServiceableLib1/project.json +++ b/misc/ServicingTestProjects/ServiceableLib1/project.json @@ -1,4 +1,4 @@ -{ +{ "version": "1.0.0", "frameworks" : { diff --git a/misc/ServicingTestProjects/UnserviceableLib1/project.json b/misc/ServicingTestProjects/UnserviceableLib1/project.json index 1dc6a519e..5575af2a2 100644 --- a/misc/ServicingTestProjects/UnserviceableLib1/project.json +++ b/misc/ServicingTestProjects/UnserviceableLib1/project.json @@ -1,4 +1,4 @@ -{ +{ "version": "1.0.0", "frameworks" : { diff --git a/misc/ServicingTestProjects/UnserviceableLib2/project.json b/misc/ServicingTestProjects/UnserviceableLib2/project.json index 1dc6a519e..5575af2a2 100644 --- a/misc/ServicingTestProjects/UnserviceableLib2/project.json +++ b/misc/ServicingTestProjects/UnserviceableLib2/project.json @@ -1,4 +1,4 @@ -{ +{ "version": "1.0.0", "frameworks" : { diff --git a/misc/XreTestApps/DependentProject/project.json b/misc/XreTestApps/DependentProject/project.json index 78c001096..692423277 100644 --- a/misc/XreTestApps/DependentProject/project.json +++ b/misc/XreTestApps/DependentProject/project.json @@ -8,4 +8,4 @@ "dnx451": {}, "dnxcore50": {} } -} \ No newline at end of file +} diff --git a/samples/HelloShared/project.json b/samples/HelloShared/project.json index 00ca6be64..d2a01cc70 100644 --- a/samples/HelloShared/project.json +++ b/samples/HelloShared/project.json @@ -1,13 +1,13 @@ { - "version": "0.1-beta-*", + "version": "0.1-beta-beta5", "dependencies": { }, "shared": "*.cs", "frameworks": { "dnx451": { }, "dnxcore50": { "dependencies": { - "System.Linq": "4.0.0-beta-*", - "System.Runtime": "4.0.20-beta-*" + "System.Linq": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" } } } diff --git a/samples/HelloShared/project.lock.json b/samples/HelloShared/project.lock.json new file mode 100644 index 000000000..3ee8c544d --- /dev/null +++ b/samples/HelloShared/project.lock.json @@ -0,0 +1,345 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": {}, + "DNXCore,Version=v5.0": { + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Globalization/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + } + }, + "System.IO/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Text.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + } + }, + "System.Threading.Tasks/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + } + } + } + }, + "libraries": { + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23019": { + "sha512": "yuhBA8bL3rZkweMQ+sj00GNiXmbgALKlMWE8BrpEoQFVYjUjL3Hn98trZIHjc7zdmMvKwiSRI0MTEWTLrP6Vqw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "License.rtf", + "ref/dotnet/System.Globalization.dll", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/win8/_._", + "System.Globalization.4.0.0-beta-23019.nupkg", + "System.Globalization.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.IO/4.0.0-beta-23019": { + "sha512": "wIWABGLh1PUiJU+/WtCtYrd+ZyYM3i5FSPe51Fcx8mTrSQpBE1DACFR4B5wS3KWbtueFY0Dysty9UfT5hyj4Jw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "License.rtf", + "ref/dotnet/System.IO.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.dll", + "ref/win8/_._", + "System.IO.4.0.0-beta-23019.nupkg", + "System.IO.4.0.0-beta-23019.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._", + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.0-beta-23019": { + "sha512": "6pXM3HhawTxVVDlSIkPwB6St+BHpKoCy9Q68cTTDXiuh7R+RCzLZ1WzLeDSJEOMe8rjKsd44EZAHYP97fW9i4w==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "License.rtf", + "ref/dotnet/System.Reflection.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.dll", + "ref/win8/_._", + "System.Reflection.4.0.0-beta-23019.nupkg", + "System.Reflection.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Text.Encoding/4.0.0-beta-23019": { + "sha512": "3AKmu2GxeVRk3wrBLoZXN3EhMeToZpV9KB/fjOCJu3TXZGwT3x/GwXMK9S3giYFLppHABDuVSBM1X7/71ujf4Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "License.rtf", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/win8/_._", + "System.Text.Encoding.4.0.0-beta-23019.nupkg", + "System.Text.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Threading.Tasks/4.0.0-beta-23019": { + "sha512": "y3+puoROfucGrjJkHwvSu0BsoBvFFzFWnJvTbQnM20qgKZsH8NMPTUBEOHa/gNilkc8fTGsM7sX3Iug/QiM0Xg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "License.rtf", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/win8/_._", + "System.Threading.Tasks.4.0.0-beta-23019.nupkg", + "System.Threading.Tasks.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [ + "System.Linq >= 4.0.0-beta-23019", + "System.Runtime >= 4.0.20-beta-23019" + ] + } +} \ No newline at end of file diff --git a/samples/HelloWorld/project.json b/samples/HelloWorld/project.json index ccb017577..b5c37b446 100644 --- a/samples/HelloWorld/project.json +++ b/samples/HelloWorld/project.json @@ -1,9 +1,9 @@ { - "version": "0.1-beta-*", + "version": "0.1-beta-beta5", "exclude": "more/*.cs", "dependencies": { - "HelloShared": { "version": "0.1-beta-*", "type": "build" }, - "Microsoft.Framework.Runtime.Roslyn.Abstractions": "1.0.0-*" + "HelloShared": { "version": "0.1-beta-beta5", "type": "build" }, + "Microsoft.Framework.Runtime.Roslyn.Abstractions": "1.0.0-beta5" }, "commands": { "hi": "HelloWorld --mode amazing", @@ -23,13 +23,13 @@ }, "dnxcore50": { "dependencies": { - "System.IO": "4.0.10-beta-*", - "System.Console": "4.0.0-beta-*", - "System.Linq": "4.0.0-beta-*", - "System.Reflection": "4.0.10-beta-*", - "System.Runtime": "4.0.20-beta-*", - "System.Threading.Tasks": "4.0.10-beta-*", - "System.ComponentModel": "4.0.0-beta-*" + "System.IO": "4.0.10-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019" } } } diff --git a/samples/HelloWorld/project.lock.json b/samples/HelloWorld/project.lock.json new file mode 100644 index 000000000..b97e3b34a --- /dev/null +++ b/samples/HelloWorld/project.lock.json @@ -0,0 +1,756 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": {}, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Globalization/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "sha512": "3OKYZSMwSsgHA7uyx3U3BqAzdJLHKhR6Y95mhuOFRgg2Piw3vKEPmxmG/IQiD0qeCL0pbkcCQzpa60Yo1Jn0yg==", + "files": [ + "analyzers/portable50/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Analyzers.nuspec", + "ThirdPartyNotices.rtf", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "sha512": "B5aFOpPSQeEG5pafehkWJvJgTzI7dN9jLWqX6rk8u4RSQHiAldwRgniGo+jcKJGbdsxFUQISjZsvaNY+k9kXvg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "sha512": "iS92guFlOKM4GNXwuWkQDgMwZDWxEny9LsilhAGyc8gfdX1rmbOrQTLR6ti8CQA3Jk0s9UB7O1MZmI8lKvcTMw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Immutable/1.1.36": { + "serviceable": true, + "sha512": "MOlivTIeAIQPPMUPWIIoMCvZczjFRLYUWSYwqi1szu8QPyeIbsaPeI+hpXe1DzTxNwnRnmfYaoToi6kXIfSPNg==", + "files": [ + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "License-Stable.rtf", + "System.Collections.Immutable.1.1.36.nupkg", + "System.Collections.Immutable.1.1.36.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23019": { + "sha512": "yuhBA8bL3rZkweMQ+sj00GNiXmbgALKlMWE8BrpEoQFVYjUjL3Hn98trZIHjc7zdmMvKwiSRI0MTEWTLrP6Vqw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "License.rtf", + "ref/dotnet/System.Globalization.dll", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/win8/_._", + "System.Globalization.4.0.0-beta-23019.nupkg", + "System.Globalization.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._", + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "HelloShared >= 0.1-beta-beta5", + "Microsoft.Framework.Runtime.Roslyn.Abstractions >= 1.0.0-beta5" + ], + "DNX,Version=v4.5.1": [ + "fx/System.Collections ", + "fx/System.IO ", + "fx/System.Runtime ", + "fx/System.Xml ", + "fx/System.Xml.Linq ", + "fx/System.Threading.Tasks ", + "fx/System.Text.Encoding " + ], + "DNXCore,Version=v5.0": [ + "System.IO >= 4.0.10-beta-23019", + "System.Console >= 4.0.0-beta-23019", + "System.Linq >= 4.0.0-beta-23019", + "System.Reflection >= 4.0.10-beta-23019", + "System.Runtime >= 4.0.20-beta-23019", + "System.Threading.Tasks >= 4.0.10-beta-23019", + "System.ComponentModel >= 4.0.0-beta-23019" + ] + } +} \ No newline at end of file diff --git a/src/Microsoft.Framework.ApplicationHost/project.json b/src/Microsoft.Framework.ApplicationHost/project.json index 2e050fd4c..fdab5e083 100644 --- a/src/Microsoft.Framework.ApplicationHost/project.json +++ b/src/Microsoft.Framework.ApplicationHost/project.json @@ -1,27 +1,27 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "compilationOptions": { "define": [ "TRACE" ], "warningsAsErrors": true }, "dependencies": { - "Microsoft.Framework.CommandLineUtils.Sources": { "version": "1.0.0-*", "type": "build" }, - "Microsoft.Framework.Runtime": "1.0.0-*", - "Microsoft.Framework.Runtime.Internals": { "version": "1.0.0-*", "type": "build" }, - "Microsoft.Framework.Runtime.Sources": { "version": "1.0.0-*", "type": "build" }, - "Microsoft.Framework.Runtime.Abstractions": "1.0.0-*" + "Microsoft.Framework.CommandLineUtils.Sources": { "version": "1.0.0-beta5", "type": "build" }, + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Internals": { "version": "1.0.0-beta5", "type": "build" }, + "Microsoft.Framework.Runtime.Sources": { "version": "1.0.0-beta5", "type": "build" }, + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" }, "frameworks": { "dnx451": { }, "dnxcore50": { "dependencies": { - "System.Collections": "4.0.10-beta-*", - "System.ComponentModel": "4.0.0-beta-*", - "System.Console": "4.0.0-beta-*", - "System.Diagnostics.Debug": "4.0.10-beta-*", - "System.Linq": "4.0.0-beta-*", - "System.Reflection": "4.0.10-beta-*", - "System.Runtime": "4.0.20-beta-*", - "System.Runtime.Extensions": "4.0.10-beta-*", - "System.Runtime.InteropServices": "4.0.20-beta-*", - "System.Threading.Tasks": "4.0.10-beta-*" + "System.Collections": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" } } }, diff --git a/src/Microsoft.Framework.ApplicationHost/project.lock.json b/src/Microsoft.Framework.ApplicationHost/project.lock.json new file mode 100644 index 000000000..78879e605 --- /dev/null +++ b/src/Microsoft.Framework.ApplicationHost/project.lock.json @@ -0,0 +1,1739 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": {}, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Dynamic.Runtime": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Resources.ReaderWriter": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Threading.Timer": "4.0.0-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019", + "System.Xml.XmlSerializer": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.AppContext": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Loader": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "System.AppContext/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.ObjectModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ReaderWriter.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ReaderWriter.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Loader.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XmlDocument": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Xml.XmlSerializer.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "sha512": "3OKYZSMwSsgHA7uyx3U3BqAzdJLHKhR6Y95mhuOFRgg2Piw3vKEPmxmG/IQiD0qeCL0pbkcCQzpa60Yo1Jn0yg==", + "files": [ + "analyzers/portable50/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Analyzers.nuspec", + "ThirdPartyNotices.rtf", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "sha512": "B5aFOpPSQeEG5pafehkWJvJgTzI7dN9jLWqX6rk8u4RSQHiAldwRgniGo+jcKJGbdsxFUQISjZsvaNY+k9kXvg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "sha512": "iS92guFlOKM4GNXwuWkQDgMwZDWxEny9LsilhAGyc8gfdX1rmbOrQTLR6ti8CQA3Jk0s9UB7O1MZmI8lKvcTMw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "System.AppContext/4.0.0-beta-23019": { + "sha512": "dtYrJWnRhdNNbuTQf8ZhL9FhR+zef7ExSEHwqCF7e3YTPcL3XhUF7SD4Ij2rF3DJNMWT/r/8dgAs/9mNmOD66w==", + "files": [ + "lib/DNXCore50/System.AppContext.dll", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "ref/dotnet/System.AppContext.dll", + "ref/net46/System.AppContext.dll", + "System.AppContext.4.0.0-beta-23019.nupkg", + "System.AppContext.4.0.0-beta-23019.nupkg.sha512", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.36": { + "serviceable": true, + "sha512": "MOlivTIeAIQPPMUPWIIoMCvZczjFRLYUWSYwqi1szu8QPyeIbsaPeI+hpXe1DzTxNwnRnmfYaoToi6kXIfSPNg==", + "files": [ + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "License-Stable.rtf", + "System.Collections.Immutable.1.1.36.nupkg", + "System.Collections.Immutable.1.1.36.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "sha512": "GB0ki4TLNwFKcT7ZesteTERlZmBytRitEbdD6O1zVwDaeqqY+FZb2/+CH2Q5U1rN7qY9YmM70PxtyPG1t31zkg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "sha512": "yhXko8+R8fy0RERn6xQltYEhChBNyGEQgntwjHqNBc3x1M7wvg+Ye72Bh1QVQfnMIXZ0tG8XSrQs8hJe8KjYjg==", + "files": [ + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._", + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "sha512": "+xsD0H46/EB88848d9cHel2WVbUWlM/Y/k+tuY5lp2jXSwV8zMJ6F3TjMqeUZwWtUUavw+AN7D0a4ZoGVs/Rcw==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._", + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "sha512": "YjnsUzXsXx8BdqaXQ2U/hrz4CWdlAfcoYccqO3BSKCpPZPFEbKizEiHR9KJGcqf9gQ4lzRkhlM3xiMIjX27mUQ==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.ObjectModel/4.0.0-beta-23019": { + "sha512": "shmwP3YgLhSx8+njPPb82OULH+SteCr8fZ6XaQK8dfuB3UCqqUfITYPW1zknMotwsnBZpVPdXFWmwvTE0XTCGA==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "License.rtf", + "ref/dotnet/System.ObjectModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/win8/_._", + "System.ObjectModel.4.0.0-beta-23019.nupkg", + "System.ObjectModel.4.0.0-beta-23019.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "sha512": "FAp9TewUfCxaydPyY5Glv2/3KdxD5vpZ4qgx26OWV6xtytGinnXpHsxownQKKe7WkeqlRjy7s7cRgjTKZ50AQA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "sha512": "5OsJjj6G9WY8aV3EWfI03dJoqH0RvILtP2GJ16JQf90pV0kVmgGsFQSqh+lcnnexh4CEje7DDxF748o/8KamWA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/net45/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "sha512": "5/WcPvsdnw0d8rwwsCgQKoo9oXFQA1gMHtyNcYjelDjaaYC/dYoU7Eo0JdP+0PMgy9FnBOHVjRHOTcJ2HIjefA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "sha512": "9J0+T+ChJ9rlYTcrJiTOLfTJHuHuenol1eOJgiF8yJK1rDozU2Wnex5kXus5Z8/SerMSCUofUOx4c2WYX/tNow==", + "files": [ + "lib/DNXCore50/System.Resources.ReaderWriter.dll", + "lib/net46/System.Resources.ReaderWriter.dll", + "ref/dotnet/System.Resources.ReaderWriter.dll", + "ref/net46/System.Resources.ReaderWriter.dll", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ReaderWriter.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "sha512": "YuxWBHBbvN5ILjno2DBjgW2NXQscfJFvIfQEOGHwChM5Q9//EO0LZfErH7fTk1n0IVcorDu/HTnkqr2NuK/t5w==", + "files": [ + "lib/DNXCore50/System.Runtime.Loader.dll", + "ref/dotnet/System.Runtime.Loader.dll", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Loader.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "sha512": "7gCVMRey2Nji6WDKleSigGBJuy4gMKXGeVqauROuFoTygHNtFYaUTeToGMy7Obsi+tzgnyEYfd+9uY3Ifc/SjA==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "sha512": "ECx+zZlXCfhkpZ0PUVrzp5UB6zRdzi94LsQhm7DtUS/uB17I3sYh0RsnMu/5jTULByQ1Ju4K/JTbM28InXO/PQ==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.dll", + "ref/net46/System.Threading.Thread.dll", + "System.Threading.Thread.4.0.0-beta-23019.nupkg", + "System.Threading.Thread.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "sha512": "nGA/Vt5zC8zGQ8r9mSdRTWzVMXh1YgJH9XH8x5OQZVLh0hn6CSC32RrmUrmKLpxKd64B9mbKoubeLUqXlf/m8g==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "ref/dotnet/System.Threading.Timer.dll", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/win81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.0-beta-23019.nupkg", + "System.Threading.Timer.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "sha512": "pyyzY5FFoZziGVDFyO5VLM094cX7jNN+01EsSJEFreje5uzSz6aKwIPgTe/l2CFiXYFoUNr0O6D3GEc8jPmbPg==", + "files": [ + "lib/dotnet/System.Xml.XDocument.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net46/_._", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "sha512": "b1SOLM9FhBCL4gW3OP5b/HV1JVb1hfsF4D4wBxyUIZMXcP3kbm4F+bYvOB0cSeJ1F8oVnCCGivSk1/aSEQ86XQ==", + "files": [ + "lib/dotnet/System.Xml.XmlDocument.dll", + "lib/net46/System.Xml.XmlDocument.dll", + "ref/dotnet/System.Xml.XmlDocument.dll", + "ref/net46/System.Xml.XmlDocument.dll", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg.sha512", + "System.Xml.XmlDocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "sha512": "BqXNr12cUj02qymL4Nhowcsfz840wLSMPfU0T8i0JGPPIx38txMwUA2pnrYWsYmDmyIgw7GGUhrjXz6WJpjgwg==", + "files": [ + "lib/DNXCore50/System.Xml.XmlSerializer.dll", + "lib/net46/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "ref/dotnet/System.Xml.XmlSerializer.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XmlSerializer.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.Framework.CommandLineUtils.Sources >= 1.0.0-beta5", + "Microsoft.Framework.Runtime >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Internals >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Sources >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions >= 1.0.0-beta5" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [ + "System.Collections >= 4.0.10-beta-23019", + "System.ComponentModel >= 4.0.0-beta-23019", + "System.Console >= 4.0.0-beta-23019", + "System.Diagnostics.Debug >= 4.0.10-beta-23019", + "System.Linq >= 4.0.0-beta-23019", + "System.Reflection >= 4.0.10-beta-23019", + "System.Runtime >= 4.0.20-beta-23019", + "System.Runtime.Extensions >= 4.0.10-beta-23019", + "System.Runtime.InteropServices >= 4.0.20-beta-23019", + "System.Threading.Tasks >= 4.0.10-beta-23019" + ] + } +} \ No newline at end of file diff --git a/src/Microsoft.Framework.CommandLineUtils.Sources/project.json b/src/Microsoft.Framework.CommandLineUtils.Sources/project.json index ba73d2b8d..dba481e91 100644 --- a/src/Microsoft.Framework.CommandLineUtils.Sources/project.json +++ b/src/Microsoft.Framework.CommandLineUtils.Sources/project.json @@ -1,13 +1,13 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "compilationOptions" : { "define" : ["TRACE"], "warningsAsErrors": true }, "shared": "**/*.cs", "frameworks" : { "dnx451" : { }, "dnxcore50" : { "dependencies": { - "System.Collections": "4.0.10-beta-*", - "System.Runtime": "4.0.20-beta-*" + "System.Collections": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019" } } } diff --git a/src/Microsoft.Framework.CommandLineUtils.Sources/project.lock.json b/src/Microsoft.Framework.CommandLineUtils.Sources/project.lock.json new file mode 100644 index 000000000..6e165463d --- /dev/null +++ b/src/Microsoft.Framework.CommandLineUtils.Sources/project.lock.json @@ -0,0 +1,87 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": {}, + "DNXCore,Version=v5.0": { + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + } + } + }, + "libraries": { + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [ + "System.Collections >= 4.0.10-beta-23019", + "System.Runtime >= 4.0.20-beta-23019" + ] + } +} \ No newline at end of file diff --git a/src/Microsoft.Framework.DesignTimeHost.Abstractions/project.json b/src/Microsoft.Framework.DesignTimeHost.Abstractions/project.json index 70ad070de..9e76c84ae 100644 --- a/src/Microsoft.Framework.DesignTimeHost.Abstractions/project.json +++ b/src/Microsoft.Framework.DesignTimeHost.Abstractions/project.json @@ -1,16 +1,16 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "description": "ASP.NET 5 interfaces to take advantage of capabilities exposed by the design time host.", "compilationOptions": { "warningsAsErrors": true }, "dependencies": { - "Microsoft.Framework.Runtime.Abstractions": "1.0.0-*", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", "Newtonsoft.Json": "6.0.6" }, "frameworks": { "dnx451": { }, "dnxcore50": { "dependencies": { - "System.Runtime": "4.0.20-beta-*" + "System.Runtime": "4.0.20-beta-23019" } } } diff --git a/src/Microsoft.Framework.DesignTimeHost.Abstractions/project.lock.json b/src/Microsoft.Framework.DesignTimeHost.Abstractions/project.lock.json new file mode 100644 index 000000000..ffbf8d9f8 --- /dev/null +++ b/src/Microsoft.Framework.DesignTimeHost.Abstractions/project.lock.json @@ -0,0 +1,329 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Text.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "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/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/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+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Text.Encoding/4.0.0-beta-23019": { + "sha512": "3AKmu2GxeVRk3wrBLoZXN3EhMeToZpV9KB/fjOCJu3TXZGwT3x/GwXMK9S3giYFLppHABDuVSBM1X7/71ujf4Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "License.rtf", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/win8/_._", + "System.Text.Encoding.4.0.0-beta-23019.nupkg", + "System.Text.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.Framework.Runtime.Abstractions >= 1.0.0-beta5", + "Newtonsoft.Json >= 6.0.6" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [ + "System.Runtime >= 4.0.20-beta-23019" + ] + } +} \ No newline at end of file diff --git a/src/Microsoft.Framework.DesignTimeHost/project.json b/src/Microsoft.Framework.DesignTimeHost/project.json index 51ab5786a..b7976e761 100644 --- a/src/Microsoft.Framework.DesignTimeHost/project.json +++ b/src/Microsoft.Framework.DesignTimeHost/project.json @@ -1,14 +1,14 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "dependencies": { - "Microsoft.Framework.DesignTimeHost.Abstractions": "1.0.0-*", - "Microsoft.Framework.NotNullAttribute.Sources": { "version": "1.0.0-*", "type": "build" }, - "Microsoft.Framework.Runtime": "1.0.0-*", - "Microsoft.Framework.Runtime.Compilation.DesignTime": "1.0.0-*", - "Microsoft.Framework.Runtime.Compilation.Sources": { "version": "1.0.0-*", "type": "build" }, - "Microsoft.Framework.Runtime.Sources": { "version": "1.0.0-*", "type": "build" }, - "Microsoft.Framework.Runtime.Abstractions": "1.0.0-*", - "Microsoft.Framework.Runtime.Roslyn": "1.0.0-*", + "Microsoft.Framework.DesignTimeHost.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.NotNullAttribute.Sources": { "version": "1.0.0-beta5", "type": "build" }, + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Compilation.DesignTime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Compilation.Sources": { "version": "1.0.0-beta5", "type": "build" }, + "Microsoft.Framework.Runtime.Sources": { "version": "1.0.0-beta5", "type": "build" }, + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Roslyn": "1.0.0-beta5", "Newtonsoft.Json": "6.0.6" }, "compilationOptions": { "define": [ "TRACE" ], "warningsAsErrors": true }, @@ -20,9 +20,9 @@ }, "dnxcore50": { "dependencies": { - "System.Diagnostics.Process": "4.0.0-beta-*", - "System.Net.Primitives": "4.0.10-beta-*", - "System.Threading.ThreadPool": "4.0.10-beta-*" + "System.Diagnostics.Process": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" } } }, diff --git a/src/Microsoft.Framework.DesignTimeHost/project.lock.json b/src/Microsoft.Framework.DesignTimeHost/project.lock.json new file mode 100644 index 000000000..8bf3e66b3 --- /dev/null +++ b/src/Microsoft.Framework.DesignTimeHost/project.lock.json @@ -0,0 +1,2356 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": {}, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Dynamic.Runtime": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Resources.ReaderWriter": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Threading.Timer": "4.0.0-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019", + "System.Xml.XmlSerializer": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.AppContext": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Loader": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "System.AppContext/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ReaderWriter.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ReaderWriter.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XmlDocument": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Xml.XmlSerializer.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "sha512": "3OKYZSMwSsgHA7uyx3U3BqAzdJLHKhR6Y95mhuOFRgg2Piw3vKEPmxmG/IQiD0qeCL0pbkcCQzpa60Yo1Jn0yg==", + "files": [ + "analyzers/portable50/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Analyzers.nuspec", + "ThirdPartyNotices.rtf", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "sha512": "B5aFOpPSQeEG5pafehkWJvJgTzI7dN9jLWqX6rk8u4RSQHiAldwRgniGo+jcKJGbdsxFUQISjZsvaNY+k9kXvg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "sha512": "iS92guFlOKM4GNXwuWkQDgMwZDWxEny9LsilhAGyc8gfdX1rmbOrQTLR6ti8CQA3Jk0s9UB7O1MZmI8lKvcTMw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "sha512": "hgETnks4ovIE4ySkFs6mQ+QN195kOIM+3IxgIqQFYtuF9tfNdw1/xkkwm9ip7vUifJlNC4O5d9o7CJ2ou46GyA==", + "files": [ + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll", + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.xml", + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll", + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.xml", + "lib/net45/Microsoft.Framework.NotNullAttribute.Sources.dll", + "lib/net45/Microsoft.Framework.NotNullAttribute.Sources.xml", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "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/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/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+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "System.AppContext/4.0.0-beta-23019": { + "sha512": "dtYrJWnRhdNNbuTQf8ZhL9FhR+zef7ExSEHwqCF7e3YTPcL3XhUF7SD4Ij2rF3DJNMWT/r/8dgAs/9mNmOD66w==", + "files": [ + "lib/DNXCore50/System.AppContext.dll", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "ref/dotnet/System.AppContext.dll", + "ref/net46/System.AppContext.dll", + "System.AppContext.4.0.0-beta-23019.nupkg", + "System.AppContext.4.0.0-beta-23019.nupkg.sha512", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.36": { + "serviceable": true, + "sha512": "MOlivTIeAIQPPMUPWIIoMCvZczjFRLYUWSYwqi1szu8QPyeIbsaPeI+hpXe1DzTxNwnRnmfYaoToi6kXIfSPNg==", + "files": [ + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "License-Stable.rtf", + "System.Collections.Immutable.1.1.36.nupkg", + "System.Collections.Immutable.1.1.36.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "sha512": "ijnoxLU+SrSf1AItfZOwtnzyx7yEi+WJtKa3d2X93Xf5YHlRsL4RwMZ10M9gLE8E+Rpi3ZJM5wAXi6OFSprDtw==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/net46/System.Collections.NonGeneric.dll", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "sha512": "1vuXv89pElI0JeDhnXokMyy9VkLpkDFa+oU3selb5uhHfzVswH1etFBumZ0VKKvTOAnm8AS/3ZDXAVlRjywq3A==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Process.dll", + "lib/net46/System.Diagnostics.Process.dll", + "ref/dotnet/System.Diagnostics.Process.dll", + "ref/net46/System.Diagnostics.Process.dll", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Process.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "sha512": "GB0ki4TLNwFKcT7ZesteTERlZmBytRitEbdD6O1zVwDaeqqY+FZb2/+CH2Q5U1rN7qY9YmM70PxtyPG1t31zkg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "sha512": "yhXko8+R8fy0RERn6xQltYEhChBNyGEQgntwjHqNBc3x1M7wvg+Ye72Bh1QVQfnMIXZ0tG8XSrQs8hJe8KjYjg==", + "files": [ + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._", + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "sha512": "+xsD0H46/EB88848d9cHel2WVbUWlM/Y/k+tuY5lp2jXSwV8zMJ6F3TjMqeUZwWtUUavw+AN7D0a4ZoGVs/Rcw==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._", + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "sha512": "YjnsUzXsXx8BdqaXQ2U/hrz4CWdlAfcoYccqO3BSKCpPZPFEbKizEiHR9KJGcqf9gQ4lzRkhlM3xiMIjX27mUQ==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._", + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "sha512": "4NWuSdsFSf21iJkd+NQaE2OwtNaKGdXIbBbQmfE43evHl6fUII38wwNnooWtF0avCEyU6BOdUTiwoZAUZyQwcA==", + "files": [ + "lib/DNXCore50/System.Net.Sockets.dll", + "ref/dotnet/System.Net.Sockets.dll", + "System.Net.Sockets.4.0.10-beta-23019.nupkg", + "System.Net.Sockets.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Sockets.nuspec" + ] + }, + "System.ObjectModel/4.0.0-beta-23019": { + "sha512": "shmwP3YgLhSx8+njPPb82OULH+SteCr8fZ6XaQK8dfuB3UCqqUfITYPW1zknMotwsnBZpVPdXFWmwvTE0XTCGA==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "License.rtf", + "ref/dotnet/System.ObjectModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/win8/_._", + "System.ObjectModel.4.0.0-beta-23019.nupkg", + "System.ObjectModel.4.0.0-beta-23019.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "sha512": "FAp9TewUfCxaydPyY5Glv2/3KdxD5vpZ4qgx26OWV6xtytGinnXpHsxownQKKe7WkeqlRjy7s7cRgjTKZ50AQA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "sha512": "5OsJjj6G9WY8aV3EWfI03dJoqH0RvILtP2GJ16JQf90pV0kVmgGsFQSqh+lcnnexh4CEje7DDxF748o/8KamWA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/net45/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "sha512": "5/WcPvsdnw0d8rwwsCgQKoo9oXFQA1gMHtyNcYjelDjaaYC/dYoU7Eo0JdP+0PMgy9FnBOHVjRHOTcJ2HIjefA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "sha512": "9J0+T+ChJ9rlYTcrJiTOLfTJHuHuenol1eOJgiF8yJK1rDozU2Wnex5kXus5Z8/SerMSCUofUOx4c2WYX/tNow==", + "files": [ + "lib/DNXCore50/System.Resources.ReaderWriter.dll", + "lib/net46/System.Resources.ReaderWriter.dll", + "ref/dotnet/System.Resources.ReaderWriter.dll", + "ref/net46/System.Resources.ReaderWriter.dll", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ReaderWriter.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "sha512": "YuxWBHBbvN5ILjno2DBjgW2NXQscfJFvIfQEOGHwChM5Q9//EO0LZfErH7fTk1n0IVcorDu/HTnkqr2NuK/t5w==", + "files": [ + "lib/DNXCore50/System.Runtime.Loader.dll", + "ref/dotnet/System.Runtime.Loader.dll", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Loader.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Security.Claims/4.0.0-beta-23019": { + "sha512": "kKseHxGh5pWjM43MZWtub/ZyBWUV3RHNSJuUtTzapeQD2qND6pGGNekMXcxmEZOxrKwFEBAeTlcgmWo/2e6/SQ==", + "files": [ + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll", + "System.Security.Claims.4.0.0-beta-23019.nupkg", + "System.Security.Claims.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.0-beta-23019": { + "sha512": "2zkK0eJOfso/Jo+77NVXDoJRggzL0jM0ayeXz+vD8pK9pIRnhpWJVbaGmT7MPBWW9KbPwtbJyXejpUS2rBflUQ==", + "files": [ + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._", + "System.Security.Principal.4.0.0-beta-23019.nupkg", + "System.Security.Principal.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "sha512": "FYvKKTbncuJCMnc1TmccsJlGSjIQrUJPymt2R3o5uSV1plyGD9V3san/rpq2IO4kDbHjGrQjEtZlbehwUucB5Q==", + "files": [ + "lib/DNXCore50/System.Security.Principal.Windows.dll", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/dotnet/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.Windows.nuspec" + ] + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll", + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "sha512": "7gCVMRey2Nji6WDKleSigGBJuy4gMKXGeVqauROuFoTygHNtFYaUTeToGMy7Obsi+tzgnyEYfd+9uY3Ifc/SjA==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "sha512": "ECx+zZlXCfhkpZ0PUVrzp5UB6zRdzi94LsQhm7DtUS/uB17I3sYh0RsnMu/5jTULByQ1Ju4K/JTbM28InXO/PQ==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.dll", + "ref/net46/System.Threading.Thread.dll", + "System.Threading.Thread.4.0.0-beta-23019.nupkg", + "System.Threading.Thread.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "sha512": "nGA/Vt5zC8zGQ8r9mSdRTWzVMXh1YgJH9XH8x5OQZVLh0hn6CSC32RrmUrmKLpxKd64B9mbKoubeLUqXlf/m8g==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "ref/dotnet/System.Threading.Timer.dll", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/win81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.0-beta-23019.nupkg", + "System.Threading.Timer.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "sha512": "pyyzY5FFoZziGVDFyO5VLM094cX7jNN+01EsSJEFreje5uzSz6aKwIPgTe/l2CFiXYFoUNr0O6D3GEc8jPmbPg==", + "files": [ + "lib/dotnet/System.Xml.XDocument.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net46/_._", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "sha512": "b1SOLM9FhBCL4gW3OP5b/HV1JVb1hfsF4D4wBxyUIZMXcP3kbm4F+bYvOB0cSeJ1F8oVnCCGivSk1/aSEQ86XQ==", + "files": [ + "lib/dotnet/System.Xml.XmlDocument.dll", + "lib/net46/System.Xml.XmlDocument.dll", + "ref/dotnet/System.Xml.XmlDocument.dll", + "ref/net46/System.Xml.XmlDocument.dll", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg.sha512", + "System.Xml.XmlDocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "sha512": "BqXNr12cUj02qymL4Nhowcsfz840wLSMPfU0T8i0JGPPIx38txMwUA2pnrYWsYmDmyIgw7GGUhrjXz6WJpjgwg==", + "files": [ + "lib/DNXCore50/System.Xml.XmlSerializer.dll", + "lib/net46/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "ref/dotnet/System.Xml.XmlSerializer.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XmlSerializer.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.Framework.DesignTimeHost.Abstractions >= 1.0.0-beta5", + "Microsoft.Framework.NotNullAttribute.Sources >= 1.0.0-beta5", + "Microsoft.Framework.Runtime >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Compilation.DesignTime >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Compilation.Sources >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Sources >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Roslyn >= 1.0.0-beta5", + "Newtonsoft.Json >= 6.0.6" + ], + "DNX,Version=v4.5.1": [ + "fx/System.Net " + ], + "DNXCore,Version=v5.0": [ + "System.Diagnostics.Process >= 4.0.0-beta-23019", + "System.Net.Primitives >= 4.0.10-beta-23019", + "System.Threading.ThreadPool >= 4.0.10-beta-23019" + ] + } +} \ No newline at end of file diff --git a/src/Microsoft.Framework.PackageManager/project.json b/src/Microsoft.Framework.PackageManager/project.json index 6ab25431d..aee67132a 100644 --- a/src/Microsoft.Framework.PackageManager/project.json +++ b/src/Microsoft.Framework.PackageManager/project.json @@ -1,15 +1,15 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "compilationOptions": { "warningsAsErrors": true }, "dependencies": { - "Microsoft.Framework.CommandLineUtils.Sources": { "version": "1.0.0-*", "type": "build" }, - "Microsoft.Framework.NotNullAttribute.Sources": { "version": "1.0.0-*", "type": "build" }, - "Microsoft.Framework.Project": "1.0.0-*", - "Microsoft.Framework.Runtime": "1.0.0-*", - "Microsoft.Framework.Runtime.Compilation.Sources": { "version": "1.0.0-*", "type": "build" }, - "Microsoft.Framework.Runtime.Internals": { "version": "1.0.0-*", "type": "build" }, - "Microsoft.Framework.Runtime.Sources": { "version": "1.0.0-*", "type": "build" }, - "Microsoft.Framework.Runtime.Abstractions": "1.0.0-*", + "Microsoft.Framework.CommandLineUtils.Sources": { "version": "1.0.0-beta5", "type": "build" }, + "Microsoft.Framework.NotNullAttribute.Sources": { "version": "1.0.0-beta5", "type": "build" }, + "Microsoft.Framework.Project": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Compilation.Sources": { "version": "1.0.0-beta5", "type": "build" }, + "Microsoft.Framework.Runtime.Internals": { "version": "1.0.0-beta5", "type": "build" }, + "Microsoft.Framework.Runtime.Sources": { "version": "1.0.0-beta5", "type": "build" }, + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", "Newtonsoft.Json": "6.0.6" }, "compile": "..\\Microsoft.Framework.ApplicationHost\\Impl\\**\\*.cs", @@ -30,14 +30,14 @@ }, "dnxcore50": { "dependencies": { - "Microsoft.Net.Http.Client": "1.0.0-*", - "System.ObjectModel": "4.0.10-beta-*", - "System.IO.FileSystem.Primitives": "4.0.0-beta-*", - "System.Linq.Parallel": "4.0.0-beta-*", - "System.Reflection.TypeExtensions": "4.0.0-beta-*", - "System.Runtime.Serialization.Primitives": "4.0.10-beta-*", - "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-*", - "System.Text.RegularExpressions": "4.0.10-beta-*" + "Microsoft.Net.Http.Client": "1.0.0-beta3", + "System.ObjectModel": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Linq.Parallel": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime.Serialization.Primitives": "4.0.10-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019" } } }, diff --git a/src/Microsoft.Framework.PackageManager/project.lock.json b/src/Microsoft.Framework.PackageManager/project.lock.json new file mode 100644 index 000000000..2643ca4ce --- /dev/null +++ b/src/Microsoft.Framework.PackageManager/project.lock.json @@ -0,0 +1,2305 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": {}, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Dynamic.Runtime": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Resources.ReaderWriter": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Threading.Timer": "4.0.0-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019", + "System.Xml.XmlSerializer": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.AppContext": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Loader": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Net.Http.Client/1.0.0-beta3-10053": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-22516", + "System.Collections": "4.0.10-beta-22516", + "System.Collections.Concurrent": "4.0.0-beta-22231", + "System.Diagnostics.Contracts": "4.0.0-beta-22516", + "System.Diagnostics.Debug": "4.0.10-beta-22516", + "System.Diagnostics.Tools": "4.0.0-beta-22516", + "System.Globalization": "4.0.10-beta-22516", + "System.IO": "4.0.10-beta-22516", + "System.IO.FileSystem": "4.0.0-beta-22516", + "System.Linq": "4.0.0-beta-22516", + "System.Net.Http": "4.0.0-beta-22516", + "System.Net.Primitives": "4.0.10-beta-22516", + "System.Net.Security": "4.0.0-beta-22516", + "System.Net.Sockets": "4.0.0-beta-22516", + "System.Reflection": "4.0.10-beta-22516", + "System.Resources.ResourceManager": "4.0.0-beta-22516", + "System.Runtime": "4.0.20-beta-22516", + "System.Runtime.Extensions": "4.0.10-beta-22516", + "System.Runtime.Handles": "4.0.0-beta-22516", + "System.Runtime.InteropServices": "4.0.20-beta-22516", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-22516", + "System.Security.Principal": "4.0.0-beta-22516", + "System.Text.Encoding": "4.0.10-beta-22516", + "System.Text.Encoding.Extensions": "4.0.10-beta-22516", + "System.Threading": "4.0.0-beta-22416", + "System.Threading.Overlapped": "4.0.0-beta-22516", + "System.Threading.Tasks": "4.0.10-beta-22516", + "System.Threading.ThreadPool": "4.0.10-beta-22516" + }, + "compile": { + "lib/aspnetcore50/Microsoft.Net.Http.Client.dll": {} + }, + "runtime": { + "lib/aspnetcore50/Microsoft.Net.Http.Client.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "System.AppContext/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.0-beta-22605": { + "dependencies": { + "System.Runtime": "4.0.0-beta-22605" + }, + "compile": { + "lib/contract/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/aspnetcore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Parallel/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Parallel.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.Parallel.dll": {} + } + }, + "System.Net.Http/4.0.0-beta-22605": { + "dependencies": { + "System.IO": "4.0.0-beta-22605", + "System.Net.Primitives": "4.0.0-beta-22605", + "System.Runtime": "4.0.0-beta-22605", + "System.Text.Encoding": "4.0.0-beta-22605", + "System.Threading.Tasks": "4.0.0-beta-22605" + }, + "compile": { + "lib/contract/System.Net.Http.dll": {} + }, + "runtime": { + "lib/aspnetcore50/System.Net.Http.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-22605": { + "dependencies": { + "System.Runtime": "4.0.0-beta-22605", + "System.Runtime.Handles": "4.0.0-beta-22605" + }, + "compile": { + "lib/contract/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/aspnetcore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.Security/4.0.0-beta-22605": { + "dependencies": { + "System.IO": "4.0.0-beta-22605", + "System.Net.Primitives": "4.0.10-beta-22605", + "System.Runtime": "4.0.0-beta-22605", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-22605", + "System.Threading.Tasks": "4.0.0-beta-22605" + }, + "compile": { + "lib/contract/System.Net.Security.dll": {} + }, + "runtime": { + "lib/aspnetcore50/System.Net.Security.dll": {} + } + }, + "System.Net.Sockets/4.0.0-beta-22605": { + "dependencies": { + "System.IO": "4.0.0-beta-22605", + "System.Net.Primitives": "4.0.10-beta-22605", + "System.Runtime": "4.0.0-beta-22605", + "System.Threading.Tasks": "4.0.0-beta-22605" + }, + "compile": { + "lib/contract/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/aspnetcore50/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ReaderWriter.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ReaderWriter.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-22605": { + "dependencies": { + "System.Runtime": "4.0.0-beta-22605" + }, + "compile": { + "lib/contract/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/aspnetcore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-22605": { + "dependencies": { + "System.Runtime": "4.0.0-beta-22605", + "System.Runtime.Handles": "4.0.0-beta-22605", + "System.Security.Cryptography.Encoding": "4.0.0-beta-22605", + "System.Security.Cryptography.Encryption": "4.0.0-beta-22605" + }, + "compile": { + "lib/contract/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/aspnetcore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-22605": { + "dependencies": { + "System.Runtime": "4.0.0-beta-22605" + }, + "compile": { + "lib/contract/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/aspnetcore50/System.Security.Principal.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XmlDocument": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Xml.XmlSerializer.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "sha512": "3OKYZSMwSsgHA7uyx3U3BqAzdJLHKhR6Y95mhuOFRgg2Piw3vKEPmxmG/IQiD0qeCL0pbkcCQzpa60Yo1Jn0yg==", + "files": [ + "analyzers/portable50/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Analyzers.nuspec", + "ThirdPartyNotices.rtf", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "sha512": "B5aFOpPSQeEG5pafehkWJvJgTzI7dN9jLWqX6rk8u4RSQHiAldwRgniGo+jcKJGbdsxFUQISjZsvaNY+k9kXvg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "sha512": "iS92guFlOKM4GNXwuWkQDgMwZDWxEny9LsilhAGyc8gfdX1rmbOrQTLR6ti8CQA3Jk0s9UB7O1MZmI8lKvcTMw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "sha512": "hgETnks4ovIE4ySkFs6mQ+QN195kOIM+3IxgIqQFYtuF9tfNdw1/xkkwm9ip7vUifJlNC4O5d9o7CJ2ou46GyA==", + "files": [ + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll", + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.xml", + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll", + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.xml", + "lib/net45/Microsoft.Framework.NotNullAttribute.Sources.dll", + "lib/net45/Microsoft.Framework.NotNullAttribute.Sources.xml", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Net.Http.Client/1.0.0-beta3-10053": { + "sha512": "e3M1dAhwXqNiwlCYlwHZNiCcxsD07c7/B137lCcrBI1ek/CRTFMHIuGCOP94xGkBzxyyUFHWttl2cPkCF0rWsA==", + "files": [ + "lib/aspnet50/Microsoft.Net.Http.Client.dll", + "lib/aspnet50/Microsoft.Net.Http.Client.xml", + "lib/aspnetcore50/Microsoft.Net.Http.Client.dll", + "lib/aspnetcore50/Microsoft.Net.Http.Client.xml", + "lib/net45/Microsoft.Net.Http.Client.dll", + "lib/net45/Microsoft.Net.Http.Client.xml", + "Microsoft.Net.Http.Client.1.0.0-beta3-10053.nupkg", + "Microsoft.Net.Http.Client.1.0.0-beta3-10053.nupkg.sha512", + "Microsoft.Net.Http.Client.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "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/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/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+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "System.AppContext/4.0.0-beta-23019": { + "sha512": "dtYrJWnRhdNNbuTQf8ZhL9FhR+zef7ExSEHwqCF7e3YTPcL3XhUF7SD4Ij2rF3DJNMWT/r/8dgAs/9mNmOD66w==", + "files": [ + "lib/DNXCore50/System.AppContext.dll", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "ref/dotnet/System.AppContext.dll", + "ref/net46/System.AppContext.dll", + "System.AppContext.4.0.0-beta-23019.nupkg", + "System.AppContext.4.0.0-beta-23019.nupkg.sha512", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.36": { + "serviceable": true, + "sha512": "MOlivTIeAIQPPMUPWIIoMCvZczjFRLYUWSYwqi1szu8QPyeIbsaPeI+hpXe1DzTxNwnRnmfYaoToi6kXIfSPNg==", + "files": [ + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "License-Stable.rtf", + "System.Collections.Immutable.1.1.36.nupkg", + "System.Collections.Immutable.1.1.36.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Diagnostics.Contracts/4.0.0-beta-22605": { + "sha512": "BjtaTiqGO9T8kCdA16d7KDfNdW8u28DarnN4cewwQeBEYcRQ8aFaV9O06B+8EtuelRgvtcvG+KVLQKpUUmoz2A==", + "files": [ + "lib/aspnetcore50/System.Diagnostics.Contracts.dll", + "lib/contract/System.Diagnostics.Contracts.dll", + "lib/net45/System.Diagnostics.Contracts.dll", + "lib/portable-wpa81+wp80+win80+net45+aspnetcore50/System.Diagnostics.Contracts.dll", + "License.rtf", + "System.Diagnostics.Contracts.4.0.0-beta-22605.nupkg", + "System.Diagnostics.Contracts.4.0.0-beta-22605.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "sha512": "1vuXv89pElI0JeDhnXokMyy9VkLpkDFa+oU3selb5uhHfzVswH1etFBumZ0VKKvTOAnm8AS/3ZDXAVlRjywq3A==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Process.dll", + "lib/net46/System.Diagnostics.Process.dll", + "ref/dotnet/System.Diagnostics.Process.dll", + "ref/net46/System.Diagnostics.Process.dll", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Process.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "sha512": "GB0ki4TLNwFKcT7ZesteTERlZmBytRitEbdD6O1zVwDaeqqY+FZb2/+CH2Q5U1rN7qY9YmM70PxtyPG1t31zkg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "sha512": "yhXko8+R8fy0RERn6xQltYEhChBNyGEQgntwjHqNBc3x1M7wvg+Ye72Bh1QVQfnMIXZ0tG8XSrQs8hJe8KjYjg==", + "files": [ + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._", + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "sha512": "+xsD0H46/EB88848d9cHel2WVbUWlM/Y/k+tuY5lp2jXSwV8zMJ6F3TjMqeUZwWtUUavw+AN7D0a4ZoGVs/Rcw==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._", + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "sha512": "YjnsUzXsXx8BdqaXQ2U/hrz4CWdlAfcoYccqO3BSKCpPZPFEbKizEiHR9KJGcqf9gQ4lzRkhlM3xiMIjX27mUQ==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Linq.Parallel/4.0.0-beta-23019": { + "sha512": "JuBrjLe4kFgxaPS90+0bScw5k9JFfkfHzom4yYsMG+H6ySvHfqmr/MHrqEjfvnAZQkVotwVswOAUndN9AAOCrA==", + "files": [ + "lib/dotnet/System.Linq.Parallel.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.Parallel.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.Parallel.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.Parallel.dll", + "ref/win8/_._", + "System.Linq.Parallel.4.0.0-beta-23019.nupkg", + "System.Linq.Parallel.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.Parallel.nuspec" + ] + }, + "System.Net.Http/4.0.0-beta-22605": { + "sha512": "YwTreVePvIfaxBDZis/gh78VGq6Lahg7xkt0c8u+G0hA6lX8gKkogQ/aiNrjYGwa/hXCcbF9wbB57SABRLw5Kw==", + "files": [ + "lib/aspnetcore50/System.Net.Http.dll", + "lib/contract/System.Net.Http.dll", + "lib/net45/_._", + "lib/portable-wpa81+wp80+win80+net45+aspnetcore50/System.Net.Http.dll", + "License.rtf", + "System.Net.Http.4.0.0-beta-22605.nupkg", + "System.Net.Http.4.0.0-beta-22605.nupkg.sha512", + "System.Net.Http.nuspec" + ] + }, + "System.Net.Primitives/4.0.10-beta-22605": { + "sha512": "m8/wm7e72px1ySBUas3S45QaHuMxuZLTwh2ygzgHXQ/Ahnkti5RGt0/dZRsUhsR5/pMGRpZs6AeuCetLD8Dsyg==", + "files": [ + "lib/aspnetcore50/System.Net.Primitives.dll", + "lib/contract/System.Net.Primitives.dll", + "lib/net45/System.Net.Primitives.dll", + "lib/portable-wpa81+wp80+win80+net45+aspnetcore50/System.Net.Primitives.dll", + "License.rtf", + "System.Net.Primitives.4.0.10-beta-22605.nupkg", + "System.Net.Primitives.4.0.10-beta-22605.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.Security/4.0.0-beta-22605": { + "sha512": "NHHKaPIBTzIvFRt6XhqdTGx8gfyiDUoYW/IIcewa86RDDxEb5DStmLRtuLraYWv3mFA/0D+s4P7NSoImuBYoCg==", + "files": [ + "lib/aspnetcore50/System.Net.Security.dll", + "lib/contract/System.Net.Security.dll", + "lib/net45/System.Net.Security.dll", + "lib/portable-wpa81+wp80+win80+net45+aspnetcore50/System.Net.Security.dll", + "License.rtf", + "System.Net.Security.4.0.0-beta-22605.nupkg", + "System.Net.Security.4.0.0-beta-22605.nupkg.sha512", + "System.Net.Security.nuspec" + ] + }, + "System.Net.Sockets/4.0.0-beta-22605": { + "sha512": "KEv4Dd/HQVZldNmYl84jdKZpgwfU/j9nfBpGRPsO7RqoCqrZNQ7dKAvn2NMmyqr8eQCMcsKPBdyrem8ORUIO7A==", + "files": [ + "lib/aspnetcore50/System.Net.Sockets.dll", + "lib/contract/System.Net.Sockets.dll", + "lib/net45/System.Net.Sockets.dll", + "lib/portable-wpa81+wp80+win80+net45+aspnetcore50/System.Net.Sockets.dll", + "License.rtf", + "System.Net.Sockets.4.0.0-beta-22605.nupkg", + "System.Net.Sockets.4.0.0-beta-22605.nupkg.sha512", + "System.Net.Sockets.nuspec" + ] + }, + "System.ObjectModel/4.0.10-beta-23019": { + "sha512": "sJ+7kgWoTs4d8eNlhJB/p1Uq2iWHYVxO7ALNpB3sTwh3LORqwwPZe5FbSweccA3seM+zLSYa2AqBGp69JOXbcA==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/net46/_._", + "ref/dotnet/System.ObjectModel.dll", + "ref/net46/_._", + "System.ObjectModel.4.0.10-beta-23019.nupkg", + "System.ObjectModel.4.0.10-beta-23019.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "sha512": "FAp9TewUfCxaydPyY5Glv2/3KdxD5vpZ4qgx26OWV6xtytGinnXpHsxownQKKe7WkeqlRjy7s7cRgjTKZ50AQA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "sha512": "5OsJjj6G9WY8aV3EWfI03dJoqH0RvILtP2GJ16JQf90pV0kVmgGsFQSqh+lcnnexh4CEje7DDxF748o/8KamWA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/net45/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "sha512": "5/WcPvsdnw0d8rwwsCgQKoo9oXFQA1gMHtyNcYjelDjaaYC/dYoU7Eo0JdP+0PMgy9FnBOHVjRHOTcJ2HIjefA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "sha512": "9J0+T+ChJ9rlYTcrJiTOLfTJHuHuenol1eOJgiF8yJK1rDozU2Wnex5kXus5Z8/SerMSCUofUOx4c2WYX/tNow==", + "files": [ + "lib/DNXCore50/System.Resources.ReaderWriter.dll", + "lib/net46/System.Resources.ReaderWriter.dll", + "ref/dotnet/System.Resources.ReaderWriter.dll", + "ref/net46/System.Resources.ReaderWriter.dll", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ReaderWriter.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "sha512": "YuxWBHBbvN5ILjno2DBjgW2NXQscfJFvIfQEOGHwChM5Q9//EO0LZfErH7fTk1n0IVcorDu/HTnkqr2NuK/t5w==", + "files": [ + "lib/DNXCore50/System.Runtime.Loader.dll", + "ref/dotnet/System.Runtime.Loader.dll", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Loader.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.0.10-beta-23019": { + "sha512": "txtdLZ+b8B5/YIDthLTS4IUkt/pgl/RYIoLwp5ZEJ2dxurzkB99dOOIPFvkWoe3WJF7XWVSgmSZTO/VOvR6UlA==", + "files": [ + "lib/dotnet/System.Runtime.Serialization.Primitives.dll", + "lib/net46/_._", + "ref/dotnet/System.Runtime.Serialization.Primitives.dll", + "ref/net46/_._", + "System.Runtime.Serialization.Primitives.4.0.10-beta-23019.nupkg", + "System.Runtime.Serialization.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Serialization.Primitives.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-22605": { + "sha512": "sjDilJXn8ufBUi8ttNhG77zxlNtNL5eCXhocDAh9+MOG+HvGyuK5TPdJtcGI+dOuIqiL3wrcEhK/+PfLvzJARg==", + "files": [ + "lib/aspnetcore50/System.Security.Cryptography.Encoding.dll", + "lib/contract/System.Security.Cryptography.Encoding.dll", + "lib/net45/System.Security.Cryptography.Encoding.dll", + "lib/portable-wpa81+wp80+win80+net45+aspnetcore50/System.Security.Cryptography.Encoding.dll", + "License.rtf", + "System.Security.Cryptography.Encoding.4.0.0-beta-22605.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-22605.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-22605": { + "sha512": "xqvYwM5LFLxZWxTIyrm5vN7lMm43J9s8V0hQKiIksqZxwQNJRwoAoD617PIJDv520xmZ/sAv2wx0lZK2l8tSBw==", + "files": [ + "lib/aspnetcore50/System.Security.Cryptography.X509Certificates.dll", + "lib/contract/System.Security.Cryptography.X509Certificates.dll", + "lib/net45/System.Security.Cryptography.X509Certificates.dll", + "lib/portable-wpa81+wp80+win80+net45+aspnetcore50/System.Security.Cryptography.X509Certificates.dll", + "License.rtf", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-22605.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-22605.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.0-beta-22605": { + "sha512": "gH4yw77BwZQ4W8V4zAJudsmp91J6CtsQUH9cKpiGOrww3pCPeA+hSO/qtwS1KBLEkcoMbNtfoicn2RlzUAYjBw==", + "files": [ + "lib/aspnetcore50/System.Security.Principal.dll", + "lib/contract/System.Security.Principal.dll", + "lib/net45/System.Security.Principal.dll", + "lib/portable-wpa81+wp80+win80+net45+aspnetcore50/System.Security.Principal.dll", + "License.rtf", + "System.Security.Principal.4.0.0-beta-22605.nupkg", + "System.Security.Principal.4.0.0-beta-22605.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll", + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "sha512": "7gCVMRey2Nji6WDKleSigGBJuy4gMKXGeVqauROuFoTygHNtFYaUTeToGMy7Obsi+tzgnyEYfd+9uY3Ifc/SjA==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "sha512": "ECx+zZlXCfhkpZ0PUVrzp5UB6zRdzi94LsQhm7DtUS/uB17I3sYh0RsnMu/5jTULByQ1Ju4K/JTbM28InXO/PQ==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.dll", + "ref/net46/System.Threading.Thread.dll", + "System.Threading.Thread.4.0.0-beta-23019.nupkg", + "System.Threading.Thread.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "sha512": "nGA/Vt5zC8zGQ8r9mSdRTWzVMXh1YgJH9XH8x5OQZVLh0hn6CSC32RrmUrmKLpxKd64B9mbKoubeLUqXlf/m8g==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "ref/dotnet/System.Threading.Timer.dll", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/win81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.0-beta-23019.nupkg", + "System.Threading.Timer.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "sha512": "pyyzY5FFoZziGVDFyO5VLM094cX7jNN+01EsSJEFreje5uzSz6aKwIPgTe/l2CFiXYFoUNr0O6D3GEc8jPmbPg==", + "files": [ + "lib/dotnet/System.Xml.XDocument.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net46/_._", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "sha512": "b1SOLM9FhBCL4gW3OP5b/HV1JVb1hfsF4D4wBxyUIZMXcP3kbm4F+bYvOB0cSeJ1F8oVnCCGivSk1/aSEQ86XQ==", + "files": [ + "lib/dotnet/System.Xml.XmlDocument.dll", + "lib/net46/System.Xml.XmlDocument.dll", + "ref/dotnet/System.Xml.XmlDocument.dll", + "ref/net46/System.Xml.XmlDocument.dll", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg.sha512", + "System.Xml.XmlDocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "sha512": "BqXNr12cUj02qymL4Nhowcsfz840wLSMPfU0T8i0JGPPIx38txMwUA2pnrYWsYmDmyIgw7GGUhrjXz6WJpjgwg==", + "files": [ + "lib/DNXCore50/System.Xml.XmlSerializer.dll", + "lib/net46/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "ref/dotnet/System.Xml.XmlSerializer.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XmlSerializer.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.Framework.CommandLineUtils.Sources >= 1.0.0-beta5", + "Microsoft.Framework.NotNullAttribute.Sources >= 1.0.0-beta5", + "Microsoft.Framework.Project >= 1.0.0-beta5", + "Microsoft.Framework.Runtime >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Compilation.Sources >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Internals >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Sources >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions >= 1.0.0-beta5", + "Newtonsoft.Json >= 6.0.6" + ], + "DNX,Version=v4.5.1": [ + "fx/System.Collections ", + "fx/System.IO ", + "fx/System.IO.Compression ", + "fx/System.Net.Http ", + "fx/System.Runtime ", + "fx/System.Runtime.Serialization ", + "fx/System.Security ", + "fx/System.Xml ", + "fx/System.Xml.Linq " + ], + "DNXCore,Version=v5.0": [ + "Microsoft.Net.Http.Client >= 1.0.0-beta3", + "System.ObjectModel >= 4.0.10-beta-23019", + "System.IO.FileSystem.Primitives >= 4.0.0-beta-23019", + "System.Linq.Parallel >= 4.0.0-beta-23019", + "System.Reflection.TypeExtensions >= 4.0.0-beta-23019", + "System.Runtime.Serialization.Primitives >= 4.0.10-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms >= 4.0.0-beta-23019", + "System.Text.RegularExpressions >= 4.0.10-beta-23019" + ] + } +} \ No newline at end of file diff --git a/src/Microsoft.Framework.Project/project.json b/src/Microsoft.Framework.Project/project.json index 62cf4c7d9..f72a72afe 100644 --- a/src/Microsoft.Framework.Project/project.json +++ b/src/Microsoft.Framework.Project/project.json @@ -1,11 +1,11 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "compilationOptions" : { "define" : ["TRACE"], "warningsAsErrors": true }, "dependencies": { - "Microsoft.Framework.CommandLineUtils.Sources" : { "version": "1.0.0-*", "type": "build" }, - "Microsoft.Framework.Runtime" : "1.0.0-*", - "Microsoft.Framework.Runtime.Sources" : { "version": "1.0.0-*", "type": "build" }, - "Microsoft.Framework.Runtime.Abstractions" : "1.0.0-*" + "Microsoft.Framework.CommandLineUtils.Sources" : { "version": "1.0.0-beta5", "type": "build" }, + "Microsoft.Framework.Runtime" : "1.0.0-beta5", + "Microsoft.Framework.Runtime.Sources" : { "version": "1.0.0-beta5", "type": "build" }, + "Microsoft.Framework.Runtime.Abstractions" : "1.0.0-beta5" }, "frameworks" : { "dnx451" : { @@ -20,20 +20,20 @@ }, "dnxcore50" : { "dependencies": { - "System.Collections": "4.0.10-beta-*", - "System.ComponentModel": "4.0.0-beta-*", - "System.Console": "4.0.0-beta-*", - "System.Diagnostics.Debug": "4.0.10-beta-*", - "System.Diagnostics.Process": "4.0.0-beta-*", - "System.IO": "4.0.10-beta-*", - "System.IO.Compression": "4.0.0-beta-*", - "System.IO.FileSystem": "4.0.0-beta-*", - "System.Linq": "4.0.0-beta-*", - "System.Reflection": "4.0.10-beta-*", - "System.Runtime": "4.0.20-beta-*", - "System.Runtime.Extensions": "4.0.10-beta-*", - "System.Runtime.InteropServices": "4.0.20-beta-*", - "System.Threading.Tasks": "4.0.10-beta-*" + "System.Collections": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Process": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" } } } diff --git a/src/Microsoft.Framework.Project/project.lock.json b/src/Microsoft.Framework.Project/project.lock.json new file mode 100644 index 000000000..498ed05f5 --- /dev/null +++ b/src/Microsoft.Framework.Project/project.lock.json @@ -0,0 +1,1822 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": {}, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Dynamic.Runtime": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Resources.ReaderWriter": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Threading.Timer": "4.0.0-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019", + "System.Xml.XmlSerializer": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.AppContext": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Loader": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "System.AppContext/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.ObjectModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ReaderWriter.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ReaderWriter.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Loader.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XmlDocument": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Xml.XmlSerializer.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "sha512": "3OKYZSMwSsgHA7uyx3U3BqAzdJLHKhR6Y95mhuOFRgg2Piw3vKEPmxmG/IQiD0qeCL0pbkcCQzpa60Yo1Jn0yg==", + "files": [ + "analyzers/portable50/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Analyzers.nuspec", + "ThirdPartyNotices.rtf", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "sha512": "B5aFOpPSQeEG5pafehkWJvJgTzI7dN9jLWqX6rk8u4RSQHiAldwRgniGo+jcKJGbdsxFUQISjZsvaNY+k9kXvg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "sha512": "iS92guFlOKM4GNXwuWkQDgMwZDWxEny9LsilhAGyc8gfdX1rmbOrQTLR6ti8CQA3Jk0s9UB7O1MZmI8lKvcTMw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "System.AppContext/4.0.0-beta-23019": { + "sha512": "dtYrJWnRhdNNbuTQf8ZhL9FhR+zef7ExSEHwqCF7e3YTPcL3XhUF7SD4Ij2rF3DJNMWT/r/8dgAs/9mNmOD66w==", + "files": [ + "lib/DNXCore50/System.AppContext.dll", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "ref/dotnet/System.AppContext.dll", + "ref/net46/System.AppContext.dll", + "System.AppContext.4.0.0-beta-23019.nupkg", + "System.AppContext.4.0.0-beta-23019.nupkg.sha512", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.36": { + "serviceable": true, + "sha512": "MOlivTIeAIQPPMUPWIIoMCvZczjFRLYUWSYwqi1szu8QPyeIbsaPeI+hpXe1DzTxNwnRnmfYaoToi6kXIfSPNg==", + "files": [ + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "License-Stable.rtf", + "System.Collections.Immutable.1.1.36.nupkg", + "System.Collections.Immutable.1.1.36.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "sha512": "1vuXv89pElI0JeDhnXokMyy9VkLpkDFa+oU3selb5uhHfzVswH1etFBumZ0VKKvTOAnm8AS/3ZDXAVlRjywq3A==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Process.dll", + "lib/net46/System.Diagnostics.Process.dll", + "ref/dotnet/System.Diagnostics.Process.dll", + "ref/net46/System.Diagnostics.Process.dll", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Process.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "sha512": "GB0ki4TLNwFKcT7ZesteTERlZmBytRitEbdD6O1zVwDaeqqY+FZb2/+CH2Q5U1rN7qY9YmM70PxtyPG1t31zkg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "sha512": "yhXko8+R8fy0RERn6xQltYEhChBNyGEQgntwjHqNBc3x1M7wvg+Ye72Bh1QVQfnMIXZ0tG8XSrQs8hJe8KjYjg==", + "files": [ + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._", + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "sha512": "+xsD0H46/EB88848d9cHel2WVbUWlM/Y/k+tuY5lp2jXSwV8zMJ6F3TjMqeUZwWtUUavw+AN7D0a4ZoGVs/Rcw==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._", + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "sha512": "YjnsUzXsXx8BdqaXQ2U/hrz4CWdlAfcoYccqO3BSKCpPZPFEbKizEiHR9KJGcqf9gQ4lzRkhlM3xiMIjX27mUQ==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.ObjectModel/4.0.0-beta-23019": { + "sha512": "shmwP3YgLhSx8+njPPb82OULH+SteCr8fZ6XaQK8dfuB3UCqqUfITYPW1zknMotwsnBZpVPdXFWmwvTE0XTCGA==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "License.rtf", + "ref/dotnet/System.ObjectModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/win8/_._", + "System.ObjectModel.4.0.0-beta-23019.nupkg", + "System.ObjectModel.4.0.0-beta-23019.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "sha512": "FAp9TewUfCxaydPyY5Glv2/3KdxD5vpZ4qgx26OWV6xtytGinnXpHsxownQKKe7WkeqlRjy7s7cRgjTKZ50AQA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "sha512": "5OsJjj6G9WY8aV3EWfI03dJoqH0RvILtP2GJ16JQf90pV0kVmgGsFQSqh+lcnnexh4CEje7DDxF748o/8KamWA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/net45/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "sha512": "5/WcPvsdnw0d8rwwsCgQKoo9oXFQA1gMHtyNcYjelDjaaYC/dYoU7Eo0JdP+0PMgy9FnBOHVjRHOTcJ2HIjefA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "sha512": "9J0+T+ChJ9rlYTcrJiTOLfTJHuHuenol1eOJgiF8yJK1rDozU2Wnex5kXus5Z8/SerMSCUofUOx4c2WYX/tNow==", + "files": [ + "lib/DNXCore50/System.Resources.ReaderWriter.dll", + "lib/net46/System.Resources.ReaderWriter.dll", + "ref/dotnet/System.Resources.ReaderWriter.dll", + "ref/net46/System.Resources.ReaderWriter.dll", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ReaderWriter.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "sha512": "YuxWBHBbvN5ILjno2DBjgW2NXQscfJFvIfQEOGHwChM5Q9//EO0LZfErH7fTk1n0IVcorDu/HTnkqr2NuK/t5w==", + "files": [ + "lib/DNXCore50/System.Runtime.Loader.dll", + "ref/dotnet/System.Runtime.Loader.dll", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Loader.nuspec" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec" + ] + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll", + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "sha512": "7gCVMRey2Nji6WDKleSigGBJuy4gMKXGeVqauROuFoTygHNtFYaUTeToGMy7Obsi+tzgnyEYfd+9uY3Ifc/SjA==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "sha512": "ECx+zZlXCfhkpZ0PUVrzp5UB6zRdzi94LsQhm7DtUS/uB17I3sYh0RsnMu/5jTULByQ1Ju4K/JTbM28InXO/PQ==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.dll", + "ref/net46/System.Threading.Thread.dll", + "System.Threading.Thread.4.0.0-beta-23019.nupkg", + "System.Threading.Thread.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "sha512": "nGA/Vt5zC8zGQ8r9mSdRTWzVMXh1YgJH9XH8x5OQZVLh0hn6CSC32RrmUrmKLpxKd64B9mbKoubeLUqXlf/m8g==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "ref/dotnet/System.Threading.Timer.dll", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/win81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.0-beta-23019.nupkg", + "System.Threading.Timer.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "sha512": "pyyzY5FFoZziGVDFyO5VLM094cX7jNN+01EsSJEFreje5uzSz6aKwIPgTe/l2CFiXYFoUNr0O6D3GEc8jPmbPg==", + "files": [ + "lib/dotnet/System.Xml.XDocument.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net46/_._", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "sha512": "b1SOLM9FhBCL4gW3OP5b/HV1JVb1hfsF4D4wBxyUIZMXcP3kbm4F+bYvOB0cSeJ1F8oVnCCGivSk1/aSEQ86XQ==", + "files": [ + "lib/dotnet/System.Xml.XmlDocument.dll", + "lib/net46/System.Xml.XmlDocument.dll", + "ref/dotnet/System.Xml.XmlDocument.dll", + "ref/net46/System.Xml.XmlDocument.dll", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg.sha512", + "System.Xml.XmlDocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "sha512": "BqXNr12cUj02qymL4Nhowcsfz840wLSMPfU0T8i0JGPPIx38txMwUA2pnrYWsYmDmyIgw7GGUhrjXz6WJpjgwg==", + "files": [ + "lib/DNXCore50/System.Xml.XmlSerializer.dll", + "lib/net46/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "ref/dotnet/System.Xml.XmlSerializer.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XmlSerializer.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.Framework.CommandLineUtils.Sources >= 1.0.0-beta5", + "Microsoft.Framework.Runtime >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Sources >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions >= 1.0.0-beta5" + ], + "DNX,Version=v4.5.1": [ + "fx/System.Collections ", + "fx/System.IO ", + "fx/System.IO.Compression ", + "fx/System.Runtime ", + "fx/System.Xml ", + "fx/System.Xml.Linq " + ], + "DNXCore,Version=v5.0": [ + "System.Collections >= 4.0.10-beta-23019", + "System.ComponentModel >= 4.0.0-beta-23019", + "System.Console >= 4.0.0-beta-23019", + "System.Diagnostics.Debug >= 4.0.10-beta-23019", + "System.Diagnostics.Process >= 4.0.0-beta-23019", + "System.IO >= 4.0.10-beta-23019", + "System.IO.Compression >= 4.0.0-beta-23019", + "System.IO.FileSystem >= 4.0.0-beta-23019", + "System.Linq >= 4.0.0-beta-23019", + "System.Reflection >= 4.0.10-beta-23019", + "System.Runtime >= 4.0.20-beta-23019", + "System.Runtime.Extensions >= 4.0.10-beta-23019", + "System.Runtime.InteropServices >= 4.0.20-beta-23019", + "System.Threading.Tasks >= 4.0.10-beta-23019" + ] + } +} \ No newline at end of file diff --git a/src/Microsoft.Framework.Runtime.Abstractions/project.json b/src/Microsoft.Framework.Runtime.Abstractions/project.json index 8eac9b42a..e3d5c7d96 100644 --- a/src/Microsoft.Framework.Runtime.Abstractions/project.json +++ b/src/Microsoft.Framework.Runtime.Abstractions/project.json @@ -1,17 +1,17 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "description": "ASP.NET 5 interfaces to take advantage of capabilities exposed by the runtime.", "compilationOptions": { "warningsAsErrors": true }, "frameworks": { "dnx451": { }, "dnxcore50": { "dependencies": { - "System.IO": "4.0.10-beta-*", - "System.Reflection": "4.0.10-beta-*", - "System.Runtime": "4.0.20-beta-*", - "System.Runtime.Extensions": "4.0.10-beta-*", - "System.Threading.Tasks": "4.0.10-beta-*", - "System.ComponentModel": "4.0.0-beta-*" + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019" } } }, diff --git a/src/Microsoft.Framework.Runtime.Abstractions/project.lock.json b/src/Microsoft.Framework.Runtime.Abstractions/project.lock.json new file mode 100644 index 000000000..d25a675c8 --- /dev/null +++ b/src/Microsoft.Framework.Runtime.Abstractions/project.lock.json @@ -0,0 +1,292 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Text.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Text.Encoding/4.0.0-beta-23019": { + "sha512": "3AKmu2GxeVRk3wrBLoZXN3EhMeToZpV9KB/fjOCJu3TXZGwT3x/GwXMK9S3giYFLppHABDuVSBM1X7/71ujf4Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "License.rtf", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/win8/_._", + "System.Text.Encoding.4.0.0-beta-23019.nupkg", + "System.Text.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [ + "System.IO >= 4.0.10-beta-23019", + "System.Reflection >= 4.0.10-beta-23019", + "System.Runtime >= 4.0.20-beta-23019", + "System.Runtime.Extensions >= 4.0.10-beta-23019", + "System.Threading.Tasks >= 4.0.10-beta-23019", + "System.ComponentModel >= 4.0.0-beta-23019" + ] + } +} \ No newline at end of file diff --git a/src/Microsoft.Framework.Runtime.Caching/project.json b/src/Microsoft.Framework.Runtime.Caching/project.json index 461ee153f..809eb6d10 100644 --- a/src/Microsoft.Framework.Runtime.Caching/project.json +++ b/src/Microsoft.Framework.Runtime.Caching/project.json @@ -1,7 +1,7 @@ -{ - "version": "1.0.0-*", +{ + "version": "1.0.0-beta5", "dependencies": { - "Microsoft.Framework.Runtime.Abstractions": "1.0.0-*" + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" }, "frameworks": { @@ -11,10 +11,10 @@ }, "dnxcore50": { "dependencies": { - "System.Runtime": "4.0.20-beta-*", - "System.IO.FileSystem": "4.0.0-beta-*", - "System.Linq": "4.0.0-beta-*", - "System.Collections.Concurrent": "4.0.10-beta-*" + "System.Runtime": "4.0.20-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019" } } } diff --git a/src/Microsoft.Framework.Runtime.Caching/project.lock.json b/src/Microsoft.Framework.Runtime.Caching/project.lock.json new file mode 100644 index 000000000..705d9b098 --- /dev/null +++ b/src/Microsoft.Framework.Runtime.Caching/project.lock.json @@ -0,0 +1,719 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._", + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.Framework.Runtime.Abstractions >= 1.0.0-beta5" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [ + "System.Runtime >= 4.0.20-beta-23019", + "System.IO.FileSystem >= 4.0.0-beta-23019", + "System.Linq >= 4.0.0-beta-23019", + "System.Collections.Concurrent >= 4.0.10-beta-23019" + ] + } +} \ No newline at end of file diff --git a/src/Microsoft.Framework.Runtime.Compilation.DesignTime/project.json b/src/Microsoft.Framework.Runtime.Compilation.DesignTime/project.json index 835c90065..ab905ed71 100644 --- a/src/Microsoft.Framework.Runtime.Compilation.DesignTime/project.json +++ b/src/Microsoft.Framework.Runtime.Compilation.DesignTime/project.json @@ -1,9 +1,9 @@ -{ - "version": "1.0.0-*", +{ + "version": "1.0.0-beta5", "dependencies": { - "Microsoft.Framework.Runtime.Sources": { "version": "1.0.0-*", "type": "build" }, - "Microsoft.Framework.Runtime.Compilation.Sources": { "version": "1.0.0-*", "type": "build" }, - "Microsoft.Framework.Runtime.Abstractions": "1.0.0-*" + "Microsoft.Framework.Runtime.Sources": { "version": "1.0.0-beta5", "type": "build" }, + "Microsoft.Framework.Runtime.Compilation.Sources": { "version": "1.0.0-beta5", "type": "build" }, + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" }, "compile": [ "../Microsoft.Framework.Runtime/Json/*.cs" @@ -15,13 +15,13 @@ }, "dnxcore50": { "dependencies": { - "System.Collections.Concurrent": "4.0.10-beta-*", - "System.Dynamic.Runtime": "4.0.10-beta-*", - "System.Globalization": "4.0.10-beta-*", - "System.IO.FileSystem": "4.0.0-beta-*", - "System.Net.Primitives": "4.0.10-beta-*", - "System.Net.Sockets": "4.0.10-beta-*", - "System.Threading.Thread": "4.0.0-beta-*" + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Dynamic.Runtime": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.Sockets": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019" } } }, diff --git a/src/Microsoft.Framework.Runtime.Compilation.DesignTime/project.lock.json b/src/Microsoft.Framework.Runtime.Compilation.DesignTime/project.lock.json new file mode 100644 index 000000000..0b33ad226 --- /dev/null +++ b/src/Microsoft.Framework.Runtime.Compilation.DesignTime/project.lock.json @@ -0,0 +1,1514 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "sha512": "ijnoxLU+SrSf1AItfZOwtnzyx7yEi+WJtKa3d2X93Xf5YHlRsL4RwMZ10M9gLE8E+Rpi3ZJM5wAXi6OFSprDtw==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/net46/System.Collections.NonGeneric.dll", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "sha512": "yhXko8+R8fy0RERn6xQltYEhChBNyGEQgntwjHqNBc3x1M7wvg+Ye72Bh1QVQfnMIXZ0tG8XSrQs8hJe8KjYjg==", + "files": [ + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._", + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "sha512": "YjnsUzXsXx8BdqaXQ2U/hrz4CWdlAfcoYccqO3BSKCpPZPFEbKizEiHR9KJGcqf9gQ4lzRkhlM3xiMIjX27mUQ==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._", + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "sha512": "4NWuSdsFSf21iJkd+NQaE2OwtNaKGdXIbBbQmfE43evHl6fUII38wwNnooWtF0avCEyU6BOdUTiwoZAUZyQwcA==", + "files": [ + "lib/DNXCore50/System.Net.Sockets.dll", + "ref/dotnet/System.Net.Sockets.dll", + "System.Net.Sockets.4.0.10-beta-23019.nupkg", + "System.Net.Sockets.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Sockets.nuspec" + ] + }, + "System.ObjectModel/4.0.0-beta-23019": { + "sha512": "shmwP3YgLhSx8+njPPb82OULH+SteCr8fZ6XaQK8dfuB3UCqqUfITYPW1zknMotwsnBZpVPdXFWmwvTE0XTCGA==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "License.rtf", + "ref/dotnet/System.ObjectModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/win8/_._", + "System.ObjectModel.4.0.0-beta-23019.nupkg", + "System.ObjectModel.4.0.0-beta-23019.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "sha512": "FAp9TewUfCxaydPyY5Glv2/3KdxD5vpZ4qgx26OWV6xtytGinnXpHsxownQKKe7WkeqlRjy7s7cRgjTKZ50AQA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "sha512": "5OsJjj6G9WY8aV3EWfI03dJoqH0RvILtP2GJ16JQf90pV0kVmgGsFQSqh+lcnnexh4CEje7DDxF748o/8KamWA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/net45/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "sha512": "5/WcPvsdnw0d8rwwsCgQKoo9oXFQA1gMHtyNcYjelDjaaYC/dYoU7Eo0JdP+0PMgy9FnBOHVjRHOTcJ2HIjefA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Security.Claims/4.0.0-beta-23019": { + "sha512": "kKseHxGh5pWjM43MZWtub/ZyBWUV3RHNSJuUtTzapeQD2qND6pGGNekMXcxmEZOxrKwFEBAeTlcgmWo/2e6/SQ==", + "files": [ + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll", + "System.Security.Claims.4.0.0-beta-23019.nupkg", + "System.Security.Claims.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.0-beta-23019": { + "sha512": "2zkK0eJOfso/Jo+77NVXDoJRggzL0jM0ayeXz+vD8pK9pIRnhpWJVbaGmT7MPBWW9KbPwtbJyXejpUS2rBflUQ==", + "files": [ + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._", + "System.Security.Principal.4.0.0-beta-23019.nupkg", + "System.Security.Principal.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "sha512": "FYvKKTbncuJCMnc1TmccsJlGSjIQrUJPymt2R3o5uSV1plyGD9V3san/rpq2IO4kDbHjGrQjEtZlbehwUucB5Q==", + "files": [ + "lib/DNXCore50/System.Security.Principal.Windows.dll", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/dotnet/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.Windows.nuspec" + ] + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll", + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "sha512": "ECx+zZlXCfhkpZ0PUVrzp5UB6zRdzi94LsQhm7DtUS/uB17I3sYh0RsnMu/5jTULByQ1Ju4K/JTbM28InXO/PQ==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.dll", + "ref/net46/System.Threading.Thread.dll", + "System.Threading.Thread.4.0.0-beta-23019.nupkg", + "System.Threading.Thread.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.Framework.Runtime.Sources >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Compilation.Sources >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions >= 1.0.0-beta5" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [ + "System.Collections.Concurrent >= 4.0.10-beta-23019", + "System.Dynamic.Runtime >= 4.0.10-beta-23019", + "System.Globalization >= 4.0.10-beta-23019", + "System.IO.FileSystem >= 4.0.0-beta-23019", + "System.Net.Primitives >= 4.0.10-beta-23019", + "System.Net.Sockets >= 4.0.10-beta-23019", + "System.Threading.Thread >= 4.0.0-beta-23019" + ] + } +} \ No newline at end of file diff --git a/src/Microsoft.Framework.Runtime.Compilation.Sources/project.json b/src/Microsoft.Framework.Runtime.Compilation.Sources/project.json index e34ecdd74..219ec69cb 100644 --- a/src/Microsoft.Framework.Runtime.Compilation.Sources/project.json +++ b/src/Microsoft.Framework.Runtime.Compilation.Sources/project.json @@ -1,9 +1,9 @@ -{ - "version": "1.0.0-*", +{ + "version": "1.0.0-beta5", "description": "(Temporary) Central place for common classes used in compilation. These will live in Microsoft.Framework.Runtime.Compilation", "shared": "**/*.cs", "dependencies": { - "Microsoft.Framework.Runtime.Abstractions": "1.0.0-*" + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" }, "frameworks": { @@ -13,7 +13,7 @@ }, "dnxcore50": { "dependencies": { - "System.Runtime": "4.0.20-beta-*" + "System.Runtime": "4.0.20-beta-23019" } } } diff --git a/src/Microsoft.Framework.Runtime.Compilation.Sources/project.lock.json b/src/Microsoft.Framework.Runtime.Compilation.Sources/project.lock.json new file mode 100644 index 000000000..5ef0e6608 --- /dev/null +++ b/src/Microsoft.Framework.Runtime.Compilation.Sources/project.lock.json @@ -0,0 +1,289 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Text.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Text.Encoding/4.0.0-beta-23019": { + "sha512": "3AKmu2GxeVRk3wrBLoZXN3EhMeToZpV9KB/fjOCJu3TXZGwT3x/GwXMK9S3giYFLppHABDuVSBM1X7/71ujf4Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "License.rtf", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/win8/_._", + "System.Text.Encoding.4.0.0-beta-23019.nupkg", + "System.Text.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.Framework.Runtime.Abstractions >= 1.0.0-beta5" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [ + "System.Runtime >= 4.0.20-beta-23019" + ] + } +} \ No newline at end of file diff --git a/src/Microsoft.Framework.Runtime.Internals/project.json b/src/Microsoft.Framework.Runtime.Internals/project.json index 809072e1a..1134bcbdf 100644 --- a/src/Microsoft.Framework.Runtime.Internals/project.json +++ b/src/Microsoft.Framework.Runtime.Internals/project.json @@ -1,5 +1,5 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "compilationOptions": { "define": [ "TRACE" ], "warningsAsErrors": true }, "shared": "**/*.cs", "dependencies": { @@ -9,7 +9,7 @@ "dnx451": { }, "dnxcore50": { "dependencies": { - "System.Runtime": "4.0.20-beta-*" + "System.Runtime": "4.0.20-beta-23019" } } } diff --git a/src/Microsoft.Framework.Runtime.Internals/project.lock.json b/src/Microsoft.Framework.Runtime.Internals/project.lock.json new file mode 100644 index 000000000..956a2e2ce --- /dev/null +++ b/src/Microsoft.Framework.Runtime.Internals/project.lock.json @@ -0,0 +1,289 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Text.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Text.Encoding/4.0.0-beta-23019": { + "sha512": "3AKmu2GxeVRk3wrBLoZXN3EhMeToZpV9KB/fjOCJu3TXZGwT3x/GwXMK9S3giYFLppHABDuVSBM1X7/71ujf4Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "License.rtf", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/win8/_._", + "System.Text.Encoding.4.0.0-beta-23019.nupkg", + "System.Text.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.Framework.Runtime.Abstractions " + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [ + "System.Runtime >= 4.0.20-beta-23019" + ] + } +} \ No newline at end of file diff --git a/src/Microsoft.Framework.Runtime.Loader/project.json b/src/Microsoft.Framework.Runtime.Loader/project.json index 021b487e2..ac95ee995 100644 --- a/src/Microsoft.Framework.Runtime.Loader/project.json +++ b/src/Microsoft.Framework.Runtime.Loader/project.json @@ -1,8 +1,8 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "description": "ASP.NET 5 runtime infrastructure for assembly load contexts.", "dependencies": { - "Microsoft.Framework.Runtime.Abstractions": "1.0.0-*" + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" }, "frameworks": { @@ -12,12 +12,12 @@ }, "dnxcore50": { "dependencies": { - "System.Collections": "4.0.10-beta-*", - "System.Collections.Concurrent": "4.0.10-beta-*", - "System.Runtime.Loader": "4.0.0-beta-*", - "System.IO.FileSystem": "4.0.0-beta-*", - "System.AppContext": "4.0.0-beta-*", - "System.Threading": "4.0.10-beta-*" + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Runtime.Loader": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.AppContext": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" } } }, diff --git a/src/Microsoft.Framework.Runtime.Loader/project.lock.json b/src/Microsoft.Framework.Runtime.Loader/project.lock.json new file mode 100644 index 000000000..a3d7547a5 --- /dev/null +++ b/src/Microsoft.Framework.Runtime.Loader/project.lock.json @@ -0,0 +1,740 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.AppContext": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Loader": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "System.AppContext/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Loader.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "System.AppContext/4.0.0-beta-23019": { + "sha512": "dtYrJWnRhdNNbuTQf8ZhL9FhR+zef7ExSEHwqCF7e3YTPcL3XhUF7SD4Ij2rF3DJNMWT/r/8dgAs/9mNmOD66w==", + "files": [ + "lib/DNXCore50/System.AppContext.dll", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "ref/dotnet/System.AppContext.dll", + "ref/net46/System.AppContext.dll", + "System.AppContext.4.0.0-beta-23019.nupkg", + "System.AppContext.4.0.0-beta-23019.nupkg.sha512", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "sha512": "YuxWBHBbvN5ILjno2DBjgW2NXQscfJFvIfQEOGHwChM5Q9//EO0LZfErH7fTk1n0IVcorDu/HTnkqr2NuK/t5w==", + "files": [ + "lib/DNXCore50/System.Runtime.Loader.dll", + "ref/dotnet/System.Runtime.Loader.dll", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Loader.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.Framework.Runtime.Abstractions >= 1.0.0-beta5" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [ + "System.Collections >= 4.0.10-beta-23019", + "System.Collections.Concurrent >= 4.0.10-beta-23019", + "System.Runtime.Loader >= 4.0.0-beta-23019", + "System.IO.FileSystem >= 4.0.0-beta-23019", + "System.AppContext >= 4.0.0-beta-23019", + "System.Threading >= 4.0.10-beta-23019" + ] + } +} \ No newline at end of file diff --git a/src/Microsoft.Framework.Runtime.Roslyn.Abstractions/project.json b/src/Microsoft.Framework.Runtime.Roslyn.Abstractions/project.json index a08c893c3..8e856b3cf 100644 --- a/src/Microsoft.Framework.Runtime.Roslyn.Abstractions/project.json +++ b/src/Microsoft.Framework.Runtime.Roslyn.Abstractions/project.json @@ -1,7 +1,7 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "dependencies": { - "Microsoft.Framework.Runtime.Abstractions": "1.0.0-*", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", "Microsoft.CodeAnalysis.CSharp": "1.0.0-*" }, @@ -12,7 +12,7 @@ }, "dnxcore50": { "dependencies": { - "System.Runtime": "4.0.20-beta-*" + "System.Runtime": "4.0.20-beta-23019" } } }, diff --git a/src/Microsoft.Framework.Runtime.Roslyn.Abstractions/project.lock.json b/src/Microsoft.Framework.Runtime.Roslyn.Abstractions/project.lock.json new file mode 100644 index 000000000..296f68744 --- /dev/null +++ b/src/Microsoft.Framework.Runtime.Roslyn.Abstractions/project.lock.json @@ -0,0 +1,447 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": {}, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Text.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "sha512": "3OKYZSMwSsgHA7uyx3U3BqAzdJLHKhR6Y95mhuOFRgg2Piw3vKEPmxmG/IQiD0qeCL0pbkcCQzpa60Yo1Jn0yg==", + "files": [ + "analyzers/portable50/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Analyzers.nuspec", + "ThirdPartyNotices.rtf", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "sha512": "B5aFOpPSQeEG5pafehkWJvJgTzI7dN9jLWqX6rk8u4RSQHiAldwRgniGo+jcKJGbdsxFUQISjZsvaNY+k9kXvg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "sha512": "iS92guFlOKM4GNXwuWkQDgMwZDWxEny9LsilhAGyc8gfdX1rmbOrQTLR6ti8CQA3Jk0s9UB7O1MZmI8lKvcTMw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "System.Collections.Immutable/1.1.36": { + "serviceable": true, + "sha512": "MOlivTIeAIQPPMUPWIIoMCvZczjFRLYUWSYwqi1szu8QPyeIbsaPeI+hpXe1DzTxNwnRnmfYaoToi6kXIfSPNg==", + "files": [ + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "License-Stable.rtf", + "System.Collections.Immutable.1.1.36.nupkg", + "System.Collections.Immutable.1.1.36.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Text.Encoding/4.0.0-beta-23019": { + "sha512": "3AKmu2GxeVRk3wrBLoZXN3EhMeToZpV9KB/fjOCJu3TXZGwT3x/GwXMK9S3giYFLppHABDuVSBM1X7/71ujf4Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "License.rtf", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/win8/_._", + "System.Text.Encoding.4.0.0-beta-23019.nupkg", + "System.Text.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.Framework.Runtime.Abstractions >= 1.0.0-beta5", + "Microsoft.CodeAnalysis.CSharp >= 1.0.0-*" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [ + "System.Runtime >= 4.0.20-beta-23019" + ] + } +} \ No newline at end of file diff --git a/src/Microsoft.Framework.Runtime.Roslyn.Common/project.json b/src/Microsoft.Framework.Runtime.Roslyn.Common/project.json index bd393a39b..5a68bf5f4 100644 --- a/src/Microsoft.Framework.Runtime.Roslyn.Common/project.json +++ b/src/Microsoft.Framework.Runtime.Roslyn.Common/project.json @@ -1,11 +1,11 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "description": "ASP.NET 5 Roslyn implementation code shared with libraries performing runtime compilation.", "compilationOptions": { "define": [ "TRACE" ], "allowUnsafe": true, "warningsAsErrors": true }, "dependencies": { "Microsoft.CodeAnalysis.CSharp": "1.0.0-*", - "Microsoft.Framework.Runtime.Sources": { "version": "1.0.0-*", "type": "build" }, - "Microsoft.Framework.Runtime.Abstractions": "1.0.0-*" + "Microsoft.Framework.Runtime.Sources": { "version": "1.0.0-beta5", "type": "build" }, + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" }, "frameworks": { "dnx451": { @@ -23,4 +23,4 @@ "%project:Directory%/../../build/batchcopy %project:BuildOutputDir%/Debug/dnxcore50/*.* %project:Directory%/../../artifacts/build/dnx-coreclr-win-x86/bin" ] } -} \ No newline at end of file +} diff --git a/src/Microsoft.Framework.Runtime.Roslyn.Common/project.lock.json b/src/Microsoft.Framework.Runtime.Roslyn.Common/project.lock.json new file mode 100644 index 000000000..10fff2856 --- /dev/null +++ b/src/Microsoft.Framework.Runtime.Roslyn.Common/project.lock.json @@ -0,0 +1,743 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": {}, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Globalization/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "sha512": "3OKYZSMwSsgHA7uyx3U3BqAzdJLHKhR6Y95mhuOFRgg2Piw3vKEPmxmG/IQiD0qeCL0pbkcCQzpa60Yo1Jn0yg==", + "files": [ + "analyzers/portable50/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Analyzers.nuspec", + "ThirdPartyNotices.rtf", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "sha512": "B5aFOpPSQeEG5pafehkWJvJgTzI7dN9jLWqX6rk8u4RSQHiAldwRgniGo+jcKJGbdsxFUQISjZsvaNY+k9kXvg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "sha512": "iS92guFlOKM4GNXwuWkQDgMwZDWxEny9LsilhAGyc8gfdX1rmbOrQTLR6ti8CQA3Jk0s9UB7O1MZmI8lKvcTMw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Immutable/1.1.36": { + "serviceable": true, + "sha512": "MOlivTIeAIQPPMUPWIIoMCvZczjFRLYUWSYwqi1szu8QPyeIbsaPeI+hpXe1DzTxNwnRnmfYaoToi6kXIfSPNg==", + "files": [ + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "License-Stable.rtf", + "System.Collections.Immutable.1.1.36.nupkg", + "System.Collections.Immutable.1.1.36.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23019": { + "sha512": "yuhBA8bL3rZkweMQ+sj00GNiXmbgALKlMWE8BrpEoQFVYjUjL3Hn98trZIHjc7zdmMvKwiSRI0MTEWTLrP6Vqw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "License.rtf", + "ref/dotnet/System.Globalization.dll", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/win8/_._", + "System.Globalization.4.0.0-beta-23019.nupkg", + "System.Globalization.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._", + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.CodeAnalysis.CSharp >= 1.0.0-*", + "Microsoft.Framework.Runtime.Sources >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions >= 1.0.0-beta5" + ], + "DNX,Version=v4.5.1": [ + "fx/System.Runtime " + ], + "DNXCore,Version=v5.0": [] + } +} \ No newline at end of file diff --git a/src/Microsoft.Framework.Runtime.Roslyn/project.json b/src/Microsoft.Framework.Runtime.Roslyn/project.json index 3127698fa..9e554cf33 100644 --- a/src/Microsoft.Framework.Runtime.Roslyn/project.json +++ b/src/Microsoft.Framework.Runtime.Roslyn/project.json @@ -1,14 +1,14 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "description": "ASP.NET 5 Roslyn compiler implementation.", "compilationOptions": { "define": [ "TRACE" ], "allowUnsafe": true, "warningsAsErrors": true }, "dependencies": { - "Microsoft.Framework.Runtime.Sources": { "version": "1.0.0-*", "type": "build" }, - "Microsoft.Framework.Runtime.Compilation.Sources": { "version": "1.0.0-*", "type": "build" }, - "Microsoft.Framework.Runtime.Abstractions": "1.0.0-*", - "Microsoft.Framework.Runtime.Roslyn.Common": { "version": "1.0.0-*", "type": "build" }, - "Microsoft.Framework.Runtime.Roslyn.Abstractions": "1.0.0-*", - "Microsoft.Framework.Runtime.Caching": "1.0.0-*" + "Microsoft.Framework.Runtime.Sources": { "version": "1.0.0-beta5", "type": "build" }, + "Microsoft.Framework.Runtime.Compilation.Sources": { "version": "1.0.0-beta5", "type": "build" }, + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Roslyn.Common": { "version": "1.0.0-beta5", "type": "build" }, + "Microsoft.Framework.Runtime.Roslyn.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5" }, "frameworks": { "dnx451": { @@ -21,9 +21,9 @@ }, "dnxcore50": { "dependencies": { - "System.Collections.Concurrent": "4.0.10-beta-*", - "System.Runtime.InteropServices": "4.0.20-beta-*", - "System.IO.FileSystem": "4.0.0-beta-*" + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019" } } }, diff --git a/src/Microsoft.Framework.Runtime.Roslyn/project.lock.json b/src/Microsoft.Framework.Runtime.Roslyn/project.lock.json new file mode 100644 index 000000000..de2f755c3 --- /dev/null +++ b/src/Microsoft.Framework.Runtime.Roslyn/project.lock.json @@ -0,0 +1,916 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": {}, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "sha512": "3OKYZSMwSsgHA7uyx3U3BqAzdJLHKhR6Y95mhuOFRgg2Piw3vKEPmxmG/IQiD0qeCL0pbkcCQzpa60Yo1Jn0yg==", + "files": [ + "analyzers/portable50/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Analyzers.nuspec", + "ThirdPartyNotices.rtf", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "sha512": "B5aFOpPSQeEG5pafehkWJvJgTzI7dN9jLWqX6rk8u4RSQHiAldwRgniGo+jcKJGbdsxFUQISjZsvaNY+k9kXvg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "sha512": "iS92guFlOKM4GNXwuWkQDgMwZDWxEny9LsilhAGyc8gfdX1rmbOrQTLR6ti8CQA3Jk0s9UB7O1MZmI8lKvcTMw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.36": { + "serviceable": true, + "sha512": "MOlivTIeAIQPPMUPWIIoMCvZczjFRLYUWSYwqi1szu8QPyeIbsaPeI+hpXe1DzTxNwnRnmfYaoToi6kXIfSPNg==", + "files": [ + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "License-Stable.rtf", + "System.Collections.Immutable.1.1.36.nupkg", + "System.Collections.Immutable.1.1.36.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._", + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.Framework.Runtime.Sources >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Compilation.Sources >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Roslyn.Common >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Roslyn.Abstractions >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching >= 1.0.0-beta5" + ], + "DNX,Version=v4.5.1": [ + "fx/System.Collections ", + "fx/System.IO ", + "fx/System.Threading.Tasks ", + "fx/System.Text.Encoding " + ], + "DNXCore,Version=v5.0": [ + "System.Collections.Concurrent >= 4.0.10-beta-23019", + "System.Runtime.InteropServices >= 4.0.20-beta-23019", + "System.IO.FileSystem >= 4.0.0-beta-23019" + ] + } +} \ No newline at end of file diff --git a/src/Microsoft.Framework.Runtime.Sources/project.json b/src/Microsoft.Framework.Runtime.Sources/project.json index 7c54184b4..524b0f810 100644 --- a/src/Microsoft.Framework.Runtime.Sources/project.json +++ b/src/Microsoft.Framework.Runtime.Sources/project.json @@ -1,5 +1,5 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "compilationOptions": { "define": [ "TRACE" ], "warningsAsErrors": true }, "shared": "**/*.cs", "dependencies": { @@ -8,17 +8,17 @@ "dnx451": { }, "dnxcore50": { "dependencies": { - "System.Collections": "4.0.10-beta-*", - "System.ComponentModel": "4.0.0-beta-*", - "System.Console": "4.0.0-beta-*", - "System.Diagnostics.Debug": "4.0.10-beta-*", - "System.Linq": "4.0.0-beta-*", - "System.Reflection": "4.0.10-beta-*", - "System.Runtime": "4.0.20-beta-*", - "System.Runtime.Extensions": "4.0.10-beta-*", - "System.Threading": "4.0.10-beta-*", - "System.Threading.Tasks": "4.0.10-beta-*" + "System.Collections": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" } } } -} \ No newline at end of file +} diff --git a/src/Microsoft.Framework.Runtime.Sources/project.lock.json b/src/Microsoft.Framework.Runtime.Sources/project.lock.json new file mode 100644 index 000000000..3402b787f --- /dev/null +++ b/src/Microsoft.Framework.Runtime.Sources/project.lock.json @@ -0,0 +1,547 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": {}, + "DNXCore,Version=v5.0": { + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Globalization/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + } + } + }, + "libraries": { + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23019": { + "sha512": "yuhBA8bL3rZkweMQ+sj00GNiXmbgALKlMWE8BrpEoQFVYjUjL3Hn98trZIHjc7zdmMvKwiSRI0MTEWTLrP6Vqw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "License.rtf", + "ref/dotnet/System.Globalization.dll", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/win8/_._", + "System.Globalization.4.0.0-beta-23019.nupkg", + "System.Globalization.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._", + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [ + "System.Collections >= 4.0.10-beta-23019", + "System.ComponentModel >= 4.0.0-beta-23019", + "System.Console >= 4.0.0-beta-23019", + "System.Diagnostics.Debug >= 4.0.10-beta-23019", + "System.Linq >= 4.0.0-beta-23019", + "System.Reflection >= 4.0.10-beta-23019", + "System.Runtime >= 4.0.20-beta-23019", + "System.Runtime.Extensions >= 4.0.10-beta-23019", + "System.Threading >= 4.0.10-beta-23019", + "System.Threading.Tasks >= 4.0.10-beta-23019" + ] + } +} \ No newline at end of file diff --git a/src/Microsoft.Framework.Runtime/project.json b/src/Microsoft.Framework.Runtime/project.json index c83a2d3df..e7afdeb90 100644 --- a/src/Microsoft.Framework.Runtime/project.json +++ b/src/Microsoft.Framework.Runtime/project.json @@ -1,5 +1,5 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "description": "ASP.NET 5 runtime infrastructure for loading NuGet packages and projects.", "compilationOptions": { "define": [ "LOADER", "TRACE" ], "allowUnsafe": true, "warningsAsErrors": true }, "compile": [ @@ -9,13 +9,13 @@ "../../ext/compiler/preprocess/Internalization.cs" ], "dependencies": { - "Microsoft.Framework.Runtime.Loader": "1.0.0-*", - "Microsoft.Framework.Runtime.Caching": "1.0.0-*", - "Microsoft.Framework.Runtime.Abstractions": "1.0.0-*", - "Microsoft.Framework.Runtime.Compilation.Sources": { "version": "1.0.0-*", "type": "build" }, - "Microsoft.Framework.Runtime.Sources": { "version": "1.0.0-*", "type": "build" }, + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Compilation.Sources": { "version": "1.0.0-beta5", "type": "build" }, + "Microsoft.Framework.Runtime.Sources": { "version": "1.0.0-beta5", "type": "build" }, "Microsoft.CodeAnalysis.CSharp": { "version": "1.0.0-*", "type": "build" }, - "Microsoft.Framework.Runtime.Roslyn.Abstractions": { "version": "1.0.0-*", "type": "build" } + "Microsoft.Framework.Runtime.Roslyn.Abstractions": { "version": "1.0.0-beta5", "type": "build" } }, "frameworks": { "dnx451": { @@ -33,25 +33,25 @@ }, "dnxcore50": { "dependencies": { - "System.Collections.Concurrent": "4.0.10-beta-*", - "System.Diagnostics.Tools": "4.0.0-beta-*", - "System.Dynamic.Runtime": "4.0.10-beta-*", - "System.Globalization": "4.0.10-beta-*", - "System.IO.Compression": "4.0.0-beta-*", - "System.IO.FileSystem.Watcher": "4.0.0-beta-*", - "System.Linq": "4.0.0-beta-*", - "System.Reflection.Extensions": "4.0.0-beta-*", - "System.Resources.ResourceManager": "4.0.0-beta-*", - "System.Resources.ReaderWriter": "4.0.0-beta-*", - "System.Text.Encoding": "4.0.10-beta-*", - "System.Text.RegularExpressions": "4.0.10-beta-*", - "System.Threading.Timer": "4.0.0-beta-*", - "System.Threading.Tasks": "4.0.10-beta-*", - "System.Threading.Thread": "4.0.0-beta-*", - "System.Threading.ThreadPool": "4.0.10-beta-*", - "System.Xml.ReaderWriter": "4.0.10-beta-*", - "System.Xml.XDocument": "4.0.10-beta-*", - "System.Xml.XmlSerializer": "4.0.10-beta-*" + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Dynamic.Runtime": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Resources.ReaderWriter": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Timer": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019", + "System.Xml.XmlSerializer": "4.0.10-beta-23019" } } }, diff --git a/src/Microsoft.Framework.Runtime/project.lock.json b/src/Microsoft.Framework.Runtime/project.lock.json new file mode 100644 index 000000000..6d0f94d27 --- /dev/null +++ b/src/Microsoft.Framework.Runtime/project.lock.json @@ -0,0 +1,1708 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": {}, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Dynamic.Runtime": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Resources.ReaderWriter": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Threading.Timer": "4.0.0-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019", + "System.Xml.XmlSerializer": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.AppContext": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Loader": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "System.AppContext/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.ObjectModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ReaderWriter.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ReaderWriter.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Loader.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XmlDocument": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Xml.XmlSerializer.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "sha512": "3OKYZSMwSsgHA7uyx3U3BqAzdJLHKhR6Y95mhuOFRgg2Piw3vKEPmxmG/IQiD0qeCL0pbkcCQzpa60Yo1Jn0yg==", + "files": [ + "analyzers/portable50/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Analyzers.nuspec", + "ThirdPartyNotices.rtf", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "sha512": "B5aFOpPSQeEG5pafehkWJvJgTzI7dN9jLWqX6rk8u4RSQHiAldwRgniGo+jcKJGbdsxFUQISjZsvaNY+k9kXvg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "sha512": "iS92guFlOKM4GNXwuWkQDgMwZDWxEny9LsilhAGyc8gfdX1rmbOrQTLR6ti8CQA3Jk0s9UB7O1MZmI8lKvcTMw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "System.AppContext/4.0.0-beta-23019": { + "sha512": "dtYrJWnRhdNNbuTQf8ZhL9FhR+zef7ExSEHwqCF7e3YTPcL3XhUF7SD4Ij2rF3DJNMWT/r/8dgAs/9mNmOD66w==", + "files": [ + "lib/DNXCore50/System.AppContext.dll", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "ref/dotnet/System.AppContext.dll", + "ref/net46/System.AppContext.dll", + "System.AppContext.4.0.0-beta-23019.nupkg", + "System.AppContext.4.0.0-beta-23019.nupkg.sha512", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.36": { + "serviceable": true, + "sha512": "MOlivTIeAIQPPMUPWIIoMCvZczjFRLYUWSYwqi1szu8QPyeIbsaPeI+hpXe1DzTxNwnRnmfYaoToi6kXIfSPNg==", + "files": [ + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "License-Stable.rtf", + "System.Collections.Immutable.1.1.36.nupkg", + "System.Collections.Immutable.1.1.36.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "sha512": "GB0ki4TLNwFKcT7ZesteTERlZmBytRitEbdD6O1zVwDaeqqY+FZb2/+CH2Q5U1rN7qY9YmM70PxtyPG1t31zkg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "sha512": "yhXko8+R8fy0RERn6xQltYEhChBNyGEQgntwjHqNBc3x1M7wvg+Ye72Bh1QVQfnMIXZ0tG8XSrQs8hJe8KjYjg==", + "files": [ + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._", + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "sha512": "+xsD0H46/EB88848d9cHel2WVbUWlM/Y/k+tuY5lp2jXSwV8zMJ6F3TjMqeUZwWtUUavw+AN7D0a4ZoGVs/Rcw==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._", + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "sha512": "YjnsUzXsXx8BdqaXQ2U/hrz4CWdlAfcoYccqO3BSKCpPZPFEbKizEiHR9KJGcqf9gQ4lzRkhlM3xiMIjX27mUQ==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.ObjectModel/4.0.0-beta-23019": { + "sha512": "shmwP3YgLhSx8+njPPb82OULH+SteCr8fZ6XaQK8dfuB3UCqqUfITYPW1zknMotwsnBZpVPdXFWmwvTE0XTCGA==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "License.rtf", + "ref/dotnet/System.ObjectModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/win8/_._", + "System.ObjectModel.4.0.0-beta-23019.nupkg", + "System.ObjectModel.4.0.0-beta-23019.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "sha512": "FAp9TewUfCxaydPyY5Glv2/3KdxD5vpZ4qgx26OWV6xtytGinnXpHsxownQKKe7WkeqlRjy7s7cRgjTKZ50AQA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "sha512": "5OsJjj6G9WY8aV3EWfI03dJoqH0RvILtP2GJ16JQf90pV0kVmgGsFQSqh+lcnnexh4CEje7DDxF748o/8KamWA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/net45/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "sha512": "5/WcPvsdnw0d8rwwsCgQKoo9oXFQA1gMHtyNcYjelDjaaYC/dYoU7Eo0JdP+0PMgy9FnBOHVjRHOTcJ2HIjefA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "sha512": "9J0+T+ChJ9rlYTcrJiTOLfTJHuHuenol1eOJgiF8yJK1rDozU2Wnex5kXus5Z8/SerMSCUofUOx4c2WYX/tNow==", + "files": [ + "lib/DNXCore50/System.Resources.ReaderWriter.dll", + "lib/net46/System.Resources.ReaderWriter.dll", + "ref/dotnet/System.Resources.ReaderWriter.dll", + "ref/net46/System.Resources.ReaderWriter.dll", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ReaderWriter.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "sha512": "YuxWBHBbvN5ILjno2DBjgW2NXQscfJFvIfQEOGHwChM5Q9//EO0LZfErH7fTk1n0IVcorDu/HTnkqr2NuK/t5w==", + "files": [ + "lib/DNXCore50/System.Runtime.Loader.dll", + "ref/dotnet/System.Runtime.Loader.dll", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Loader.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "sha512": "7gCVMRey2Nji6WDKleSigGBJuy4gMKXGeVqauROuFoTygHNtFYaUTeToGMy7Obsi+tzgnyEYfd+9uY3Ifc/SjA==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "sha512": "ECx+zZlXCfhkpZ0PUVrzp5UB6zRdzi94LsQhm7DtUS/uB17I3sYh0RsnMu/5jTULByQ1Ju4K/JTbM28InXO/PQ==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.dll", + "ref/net46/System.Threading.Thread.dll", + "System.Threading.Thread.4.0.0-beta-23019.nupkg", + "System.Threading.Thread.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "sha512": "nGA/Vt5zC8zGQ8r9mSdRTWzVMXh1YgJH9XH8x5OQZVLh0hn6CSC32RrmUrmKLpxKd64B9mbKoubeLUqXlf/m8g==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "ref/dotnet/System.Threading.Timer.dll", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/win81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.0-beta-23019.nupkg", + "System.Threading.Timer.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "sha512": "pyyzY5FFoZziGVDFyO5VLM094cX7jNN+01EsSJEFreje5uzSz6aKwIPgTe/l2CFiXYFoUNr0O6D3GEc8jPmbPg==", + "files": [ + "lib/dotnet/System.Xml.XDocument.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net46/_._", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "sha512": "b1SOLM9FhBCL4gW3OP5b/HV1JVb1hfsF4D4wBxyUIZMXcP3kbm4F+bYvOB0cSeJ1F8oVnCCGivSk1/aSEQ86XQ==", + "files": [ + "lib/dotnet/System.Xml.XmlDocument.dll", + "lib/net46/System.Xml.XmlDocument.dll", + "ref/dotnet/System.Xml.XmlDocument.dll", + "ref/net46/System.Xml.XmlDocument.dll", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg.sha512", + "System.Xml.XmlDocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "sha512": "BqXNr12cUj02qymL4Nhowcsfz840wLSMPfU0T8i0JGPPIx38txMwUA2pnrYWsYmDmyIgw7GGUhrjXz6WJpjgwg==", + "files": [ + "lib/DNXCore50/System.Xml.XmlSerializer.dll", + "lib/net46/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "ref/dotnet/System.Xml.XmlSerializer.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XmlSerializer.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.Framework.Runtime.Loader >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Compilation.Sources >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Sources >= 1.0.0-beta5", + "Microsoft.CodeAnalysis.CSharp >= 1.0.0-*", + "Microsoft.Framework.Runtime.Roslyn.Abstractions >= 1.0.0-beta5" + ], + "DNX,Version=v4.5.1": [ + "fx/System.Collections ", + "fx/System.Text.Encoding ", + "fx/System.Threading.Tasks ", + "fx/System.IO ", + "fx/System.IO.Compression ", + "fx/System.IO.Compression.FileSystem ", + "fx/System.Runtime ", + "fx/System.Xml ", + "fx/System.Xml.Linq " + ], + "DNXCore,Version=v5.0": [ + "System.Collections.Concurrent >= 4.0.10-beta-23019", + "System.Diagnostics.Tools >= 4.0.0-beta-23019", + "System.Dynamic.Runtime >= 4.0.10-beta-23019", + "System.Globalization >= 4.0.10-beta-23019", + "System.IO.Compression >= 4.0.0-beta-23019", + "System.IO.FileSystem.Watcher >= 4.0.0-beta-23019", + "System.Linq >= 4.0.0-beta-23019", + "System.Reflection.Extensions >= 4.0.0-beta-23019", + "System.Resources.ResourceManager >= 4.0.0-beta-23019", + "System.Resources.ReaderWriter >= 4.0.0-beta-23019", + "System.Text.Encoding >= 4.0.10-beta-23019", + "System.Text.RegularExpressions >= 4.0.10-beta-23019", + "System.Threading.Timer >= 4.0.0-beta-23019", + "System.Threading.Tasks >= 4.0.10-beta-23019", + "System.Threading.Thread >= 4.0.0-beta-23019", + "System.Threading.ThreadPool >= 4.0.10-beta-23019", + "System.Xml.ReaderWriter >= 4.0.10-beta-23019", + "System.Xml.XDocument >= 4.0.10-beta-23019", + "System.Xml.XmlSerializer >= 4.0.10-beta-23019" + ] + } +} \ No newline at end of file diff --git a/src/dnx.clr.managed/project.json b/src/dnx.clr.managed/project.json index 1c0c28ce2..6e9f1bf6f 100644 --- a/src/dnx.clr.managed/project.json +++ b/src/dnx.clr.managed/project.json @@ -1,9 +1,9 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "compilationOptions": { "define": [ "TRACE" ], "allowUnsafe": true, "warningsAsErrors": true }, "dependencies": { - "dnx.host": "1.0.0-*", - "Microsoft.Framework.Runtime.Sources": { "version": "1.0.0-*", "type": "build" } + "dnx.host": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Sources": { "version": "1.0.0-beta5", "type": "build" } }, "frameworks": { "dnx451": { } diff --git a/src/dnx.clr.managed/project.lock.json b/src/dnx.clr.managed/project.lock.json new file mode 100644 index 000000000..d1e13f0a2 --- /dev/null +++ b/src/dnx.clr.managed/project.lock.json @@ -0,0 +1,74 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "dnx.host >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Sources >= 1.0.0-beta5" + ], + "DNX,Version=v4.5.1": [] + } +} \ No newline at end of file diff --git a/src/dnx.coreclr.managed/project.json b/src/dnx.coreclr.managed/project.json index 0297bf3c6..139299ed9 100644 --- a/src/dnx.coreclr.managed/project.json +++ b/src/dnx.coreclr.managed/project.json @@ -1,8 +1,8 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "compilationOptions": { "define": [ "TRACE" ], "allowUnsafe": true, "warningsAsErrors": true }, "dependencies": { - "dnx.host": "1.0.0-*" + "dnx.host": "1.0.0-beta5" }, "frameworks": { "dnxcore50": { } diff --git a/src/dnx.coreclr.managed/project.lock.json b/src/dnx.coreclr.managed/project.lock.json new file mode 100644 index 000000000..53f2e6a8e --- /dev/null +++ b/src/dnx.coreclr.managed/project.lock.json @@ -0,0 +1,790 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNXCore,Version=v5.0": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.AppContext": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Loader": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "System.AppContext/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Loader.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "System.AppContext/4.0.0-beta-23019": { + "sha512": "dtYrJWnRhdNNbuTQf8ZhL9FhR+zef7ExSEHwqCF7e3YTPcL3XhUF7SD4Ij2rF3DJNMWT/r/8dgAs/9mNmOD66w==", + "files": [ + "lib/DNXCore50/System.AppContext.dll", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "ref/dotnet/System.AppContext.dll", + "ref/net46/System.AppContext.dll", + "System.AppContext.4.0.0-beta-23019.nupkg", + "System.AppContext.4.0.0-beta-23019.nupkg.sha512", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._", + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "sha512": "YuxWBHBbvN5ILjno2DBjgW2NXQscfJFvIfQEOGHwChM5Q9//EO0LZfErH7fTk1n0IVcorDu/HTnkqr2NuK/t5w==", + "files": [ + "lib/DNXCore50/System.Runtime.Loader.dll", + "ref/dotnet/System.Runtime.Loader.dll", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Loader.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "dnx.host >= 1.0.0-beta5" + ], + "DNXCore,Version=v5.0": [] + } +} \ No newline at end of file diff --git a/src/dnx.host/project.json b/src/dnx.host/project.json index d3e362deb..aff9dd253 100644 --- a/src/dnx.host/project.json +++ b/src/dnx.host/project.json @@ -1,11 +1,11 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "compilationOptions": { "define": [ "TRACE" ], "allowUnsafe": true, "warningsAsErrors": true }, "dependencies": { - "Microsoft.Framework.CommandLineUtils.Sources": { "version": "1.0.0-*", "type": "build" }, - "Microsoft.Framework.Runtime.Internals": { "version": "1.0.0-*", "type": "build" }, - "Microsoft.Framework.Runtime.Sources": { "version": "1.0.0-*", "type": "build" }, - "Microsoft.Framework.Runtime.Loader": "1.0.0-*" + "Microsoft.Framework.CommandLineUtils.Sources": { "version": "1.0.0-beta5", "type": "build" }, + "Microsoft.Framework.Runtime.Internals": { "version": "1.0.0-beta5", "type": "build" }, + "Microsoft.Framework.Runtime.Sources": { "version": "1.0.0-beta5", "type": "build" }, + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" }, "frameworks": { "dnx451": { @@ -15,18 +15,18 @@ }, "dnxcore50": { "dependencies": { - "System.AppContext": "4.0.0-beta-*", - "System.Collections": "4.0.10-beta-*", - "System.ComponentModel": "4.0.0-beta-*", - "System.Console": "4.0.0-beta-*", - "System.Diagnostics.Debug": "4.0.10-beta-*", - "System.Reflection": "4.0.10-beta-*", - "System.Reflection.Extensions": "4.0.0-beta-*", - "System.Runtime": "4.0.20-beta-*", - "System.Runtime.Extensions": "4.0.10-beta-*", - "System.Runtime.InteropServices": "4.0.20-beta-*", - "System.Threading": "4.0.10-beta-*", - "System.Threading.Tasks": "4.0.10-beta-*" + "System.AppContext": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" } } }, diff --git a/src/dnx.host/project.lock.json b/src/dnx.host/project.lock.json new file mode 100644 index 000000000..5e54be5ac --- /dev/null +++ b/src/dnx.host/project.lock.json @@ -0,0 +1,842 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.AppContext": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Loader": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "System.AppContext/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Loader.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "System.AppContext/4.0.0-beta-23019": { + "sha512": "dtYrJWnRhdNNbuTQf8ZhL9FhR+zef7ExSEHwqCF7e3YTPcL3XhUF7SD4Ij2rF3DJNMWT/r/8dgAs/9mNmOD66w==", + "files": [ + "lib/DNXCore50/System.AppContext.dll", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "ref/dotnet/System.AppContext.dll", + "ref/net46/System.AppContext.dll", + "System.AppContext.4.0.0-beta-23019.nupkg", + "System.AppContext.4.0.0-beta-23019.nupkg.sha512", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._", + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "sha512": "YuxWBHBbvN5ILjno2DBjgW2NXQscfJFvIfQEOGHwChM5Q9//EO0LZfErH7fTk1n0IVcorDu/HTnkqr2NuK/t5w==", + "files": [ + "lib/DNXCore50/System.Runtime.Loader.dll", + "ref/dotnet/System.Runtime.Loader.dll", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Loader.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.Framework.CommandLineUtils.Sources >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Internals >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Sources >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader >= 1.0.0-beta5" + ], + "DNX,Version=v4.5.1": [ + "fx/System.Runtime " + ], + "DNXCore,Version=v5.0": [ + "System.AppContext >= 4.0.0-beta-23019", + "System.Collections >= 4.0.10-beta-23019", + "System.ComponentModel >= 4.0.0-beta-23019", + "System.Console >= 4.0.0-beta-23019", + "System.Diagnostics.Debug >= 4.0.10-beta-23019", + "System.Reflection >= 4.0.10-beta-23019", + "System.Reflection.Extensions >= 4.0.0-beta-23019", + "System.Runtime >= 4.0.20-beta-23019", + "System.Runtime.Extensions >= 4.0.10-beta-23019", + "System.Runtime.InteropServices >= 4.0.20-beta-23019", + "System.Threading >= 4.0.10-beta-23019", + "System.Threading.Tasks >= 4.0.10-beta-23019" + ] + } +} \ No newline at end of file diff --git a/test/Bootstrapper.FunctionalTests/project.json b/test/Bootstrapper.FunctionalTests/project.json index ef33c1ec9..4c29b08fd 100644 --- a/test/Bootstrapper.FunctionalTests/project.json +++ b/test/Bootstrapper.FunctionalTests/project.json @@ -1,8 +1,8 @@ { "dependencies": { - "Microsoft.Framework.CommonTestUtils": "1.0.0-*", - "Microsoft.Framework.Runtime.Sources": "1.0.0-*", - "xunit.runner.aspnet": "2.0.0-aspnet-*" + "Microsoft.Framework.CommonTestUtils": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Sources": "1.0.0-beta5", + "xunit.runner.aspnet": "2.0.0-aspnet-beta5" }, "frameworks": { diff --git a/test/Bootstrapper.FunctionalTests/project.lock.json b/test/Bootstrapper.FunctionalTests/project.lock.json new file mode 100644 index 000000000..014b81923 --- /dev/null +++ b/test/Bootstrapper.FunctionalTests/project.lock.json @@ -0,0 +1,647 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.0.0-rc3-build2880": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880", + "xunit.extensibility.core": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.Diagnostics.Debug", + "System.Globalization", + "System.Linq", + "System.Reflection", + "System.Reflection.Extensions", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading.Tasks" + ], + "compile": { + "lib/dnx451/xunit.execution.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.AspNet.dll": {} + } + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "dependencies": { + "xunit.abstractions": "[2.0.0-rc3-build2880]" + }, + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.assert": "2.0.0-rc3-build2880", + "xunit.execution.AspNet": "2.0.0-aspnet-beta5", + "xunit.runner.utility.AspNet": "2.0.0-aspnet-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.ObjectModel", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.aspnet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.aspnet.dll": {} + } + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.Reflection", + "System.Runtime" + ], + "compile": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "sha512": "3OKYZSMwSsgHA7uyx3U3BqAzdJLHKhR6Y95mhuOFRgg2Piw3vKEPmxmG/IQiD0qeCL0pbkcCQzpa60Yo1Jn0yg==", + "files": [ + "analyzers/portable50/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Analyzers.nuspec", + "ThirdPartyNotices.rtf", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "sha512": "B5aFOpPSQeEG5pafehkWJvJgTzI7dN9jLWqX6rk8u4RSQHiAldwRgniGo+jcKJGbdsxFUQISjZsvaNY+k9kXvg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "sha512": "iS92guFlOKM4GNXwuWkQDgMwZDWxEny9LsilhAGyc8gfdX1rmbOrQTLR6ti8CQA3Jk0s9UB7O1MZmI8lKvcTMw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "serviceable": true, + "sha512": "YbfHijwmKd3PsNSJ6iYRARwSeCPwkZKY9s3qb+jNFqom2QnD9PDq9q0yIZZBWZMJ3EAsRIZa92FYuKnNKPfX9g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "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/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/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+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "System.Collections.Immutable/1.1.36": { + "serviceable": true, + "sha512": "MOlivTIeAIQPPMUPWIIoMCvZczjFRLYUWSYwqi1szu8QPyeIbsaPeI+hpXe1DzTxNwnRnmfYaoToi6kXIfSPNg==", + "files": [ + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "License-Stable.rtf", + "System.Collections.Immutable.1.1.36.nupkg", + "System.Collections.Immutable.1.1.36.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "sha512": "TkElLDkB9UwDl9Ka8lCRlANpI8OOIprWchSbVOkSRUcFTOFT42B7+t5RWYZeayQluAqAiYpT4tw7zQZdghWSYA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0-rc3-build2880.nupkg", + "xunit.abstractions.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.0.0-rc3-build2880": { + "sha512": "8ytSE6XlpeLIkuba3bWKmqX07vMVN3cCRZ+9cZmCYwuNOgHP3T9YYz+pWLjUbdBhM8uXdzueIZkJN/Ig6YIGkg==", + "files": [ + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.0.0-rc3-build2880.nupkg", + "xunit.assert.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "sha512": "hsX/BOW0xd29ZDX0nLzDgo2iCDTS06VhDcv9ZRkQzZpeAkOvIaFgkHX/5neGrtCiItnEfRiUWP476rlzYVdKcA==", + "files": [ + "lib/dnx451/xunit.execution.AspNet.dll", + "lib/dnx451/xunit.execution.AspNet.xml", + "lib/dnxcore50/xunit.execution.AspNet.dll", + "lib/dnxcore50/xunit.execution.AspNet.xml", + "xunit.execution.AspNet.2.0.0-aspnet-beta5.nupkg", + "xunit.execution.AspNet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.execution.AspNet.nuspec" + ] + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "sha512": "h5qu03ot74RyjJt69AozLZPUCRklHqfA9IAQtu9wCQ1MmPXN0X+q7vu3ZH+moXfFlDRfsaDtuKr7DdaxhZaw4Q==", + "files": [ + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.0.0-rc3-build2880.nupkg", + "xunit.extensibility.core.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "sha512": "yGmIP+ED7HTFa/oCY/OjDMn3QOTtsquhFO+l7ZPJ0kKGWJ84p3rnD4E0Hvo/7t7pEMpUAkzXSeqOwobsf1VleA==", + "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-beta5.nupkg", + "xunit.runner.aspnet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.runner.aspnet.nuspec" + ] + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "sha512": "sydRLOseu0P8iod7Zezt0GimHoKuEQCRlwvTEqY/0WcDLdCCoca/+tvLrd8NumBA0hHUj1OsxOkvURW+hTA9zw==", + "files": [ + "lib/dnx451/xunit.runner.utility.AspNet.dll", + "lib/dnx451/xunit.runner.utility.AspNet.xml", + "lib/dnxcore50/xunit.runner.utility.AspNet.dll", + "lib/dnxcore50/xunit.runner.utility.AspNet.xml", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta5.nupkg", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.runner.utility.AspNet.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.Framework.CommonTestUtils >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Sources >= 1.0.0-beta5", + "xunit.runner.aspnet >= 2.0.0-aspnet-beta5" + ], + "DNX,Version=v4.5.1": [] + } +} \ No newline at end of file diff --git a/test/Microsoft.Framework.ApplicationHost.FunctionalTests/project.json b/test/Microsoft.Framework.ApplicationHost.FunctionalTests/project.json index 30237cdeb..44976bfe2 100644 --- a/test/Microsoft.Framework.ApplicationHost.FunctionalTests/project.json +++ b/test/Microsoft.Framework.ApplicationHost.FunctionalTests/project.json @@ -1,9 +1,9 @@ { "dependencies": { - "Bootstrapper.FunctionalTests": "1.0.0-*", - "Microsoft.Framework.CommonTestUtils": "1.0.0-*", - "Microsoft.Framework.Runtime.Sources": "1.0.0-*", - "xunit.runner.aspnet": "2.0.0-aspnet-*" + "Bootstrapper.FunctionalTests": "1.0.0-beta5", + "Microsoft.Framework.CommonTestUtils": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Sources": "1.0.0-beta5", + "xunit.runner.aspnet": "2.0.0-aspnet-beta5" }, "frameworks": { diff --git a/test/Microsoft.Framework.ApplicationHost.FunctionalTests/project.lock.json b/test/Microsoft.Framework.ApplicationHost.FunctionalTests/project.lock.json new file mode 100644 index 000000000..5e3bc0a38 --- /dev/null +++ b/test/Microsoft.Framework.ApplicationHost.FunctionalTests/project.lock.json @@ -0,0 +1,648 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.0.0-rc3-build2880": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880", + "xunit.extensibility.core": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.Diagnostics.Debug", + "System.Globalization", + "System.Linq", + "System.Reflection", + "System.Reflection.Extensions", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading.Tasks" + ], + "compile": { + "lib/dnx451/xunit.execution.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.AspNet.dll": {} + } + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "dependencies": { + "xunit.abstractions": "[2.0.0-rc3-build2880]" + }, + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.assert": "2.0.0-rc3-build2880", + "xunit.execution.AspNet": "2.0.0-aspnet-beta5", + "xunit.runner.utility.AspNet": "2.0.0-aspnet-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.ObjectModel", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.aspnet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.aspnet.dll": {} + } + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.Reflection", + "System.Runtime" + ], + "compile": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "sha512": "3OKYZSMwSsgHA7uyx3U3BqAzdJLHKhR6Y95mhuOFRgg2Piw3vKEPmxmG/IQiD0qeCL0pbkcCQzpa60Yo1Jn0yg==", + "files": [ + "analyzers/portable50/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Analyzers.nuspec", + "ThirdPartyNotices.rtf", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "sha512": "B5aFOpPSQeEG5pafehkWJvJgTzI7dN9jLWqX6rk8u4RSQHiAldwRgniGo+jcKJGbdsxFUQISjZsvaNY+k9kXvg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "sha512": "iS92guFlOKM4GNXwuWkQDgMwZDWxEny9LsilhAGyc8gfdX1rmbOrQTLR6ti8CQA3Jk0s9UB7O1MZmI8lKvcTMw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "serviceable": true, + "sha512": "YbfHijwmKd3PsNSJ6iYRARwSeCPwkZKY9s3qb+jNFqom2QnD9PDq9q0yIZZBWZMJ3EAsRIZa92FYuKnNKPfX9g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "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/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/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+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "System.Collections.Immutable/1.1.36": { + "serviceable": true, + "sha512": "MOlivTIeAIQPPMUPWIIoMCvZczjFRLYUWSYwqi1szu8QPyeIbsaPeI+hpXe1DzTxNwnRnmfYaoToi6kXIfSPNg==", + "files": [ + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "License-Stable.rtf", + "System.Collections.Immutable.1.1.36.nupkg", + "System.Collections.Immutable.1.1.36.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "sha512": "TkElLDkB9UwDl9Ka8lCRlANpI8OOIprWchSbVOkSRUcFTOFT42B7+t5RWYZeayQluAqAiYpT4tw7zQZdghWSYA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0-rc3-build2880.nupkg", + "xunit.abstractions.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.0.0-rc3-build2880": { + "sha512": "8ytSE6XlpeLIkuba3bWKmqX07vMVN3cCRZ+9cZmCYwuNOgHP3T9YYz+pWLjUbdBhM8uXdzueIZkJN/Ig6YIGkg==", + "files": [ + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.0.0-rc3-build2880.nupkg", + "xunit.assert.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "sha512": "hsX/BOW0xd29ZDX0nLzDgo2iCDTS06VhDcv9ZRkQzZpeAkOvIaFgkHX/5neGrtCiItnEfRiUWP476rlzYVdKcA==", + "files": [ + "lib/dnx451/xunit.execution.AspNet.dll", + "lib/dnx451/xunit.execution.AspNet.xml", + "lib/dnxcore50/xunit.execution.AspNet.dll", + "lib/dnxcore50/xunit.execution.AspNet.xml", + "xunit.execution.AspNet.2.0.0-aspnet-beta5.nupkg", + "xunit.execution.AspNet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.execution.AspNet.nuspec" + ] + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "sha512": "h5qu03ot74RyjJt69AozLZPUCRklHqfA9IAQtu9wCQ1MmPXN0X+q7vu3ZH+moXfFlDRfsaDtuKr7DdaxhZaw4Q==", + "files": [ + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.0.0-rc3-build2880.nupkg", + "xunit.extensibility.core.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "sha512": "yGmIP+ED7HTFa/oCY/OjDMn3QOTtsquhFO+l7ZPJ0kKGWJ84p3rnD4E0Hvo/7t7pEMpUAkzXSeqOwobsf1VleA==", + "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-beta5.nupkg", + "xunit.runner.aspnet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.runner.aspnet.nuspec" + ] + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "sha512": "sydRLOseu0P8iod7Zezt0GimHoKuEQCRlwvTEqY/0WcDLdCCoca/+tvLrd8NumBA0hHUj1OsxOkvURW+hTA9zw==", + "files": [ + "lib/dnx451/xunit.runner.utility.AspNet.dll", + "lib/dnx451/xunit.runner.utility.AspNet.xml", + "lib/dnxcore50/xunit.runner.utility.AspNet.dll", + "lib/dnxcore50/xunit.runner.utility.AspNet.xml", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta5.nupkg", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.runner.utility.AspNet.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Bootstrapper.FunctionalTests >= 1.0.0-beta5", + "Microsoft.Framework.CommonTestUtils >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Sources >= 1.0.0-beta5", + "xunit.runner.aspnet >= 2.0.0-aspnet-beta5" + ], + "DNX,Version=v4.5.1": [] + } +} \ No newline at end of file diff --git a/test/Microsoft.Framework.CommandLineUtils.Sources.Tests/project.json b/test/Microsoft.Framework.CommandLineUtils.Sources.Tests/project.json index 21ff9ed9b..4d00ffc6d 100644 --- a/test/Microsoft.Framework.CommandLineUtils.Sources.Tests/project.json +++ b/test/Microsoft.Framework.CommandLineUtils.Sources.Tests/project.json @@ -1,7 +1,7 @@ { "dependencies": { - "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-*", - "xunit.runner.aspnet": "2.0.0-aspnet-*" + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "xunit.runner.aspnet": "2.0.0-aspnet-beta5" }, "frameworks": { diff --git a/test/Microsoft.Framework.CommandLineUtils.Sources.Tests/project.lock.json b/test/Microsoft.Framework.CommandLineUtils.Sources.Tests/project.lock.json new file mode 100644 index 000000000..345a177bf --- /dev/null +++ b/test/Microsoft.Framework.CommandLineUtils.Sources.Tests/project.lock.json @@ -0,0 +1,2892 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.0.0-rc3-build2880": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880", + "xunit.extensibility.core": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.Diagnostics.Debug", + "System.Globalization", + "System.Linq", + "System.Reflection", + "System.Reflection.Extensions", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading.Tasks" + ], + "compile": { + "lib/dnx451/xunit.execution.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.AspNet.dll": {} + } + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "dependencies": { + "xunit.abstractions": "[2.0.0-rc3-build2880]" + }, + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.assert": "2.0.0-rc3-build2880", + "xunit.execution.AspNet": "2.0.0-aspnet-beta5", + "xunit.runner.utility.AspNet": "2.0.0-aspnet-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.ObjectModel", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.aspnet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.aspnet.dll": {} + } + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.Reflection", + "System.Runtime" + ], + "compile": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": {}, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Dynamic.Runtime": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Resources.ReaderWriter": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Threading.Timer": "4.0.0-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019", + "System.Xml.XmlSerializer": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.AppContext": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Loader": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Process": "4.0.0-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.Sockets": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "System.AppContext/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ReaderWriter.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ReaderWriter.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XmlDocument": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.0.0-rc3-build2880": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "xunit.abstractions": "2.0.0-rc3-build2880", + "xunit.extensibility.core": "2.0.0-rc3-build2880" + }, + "compile": { + "lib/dnxcore50/xunit.execution.AspNet.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.execution.AspNet.dll": {} + } + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "dependencies": { + "xunit.abstractions": "[2.0.0-rc3-build2880]" + }, + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "System.Console": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019", + "xunit.assert": "2.0.0-rc3-build2880", + "xunit.execution.AspNet": "2.0.0-aspnet-beta5", + "xunit.runner.utility.AspNet": "2.0.0-aspnet-beta5" + }, + "compile": { + "lib/dnxcore50/xunit.runner.aspnet.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.aspnet.dll": {} + } + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "xunit.abstractions": "2.0.0-rc3-build2880" + }, + "compile": { + "lib/dnxcore50/xunit.runner.utility.AspNet.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.utility.AspNet.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "sha512": "3OKYZSMwSsgHA7uyx3U3BqAzdJLHKhR6Y95mhuOFRgg2Piw3vKEPmxmG/IQiD0qeCL0pbkcCQzpa60Yo1Jn0yg==", + "files": [ + "analyzers/portable50/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Analyzers.nuspec", + "ThirdPartyNotices.rtf", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "sha512": "B5aFOpPSQeEG5pafehkWJvJgTzI7dN9jLWqX6rk8u4RSQHiAldwRgniGo+jcKJGbdsxFUQISjZsvaNY+k9kXvg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "sha512": "iS92guFlOKM4GNXwuWkQDgMwZDWxEny9LsilhAGyc8gfdX1rmbOrQTLR6ti8CQA3Jk0s9UB7O1MZmI8lKvcTMw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "serviceable": true, + "sha512": "YbfHijwmKd3PsNSJ6iYRARwSeCPwkZKY9s3qb+jNFqom2QnD9PDq9q0yIZZBWZMJ3EAsRIZa92FYuKnNKPfX9g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "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/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/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+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "System.AppContext/4.0.0-beta-23019": { + "sha512": "dtYrJWnRhdNNbuTQf8ZhL9FhR+zef7ExSEHwqCF7e3YTPcL3XhUF7SD4Ij2rF3DJNMWT/r/8dgAs/9mNmOD66w==", + "files": [ + "lib/DNXCore50/System.AppContext.dll", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "ref/dotnet/System.AppContext.dll", + "ref/net46/System.AppContext.dll", + "System.AppContext.4.0.0-beta-23019.nupkg", + "System.AppContext.4.0.0-beta-23019.nupkg.sha512", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.36": { + "serviceable": true, + "sha512": "MOlivTIeAIQPPMUPWIIoMCvZczjFRLYUWSYwqi1szu8QPyeIbsaPeI+hpXe1DzTxNwnRnmfYaoToi6kXIfSPNg==", + "files": [ + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "License-Stable.rtf", + "System.Collections.Immutable.1.1.36.nupkg", + "System.Collections.Immutable.1.1.36.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "sha512": "ijnoxLU+SrSf1AItfZOwtnzyx7yEi+WJtKa3d2X93Xf5YHlRsL4RwMZ10M9gLE8E+Rpi3ZJM5wAXi6OFSprDtw==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/net46/System.Collections.NonGeneric.dll", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "sha512": "1vuXv89pElI0JeDhnXokMyy9VkLpkDFa+oU3selb5uhHfzVswH1etFBumZ0VKKvTOAnm8AS/3ZDXAVlRjywq3A==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Process.dll", + "lib/net46/System.Diagnostics.Process.dll", + "ref/dotnet/System.Diagnostics.Process.dll", + "ref/net46/System.Diagnostics.Process.dll", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Process.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "sha512": "GB0ki4TLNwFKcT7ZesteTERlZmBytRitEbdD6O1zVwDaeqqY+FZb2/+CH2Q5U1rN7qY9YmM70PxtyPG1t31zkg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "sha512": "MZxMo9Skg9oZrJYwGpRfeOfrTfHxmTPWhj8XIXdIryfArzwG1FjZgzOrkWWcON0PdV9OywZYGly09nUCs/JdhA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.TraceSource.dll", + "lib/net46/System.Diagnostics.TraceSource.dll", + "ref/dotnet/System.Diagnostics.TraceSource.dll", + "ref/net46/System.Diagnostics.TraceSource.dll", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.TraceSource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "sha512": "yhXko8+R8fy0RERn6xQltYEhChBNyGEQgntwjHqNBc3x1M7wvg+Ye72Bh1QVQfnMIXZ0tG8XSrQs8hJe8KjYjg==", + "files": [ + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._", + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "sha512": "+xsD0H46/EB88848d9cHel2WVbUWlM/Y/k+tuY5lp2jXSwV8zMJ6F3TjMqeUZwWtUUavw+AN7D0a4ZoGVs/Rcw==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._", + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "sha512": "YjnsUzXsXx8BdqaXQ2U/hrz4CWdlAfcoYccqO3BSKCpPZPFEbKizEiHR9KJGcqf9gQ4lzRkhlM3xiMIjX27mUQ==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._", + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "sha512": "4NWuSdsFSf21iJkd+NQaE2OwtNaKGdXIbBbQmfE43evHl6fUII38wwNnooWtF0avCEyU6BOdUTiwoZAUZyQwcA==", + "files": [ + "lib/DNXCore50/System.Net.Sockets.dll", + "ref/dotnet/System.Net.Sockets.dll", + "System.Net.Sockets.4.0.10-beta-23019.nupkg", + "System.Net.Sockets.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Sockets.nuspec" + ] + }, + "System.ObjectModel/4.0.10-beta-23019": { + "sha512": "sJ+7kgWoTs4d8eNlhJB/p1Uq2iWHYVxO7ALNpB3sTwh3LORqwwPZe5FbSweccA3seM+zLSYa2AqBGp69JOXbcA==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/net46/_._", + "ref/dotnet/System.ObjectModel.dll", + "ref/net46/_._", + "System.ObjectModel.4.0.10-beta-23019.nupkg", + "System.ObjectModel.4.0.10-beta-23019.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "sha512": "FAp9TewUfCxaydPyY5Glv2/3KdxD5vpZ4qgx26OWV6xtytGinnXpHsxownQKKe7WkeqlRjy7s7cRgjTKZ50AQA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "sha512": "5OsJjj6G9WY8aV3EWfI03dJoqH0RvILtP2GJ16JQf90pV0kVmgGsFQSqh+lcnnexh4CEje7DDxF748o/8KamWA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/net45/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "sha512": "5/WcPvsdnw0d8rwwsCgQKoo9oXFQA1gMHtyNcYjelDjaaYC/dYoU7Eo0JdP+0PMgy9FnBOHVjRHOTcJ2HIjefA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "sha512": "9J0+T+ChJ9rlYTcrJiTOLfTJHuHuenol1eOJgiF8yJK1rDozU2Wnex5kXus5Z8/SerMSCUofUOx4c2WYX/tNow==", + "files": [ + "lib/DNXCore50/System.Resources.ReaderWriter.dll", + "lib/net46/System.Resources.ReaderWriter.dll", + "ref/dotnet/System.Resources.ReaderWriter.dll", + "ref/net46/System.Resources.ReaderWriter.dll", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ReaderWriter.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "sha512": "YuxWBHBbvN5ILjno2DBjgW2NXQscfJFvIfQEOGHwChM5Q9//EO0LZfErH7fTk1n0IVcorDu/HTnkqr2NuK/t5w==", + "files": [ + "lib/DNXCore50/System.Runtime.Loader.dll", + "ref/dotnet/System.Runtime.Loader.dll", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Loader.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Security.Claims/4.0.0-beta-23019": { + "sha512": "kKseHxGh5pWjM43MZWtub/ZyBWUV3RHNSJuUtTzapeQD2qND6pGGNekMXcxmEZOxrKwFEBAeTlcgmWo/2e6/SQ==", + "files": [ + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll", + "System.Security.Claims.4.0.0-beta-23019.nupkg", + "System.Security.Claims.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.0-beta-23019": { + "sha512": "2zkK0eJOfso/Jo+77NVXDoJRggzL0jM0ayeXz+vD8pK9pIRnhpWJVbaGmT7MPBWW9KbPwtbJyXejpUS2rBflUQ==", + "files": [ + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._", + "System.Security.Principal.4.0.0-beta-23019.nupkg", + "System.Security.Principal.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "sha512": "FYvKKTbncuJCMnc1TmccsJlGSjIQrUJPymt2R3o5uSV1plyGD9V3san/rpq2IO4kDbHjGrQjEtZlbehwUucB5Q==", + "files": [ + "lib/DNXCore50/System.Security.Principal.Windows.dll", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/dotnet/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.Windows.nuspec" + ] + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll", + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "sha512": "7gCVMRey2Nji6WDKleSigGBJuy4gMKXGeVqauROuFoTygHNtFYaUTeToGMy7Obsi+tzgnyEYfd+9uY3Ifc/SjA==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "sha512": "ECx+zZlXCfhkpZ0PUVrzp5UB6zRdzi94LsQhm7DtUS/uB17I3sYh0RsnMu/5jTULByQ1Ju4K/JTbM28InXO/PQ==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.dll", + "ref/net46/System.Threading.Thread.dll", + "System.Threading.Thread.4.0.0-beta-23019.nupkg", + "System.Threading.Thread.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "sha512": "nGA/Vt5zC8zGQ8r9mSdRTWzVMXh1YgJH9XH8x5OQZVLh0hn6CSC32RrmUrmKLpxKd64B9mbKoubeLUqXlf/m8g==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "ref/dotnet/System.Threading.Timer.dll", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/win81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.0-beta-23019.nupkg", + "System.Threading.Timer.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "sha512": "pyyzY5FFoZziGVDFyO5VLM094cX7jNN+01EsSJEFreje5uzSz6aKwIPgTe/l2CFiXYFoUNr0O6D3GEc8jPmbPg==", + "files": [ + "lib/dotnet/System.Xml.XDocument.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net46/_._", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "sha512": "b1SOLM9FhBCL4gW3OP5b/HV1JVb1hfsF4D4wBxyUIZMXcP3kbm4F+bYvOB0cSeJ1F8oVnCCGivSk1/aSEQ86XQ==", + "files": [ + "lib/dotnet/System.Xml.XmlDocument.dll", + "lib/net46/System.Xml.XmlDocument.dll", + "ref/dotnet/System.Xml.XmlDocument.dll", + "ref/net46/System.Xml.XmlDocument.dll", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg.sha512", + "System.Xml.XmlDocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "sha512": "BqXNr12cUj02qymL4Nhowcsfz840wLSMPfU0T8i0JGPPIx38txMwUA2pnrYWsYmDmyIgw7GGUhrjXz6WJpjgwg==", + "files": [ + "lib/DNXCore50/System.Xml.XmlSerializer.dll", + "lib/net46/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "ref/dotnet/System.Xml.XmlSerializer.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XmlSerializer.nuspec" + ] + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "sha512": "TkElLDkB9UwDl9Ka8lCRlANpI8OOIprWchSbVOkSRUcFTOFT42B7+t5RWYZeayQluAqAiYpT4tw7zQZdghWSYA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0-rc3-build2880.nupkg", + "xunit.abstractions.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.0.0-rc3-build2880": { + "sha512": "8ytSE6XlpeLIkuba3bWKmqX07vMVN3cCRZ+9cZmCYwuNOgHP3T9YYz+pWLjUbdBhM8uXdzueIZkJN/Ig6YIGkg==", + "files": [ + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.0.0-rc3-build2880.nupkg", + "xunit.assert.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "sha512": "hsX/BOW0xd29ZDX0nLzDgo2iCDTS06VhDcv9ZRkQzZpeAkOvIaFgkHX/5neGrtCiItnEfRiUWP476rlzYVdKcA==", + "files": [ + "lib/dnx451/xunit.execution.AspNet.dll", + "lib/dnx451/xunit.execution.AspNet.xml", + "lib/dnxcore50/xunit.execution.AspNet.dll", + "lib/dnxcore50/xunit.execution.AspNet.xml", + "xunit.execution.AspNet.2.0.0-aspnet-beta5.nupkg", + "xunit.execution.AspNet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.execution.AspNet.nuspec" + ] + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "sha512": "h5qu03ot74RyjJt69AozLZPUCRklHqfA9IAQtu9wCQ1MmPXN0X+q7vu3ZH+moXfFlDRfsaDtuKr7DdaxhZaw4Q==", + "files": [ + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.0.0-rc3-build2880.nupkg", + "xunit.extensibility.core.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "sha512": "yGmIP+ED7HTFa/oCY/OjDMn3QOTtsquhFO+l7ZPJ0kKGWJ84p3rnD4E0Hvo/7t7pEMpUAkzXSeqOwobsf1VleA==", + "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-beta5.nupkg", + "xunit.runner.aspnet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.runner.aspnet.nuspec" + ] + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "sha512": "sydRLOseu0P8iod7Zezt0GimHoKuEQCRlwvTEqY/0WcDLdCCoca/+tvLrd8NumBA0hHUj1OsxOkvURW+hTA9zw==", + "files": [ + "lib/dnx451/xunit.runner.utility.AspNet.dll", + "lib/dnx451/xunit.runner.utility.AspNet.xml", + "lib/dnxcore50/xunit.runner.utility.AspNet.dll", + "lib/dnxcore50/xunit.runner.utility.AspNet.xml", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta5.nupkg", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.runner.utility.AspNet.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.Framework.CommandLineUtils.Sources >= 1.0.0-beta5", + "xunit.runner.aspnet >= 2.0.0-aspnet-beta5" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [] + } +} \ No newline at end of file diff --git a/test/Microsoft.Framework.CommonTestUtils/project.json b/test/Microsoft.Framework.CommonTestUtils/project.json index 01e5c1e0b..2fd74aed7 100644 --- a/test/Microsoft.Framework.CommonTestUtils/project.json +++ b/test/Microsoft.Framework.CommonTestUtils/project.json @@ -1,8 +1,8 @@ { "dependencies": { - "Microsoft.Framework.Runtime": "1.0.0-*", - "Microsoft.Framework.Runtime.Sources": "1.0.0-*", - "xunit.runner.aspnet": "2.0.0-aspnet-*" + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Sources": "1.0.0-beta5", + "xunit.runner.aspnet": "2.0.0-aspnet-beta5" }, "frameworks": { diff --git a/test/Microsoft.Framework.CommonTestUtils/project.lock.json b/test/Microsoft.Framework.CommonTestUtils/project.lock.json new file mode 100644 index 000000000..9782f6bc1 --- /dev/null +++ b/test/Microsoft.Framework.CommonTestUtils/project.lock.json @@ -0,0 +1,2913 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.0.0-rc3-build2880": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880", + "xunit.extensibility.core": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.Diagnostics.Debug", + "System.Globalization", + "System.Linq", + "System.Reflection", + "System.Reflection.Extensions", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading.Tasks" + ], + "compile": { + "lib/dnx451/xunit.execution.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.AspNet.dll": {} + } + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "dependencies": { + "xunit.abstractions": "[2.0.0-rc3-build2880]" + }, + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.assert": "2.0.0-rc3-build2880", + "xunit.execution.AspNet": "2.0.0-aspnet-beta5", + "xunit.runner.utility.AspNet": "2.0.0-aspnet-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.ObjectModel", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.aspnet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.aspnet.dll": {} + } + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.Reflection", + "System.Runtime" + ], + "compile": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": {}, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Dynamic.Runtime": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Resources.ReaderWriter": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Threading.Timer": "4.0.0-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019", + "System.Xml.XmlSerializer": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.AppContext": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Loader": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Process": "4.0.0-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.Sockets": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "System.AppContext/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.ZipFile/4.0.0.0": { + "compile": { + "lib/contract/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/aspnetcore50/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ReaderWriter.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ReaderWriter.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XmlDocument": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.0.0-rc3-build2880": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "xunit.abstractions": "2.0.0-rc3-build2880", + "xunit.extensibility.core": "2.0.0-rc3-build2880" + }, + "compile": { + "lib/dnxcore50/xunit.execution.AspNet.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.execution.AspNet.dll": {} + } + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "dependencies": { + "xunit.abstractions": "[2.0.0-rc3-build2880]" + }, + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "System.Console": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019", + "xunit.assert": "2.0.0-rc3-build2880", + "xunit.execution.AspNet": "2.0.0-aspnet-beta5", + "xunit.runner.utility.AspNet": "2.0.0-aspnet-beta5" + }, + "compile": { + "lib/dnxcore50/xunit.runner.aspnet.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.aspnet.dll": {} + } + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "xunit.abstractions": "2.0.0-rc3-build2880" + }, + "compile": { + "lib/dnxcore50/xunit.runner.utility.AspNet.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.utility.AspNet.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "sha512": "3OKYZSMwSsgHA7uyx3U3BqAzdJLHKhR6Y95mhuOFRgg2Piw3vKEPmxmG/IQiD0qeCL0pbkcCQzpa60Yo1Jn0yg==", + "files": [ + "analyzers/portable50/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Analyzers.nuspec", + "ThirdPartyNotices.rtf", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "sha512": "B5aFOpPSQeEG5pafehkWJvJgTzI7dN9jLWqX6rk8u4RSQHiAldwRgniGo+jcKJGbdsxFUQISjZsvaNY+k9kXvg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "sha512": "iS92guFlOKM4GNXwuWkQDgMwZDWxEny9LsilhAGyc8gfdX1rmbOrQTLR6ti8CQA3Jk0s9UB7O1MZmI8lKvcTMw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "serviceable": true, + "sha512": "YbfHijwmKd3PsNSJ6iYRARwSeCPwkZKY9s3qb+jNFqom2QnD9PDq9q0yIZZBWZMJ3EAsRIZa92FYuKnNKPfX9g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "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/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/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+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "System.AppContext/4.0.0-beta-23019": { + "sha512": "dtYrJWnRhdNNbuTQf8ZhL9FhR+zef7ExSEHwqCF7e3YTPcL3XhUF7SD4Ij2rF3DJNMWT/r/8dgAs/9mNmOD66w==", + "files": [ + "lib/DNXCore50/System.AppContext.dll", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "ref/dotnet/System.AppContext.dll", + "ref/net46/System.AppContext.dll", + "System.AppContext.4.0.0-beta-23019.nupkg", + "System.AppContext.4.0.0-beta-23019.nupkg.sha512", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.36": { + "serviceable": true, + "sha512": "MOlivTIeAIQPPMUPWIIoMCvZczjFRLYUWSYwqi1szu8QPyeIbsaPeI+hpXe1DzTxNwnRnmfYaoToi6kXIfSPNg==", + "files": [ + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "License-Stable.rtf", + "System.Collections.Immutable.1.1.36.nupkg", + "System.Collections.Immutable.1.1.36.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "sha512": "ijnoxLU+SrSf1AItfZOwtnzyx7yEi+WJtKa3d2X93Xf5YHlRsL4RwMZ10M9gLE8E+Rpi3ZJM5wAXi6OFSprDtw==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/net46/System.Collections.NonGeneric.dll", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "sha512": "1vuXv89pElI0JeDhnXokMyy9VkLpkDFa+oU3selb5uhHfzVswH1etFBumZ0VKKvTOAnm8AS/3ZDXAVlRjywq3A==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Process.dll", + "lib/net46/System.Diagnostics.Process.dll", + "ref/dotnet/System.Diagnostics.Process.dll", + "ref/net46/System.Diagnostics.Process.dll", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Process.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "sha512": "GB0ki4TLNwFKcT7ZesteTERlZmBytRitEbdD6O1zVwDaeqqY+FZb2/+CH2Q5U1rN7qY9YmM70PxtyPG1t31zkg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "sha512": "MZxMo9Skg9oZrJYwGpRfeOfrTfHxmTPWhj8XIXdIryfArzwG1FjZgzOrkWWcON0PdV9OywZYGly09nUCs/JdhA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.TraceSource.dll", + "lib/net46/System.Diagnostics.TraceSource.dll", + "ref/dotnet/System.Diagnostics.TraceSource.dll", + "ref/net46/System.Diagnostics.TraceSource.dll", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.TraceSource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "sha512": "yhXko8+R8fy0RERn6xQltYEhChBNyGEQgntwjHqNBc3x1M7wvg+Ye72Bh1QVQfnMIXZ0tG8XSrQs8hJe8KjYjg==", + "files": [ + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._", + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.0.0.0": { + "sha512": "hxrtsFCVHGGdEPS9ZaOxW/HBXt1hNb8rXJfDhEDUaQ6E/kefS1n5/OpmzT+4l8hWSVetrGPhyh7JPy/a8w8eGg==", + "files": [ + "lib/aspnetcore50/System.IO.Compression.ZipFile.dll", + "lib/contract/System.IO.Compression.ZipFile.dll", + "System.IO.Compression.ZipFile.4.0.0.0.nupkg", + "System.IO.Compression.ZipFile.4.0.0.0.nupkg.sha512", + "System.IO.Compression.ZipFile.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "sha512": "+xsD0H46/EB88848d9cHel2WVbUWlM/Y/k+tuY5lp2jXSwV8zMJ6F3TjMqeUZwWtUUavw+AN7D0a4ZoGVs/Rcw==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._", + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "sha512": "YjnsUzXsXx8BdqaXQ2U/hrz4CWdlAfcoYccqO3BSKCpPZPFEbKizEiHR9KJGcqf9gQ4lzRkhlM3xiMIjX27mUQ==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._", + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "sha512": "4NWuSdsFSf21iJkd+NQaE2OwtNaKGdXIbBbQmfE43evHl6fUII38wwNnooWtF0avCEyU6BOdUTiwoZAUZyQwcA==", + "files": [ + "lib/DNXCore50/System.Net.Sockets.dll", + "ref/dotnet/System.Net.Sockets.dll", + "System.Net.Sockets.4.0.10-beta-23019.nupkg", + "System.Net.Sockets.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Sockets.nuspec" + ] + }, + "System.ObjectModel/4.0.10-beta-23019": { + "sha512": "sJ+7kgWoTs4d8eNlhJB/p1Uq2iWHYVxO7ALNpB3sTwh3LORqwwPZe5FbSweccA3seM+zLSYa2AqBGp69JOXbcA==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/net46/_._", + "ref/dotnet/System.ObjectModel.dll", + "ref/net46/_._", + "System.ObjectModel.4.0.10-beta-23019.nupkg", + "System.ObjectModel.4.0.10-beta-23019.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "sha512": "FAp9TewUfCxaydPyY5Glv2/3KdxD5vpZ4qgx26OWV6xtytGinnXpHsxownQKKe7WkeqlRjy7s7cRgjTKZ50AQA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "sha512": "5OsJjj6G9WY8aV3EWfI03dJoqH0RvILtP2GJ16JQf90pV0kVmgGsFQSqh+lcnnexh4CEje7DDxF748o/8KamWA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/net45/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "sha512": "5/WcPvsdnw0d8rwwsCgQKoo9oXFQA1gMHtyNcYjelDjaaYC/dYoU7Eo0JdP+0PMgy9FnBOHVjRHOTcJ2HIjefA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "sha512": "9J0+T+ChJ9rlYTcrJiTOLfTJHuHuenol1eOJgiF8yJK1rDozU2Wnex5kXus5Z8/SerMSCUofUOx4c2WYX/tNow==", + "files": [ + "lib/DNXCore50/System.Resources.ReaderWriter.dll", + "lib/net46/System.Resources.ReaderWriter.dll", + "ref/dotnet/System.Resources.ReaderWriter.dll", + "ref/net46/System.Resources.ReaderWriter.dll", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ReaderWriter.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "sha512": "YuxWBHBbvN5ILjno2DBjgW2NXQscfJFvIfQEOGHwChM5Q9//EO0LZfErH7fTk1n0IVcorDu/HTnkqr2NuK/t5w==", + "files": [ + "lib/DNXCore50/System.Runtime.Loader.dll", + "ref/dotnet/System.Runtime.Loader.dll", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Loader.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Security.Claims/4.0.0-beta-23019": { + "sha512": "kKseHxGh5pWjM43MZWtub/ZyBWUV3RHNSJuUtTzapeQD2qND6pGGNekMXcxmEZOxrKwFEBAeTlcgmWo/2e6/SQ==", + "files": [ + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll", + "System.Security.Claims.4.0.0-beta-23019.nupkg", + "System.Security.Claims.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.0-beta-23019": { + "sha512": "2zkK0eJOfso/Jo+77NVXDoJRggzL0jM0ayeXz+vD8pK9pIRnhpWJVbaGmT7MPBWW9KbPwtbJyXejpUS2rBflUQ==", + "files": [ + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._", + "System.Security.Principal.4.0.0-beta-23019.nupkg", + "System.Security.Principal.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "sha512": "FYvKKTbncuJCMnc1TmccsJlGSjIQrUJPymt2R3o5uSV1plyGD9V3san/rpq2IO4kDbHjGrQjEtZlbehwUucB5Q==", + "files": [ + "lib/DNXCore50/System.Security.Principal.Windows.dll", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/dotnet/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.Windows.nuspec" + ] + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll", + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "sha512": "7gCVMRey2Nji6WDKleSigGBJuy4gMKXGeVqauROuFoTygHNtFYaUTeToGMy7Obsi+tzgnyEYfd+9uY3Ifc/SjA==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "sha512": "ECx+zZlXCfhkpZ0PUVrzp5UB6zRdzi94LsQhm7DtUS/uB17I3sYh0RsnMu/5jTULByQ1Ju4K/JTbM28InXO/PQ==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.dll", + "ref/net46/System.Threading.Thread.dll", + "System.Threading.Thread.4.0.0-beta-23019.nupkg", + "System.Threading.Thread.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "sha512": "nGA/Vt5zC8zGQ8r9mSdRTWzVMXh1YgJH9XH8x5OQZVLh0hn6CSC32RrmUrmKLpxKd64B9mbKoubeLUqXlf/m8g==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "ref/dotnet/System.Threading.Timer.dll", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/win81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.0-beta-23019.nupkg", + "System.Threading.Timer.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "sha512": "pyyzY5FFoZziGVDFyO5VLM094cX7jNN+01EsSJEFreje5uzSz6aKwIPgTe/l2CFiXYFoUNr0O6D3GEc8jPmbPg==", + "files": [ + "lib/dotnet/System.Xml.XDocument.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net46/_._", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "sha512": "b1SOLM9FhBCL4gW3OP5b/HV1JVb1hfsF4D4wBxyUIZMXcP3kbm4F+bYvOB0cSeJ1F8oVnCCGivSk1/aSEQ86XQ==", + "files": [ + "lib/dotnet/System.Xml.XmlDocument.dll", + "lib/net46/System.Xml.XmlDocument.dll", + "ref/dotnet/System.Xml.XmlDocument.dll", + "ref/net46/System.Xml.XmlDocument.dll", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg.sha512", + "System.Xml.XmlDocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "sha512": "BqXNr12cUj02qymL4Nhowcsfz840wLSMPfU0T8i0JGPPIx38txMwUA2pnrYWsYmDmyIgw7GGUhrjXz6WJpjgwg==", + "files": [ + "lib/DNXCore50/System.Xml.XmlSerializer.dll", + "lib/net46/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "ref/dotnet/System.Xml.XmlSerializer.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XmlSerializer.nuspec" + ] + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "sha512": "TkElLDkB9UwDl9Ka8lCRlANpI8OOIprWchSbVOkSRUcFTOFT42B7+t5RWYZeayQluAqAiYpT4tw7zQZdghWSYA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0-rc3-build2880.nupkg", + "xunit.abstractions.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.0.0-rc3-build2880": { + "sha512": "8ytSE6XlpeLIkuba3bWKmqX07vMVN3cCRZ+9cZmCYwuNOgHP3T9YYz+pWLjUbdBhM8uXdzueIZkJN/Ig6YIGkg==", + "files": [ + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.0.0-rc3-build2880.nupkg", + "xunit.assert.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "sha512": "hsX/BOW0xd29ZDX0nLzDgo2iCDTS06VhDcv9ZRkQzZpeAkOvIaFgkHX/5neGrtCiItnEfRiUWP476rlzYVdKcA==", + "files": [ + "lib/dnx451/xunit.execution.AspNet.dll", + "lib/dnx451/xunit.execution.AspNet.xml", + "lib/dnxcore50/xunit.execution.AspNet.dll", + "lib/dnxcore50/xunit.execution.AspNet.xml", + "xunit.execution.AspNet.2.0.0-aspnet-beta5.nupkg", + "xunit.execution.AspNet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.execution.AspNet.nuspec" + ] + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "sha512": "h5qu03ot74RyjJt69AozLZPUCRklHqfA9IAQtu9wCQ1MmPXN0X+q7vu3ZH+moXfFlDRfsaDtuKr7DdaxhZaw4Q==", + "files": [ + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.0.0-rc3-build2880.nupkg", + "xunit.extensibility.core.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "sha512": "yGmIP+ED7HTFa/oCY/OjDMn3QOTtsquhFO+l7ZPJ0kKGWJ84p3rnD4E0Hvo/7t7pEMpUAkzXSeqOwobsf1VleA==", + "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-beta5.nupkg", + "xunit.runner.aspnet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.runner.aspnet.nuspec" + ] + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "sha512": "sydRLOseu0P8iod7Zezt0GimHoKuEQCRlwvTEqY/0WcDLdCCoca/+tvLrd8NumBA0hHUj1OsxOkvURW+hTA9zw==", + "files": [ + "lib/dnx451/xunit.runner.utility.AspNet.dll", + "lib/dnx451/xunit.runner.utility.AspNet.xml", + "lib/dnxcore50/xunit.runner.utility.AspNet.dll", + "lib/dnxcore50/xunit.runner.utility.AspNet.xml", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta5.nupkg", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.runner.utility.AspNet.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.Framework.Runtime >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Sources >= 1.0.0-beta5", + "xunit.runner.aspnet >= 2.0.0-aspnet-beta5" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [ + "System.IO.Compression.ZipFile >= 4.0.0-*" + ] + } +} \ No newline at end of file diff --git a/test/Microsoft.Framework.DesignTimeHost.Tests/project.json b/test/Microsoft.Framework.DesignTimeHost.Tests/project.json index 7c5a93fbb..be893c4f9 100644 --- a/test/Microsoft.Framework.DesignTimeHost.Tests/project.json +++ b/test/Microsoft.Framework.DesignTimeHost.Tests/project.json @@ -1,8 +1,8 @@ { "dependencies": { - "Microsoft.Framework.DesignTimeHost": "1.0.0-*", - "Microsoft.Framework.DesignTimeHost.Abstractions": "1.0.0-*", - "xunit.runner.aspnet": "2.0.0-aspnet-*" + "Microsoft.Framework.DesignTimeHost": "1.0.0-beta5", + "Microsoft.Framework.DesignTimeHost.Abstractions": "1.0.0-beta5", + "xunit.runner.aspnet": "2.0.0-aspnet-beta5" }, "frameworks": { "dnx451": { } diff --git a/test/Microsoft.Framework.DesignTimeHost.Tests/project.lock.json b/test/Microsoft.Framework.DesignTimeHost.Tests/project.lock.json new file mode 100644 index 000000000..152dcb647 --- /dev/null +++ b/test/Microsoft.Framework.DesignTimeHost.Tests/project.lock.json @@ -0,0 +1,676 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.0.0-rc3-build2880": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880", + "xunit.extensibility.core": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.Diagnostics.Debug", + "System.Globalization", + "System.Linq", + "System.Reflection", + "System.Reflection.Extensions", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading.Tasks" + ], + "compile": { + "lib/dnx451/xunit.execution.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.AspNet.dll": {} + } + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "dependencies": { + "xunit.abstractions": "[2.0.0-rc3-build2880]" + }, + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.assert": "2.0.0-rc3-build2880", + "xunit.execution.AspNet": "2.0.0-aspnet-beta5", + "xunit.runner.utility.AspNet": "2.0.0-aspnet-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.ObjectModel", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.aspnet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.aspnet.dll": {} + } + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.Reflection", + "System.Runtime" + ], + "compile": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "sha512": "3OKYZSMwSsgHA7uyx3U3BqAzdJLHKhR6Y95mhuOFRgg2Piw3vKEPmxmG/IQiD0qeCL0pbkcCQzpa60Yo1Jn0yg==", + "files": [ + "analyzers/portable50/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Analyzers.nuspec", + "ThirdPartyNotices.rtf", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "sha512": "B5aFOpPSQeEG5pafehkWJvJgTzI7dN9jLWqX6rk8u4RSQHiAldwRgniGo+jcKJGbdsxFUQISjZsvaNY+k9kXvg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "sha512": "iS92guFlOKM4GNXwuWkQDgMwZDWxEny9LsilhAGyc8gfdX1rmbOrQTLR6ti8CQA3Jk0s9UB7O1MZmI8lKvcTMw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "serviceable": true, + "sha512": "YbfHijwmKd3PsNSJ6iYRARwSeCPwkZKY9s3qb+jNFqom2QnD9PDq9q0yIZZBWZMJ3EAsRIZa92FYuKnNKPfX9g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "sha512": "hgETnks4ovIE4ySkFs6mQ+QN195kOIM+3IxgIqQFYtuF9tfNdw1/xkkwm9ip7vUifJlNC4O5d9o7CJ2ou46GyA==", + "files": [ + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll", + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.xml", + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll", + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.xml", + "lib/net45/Microsoft.Framework.NotNullAttribute.Sources.dll", + "lib/net45/Microsoft.Framework.NotNullAttribute.Sources.xml", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "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/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/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+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "System.Collections.Immutable/1.1.36": { + "serviceable": true, + "sha512": "MOlivTIeAIQPPMUPWIIoMCvZczjFRLYUWSYwqi1szu8QPyeIbsaPeI+hpXe1DzTxNwnRnmfYaoToi6kXIfSPNg==", + "files": [ + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "License-Stable.rtf", + "System.Collections.Immutable.1.1.36.nupkg", + "System.Collections.Immutable.1.1.36.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "sha512": "TkElLDkB9UwDl9Ka8lCRlANpI8OOIprWchSbVOkSRUcFTOFT42B7+t5RWYZeayQluAqAiYpT4tw7zQZdghWSYA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0-rc3-build2880.nupkg", + "xunit.abstractions.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.0.0-rc3-build2880": { + "sha512": "8ytSE6XlpeLIkuba3bWKmqX07vMVN3cCRZ+9cZmCYwuNOgHP3T9YYz+pWLjUbdBhM8uXdzueIZkJN/Ig6YIGkg==", + "files": [ + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.0.0-rc3-build2880.nupkg", + "xunit.assert.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "sha512": "hsX/BOW0xd29ZDX0nLzDgo2iCDTS06VhDcv9ZRkQzZpeAkOvIaFgkHX/5neGrtCiItnEfRiUWP476rlzYVdKcA==", + "files": [ + "lib/dnx451/xunit.execution.AspNet.dll", + "lib/dnx451/xunit.execution.AspNet.xml", + "lib/dnxcore50/xunit.execution.AspNet.dll", + "lib/dnxcore50/xunit.execution.AspNet.xml", + "xunit.execution.AspNet.2.0.0-aspnet-beta5.nupkg", + "xunit.execution.AspNet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.execution.AspNet.nuspec" + ] + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "sha512": "h5qu03ot74RyjJt69AozLZPUCRklHqfA9IAQtu9wCQ1MmPXN0X+q7vu3ZH+moXfFlDRfsaDtuKr7DdaxhZaw4Q==", + "files": [ + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.0.0-rc3-build2880.nupkg", + "xunit.extensibility.core.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "sha512": "yGmIP+ED7HTFa/oCY/OjDMn3QOTtsquhFO+l7ZPJ0kKGWJ84p3rnD4E0Hvo/7t7pEMpUAkzXSeqOwobsf1VleA==", + "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-beta5.nupkg", + "xunit.runner.aspnet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.runner.aspnet.nuspec" + ] + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "sha512": "sydRLOseu0P8iod7Zezt0GimHoKuEQCRlwvTEqY/0WcDLdCCoca/+tvLrd8NumBA0hHUj1OsxOkvURW+hTA9zw==", + "files": [ + "lib/dnx451/xunit.runner.utility.AspNet.dll", + "lib/dnx451/xunit.runner.utility.AspNet.xml", + "lib/dnxcore50/xunit.runner.utility.AspNet.dll", + "lib/dnxcore50/xunit.runner.utility.AspNet.xml", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta5.nupkg", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.runner.utility.AspNet.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.Framework.DesignTimeHost >= 1.0.0-beta5", + "Microsoft.Framework.DesignTimeHost.Abstractions >= 1.0.0-beta5", + "xunit.runner.aspnet >= 2.0.0-aspnet-beta5" + ], + "DNX,Version=v4.5.1": [] + } +} \ No newline at end of file diff --git a/test/Microsoft.Framework.PackageManager.FunctionalTests/project.json b/test/Microsoft.Framework.PackageManager.FunctionalTests/project.json index 2cfe7e3dd..08357b098 100644 --- a/test/Microsoft.Framework.PackageManager.FunctionalTests/project.json +++ b/test/Microsoft.Framework.PackageManager.FunctionalTests/project.json @@ -1,10 +1,10 @@ { "dependencies": { - "Microsoft.AspNet.Testing": "1.0.0-*", - "Microsoft.Framework.CommonTestUtils": "1.0.0-*", - "Microsoft.Framework.Runtime.Sources": "1.0.0-*", - "Microsoft.Framework.PackageManager": "1.0.0-*", - "xunit.runner.aspnet": "2.0.0-aspnet-*" + "Microsoft.AspNet.Testing": "1.0.0-beta5", + "Microsoft.Framework.CommonTestUtils": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Sources": "1.0.0-beta5", + "Microsoft.Framework.PackageManager": "1.0.0-beta5", + "xunit.runner.aspnet": "2.0.0-aspnet-beta5" }, "frameworks": { diff --git a/test/Microsoft.Framework.PackageManager.FunctionalTests/project.lock.json b/test/Microsoft.Framework.PackageManager.FunctionalTests/project.lock.json new file mode 100644 index 000000000..53e367c5b --- /dev/null +++ b/test/Microsoft.Framework.PackageManager.FunctionalTests/project.lock.json @@ -0,0 +1,712 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.AspNet.Testing/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "xunit.runner.aspnet": "2.0.0-aspnet-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Reflection", + "System.Runtime", + "System.Threading.Tasks" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Testing.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Testing.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.0.0-rc3-build2880": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880", + "xunit.extensibility.core": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.Diagnostics.Debug", + "System.Globalization", + "System.Linq", + "System.Reflection", + "System.Reflection.Extensions", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading.Tasks" + ], + "compile": { + "lib/dnx451/xunit.execution.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.AspNet.dll": {} + } + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "dependencies": { + "xunit.abstractions": "[2.0.0-rc3-build2880]" + }, + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.assert": "2.0.0-rc3-build2880", + "xunit.execution.AspNet": "2.0.0-aspnet-beta5", + "xunit.runner.utility.AspNet": "2.0.0-aspnet-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.ObjectModel", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.aspnet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.aspnet.dll": {} + } + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.Reflection", + "System.Runtime" + ], + "compile": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNet.Testing/1.0.0-beta5": { + "serviceable": true, + "sha512": "y/78MxsUWo35YZhv7uwx5AYZYNGvr9ZOGmqwukKEvv4wS7gk55OL3xEqB69Wc6zXWGIy7mV8wSYYTdr5SXGYag==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Testing.dll", + "lib/dnx451/Microsoft.AspNet.Testing.xml", + "lib/dnxcore50/Microsoft.AspNet.Testing.dll", + "lib/dnxcore50/Microsoft.AspNet.Testing.xml", + "Microsoft.AspNet.Testing.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Testing.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Testing.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "sha512": "3OKYZSMwSsgHA7uyx3U3BqAzdJLHKhR6Y95mhuOFRgg2Piw3vKEPmxmG/IQiD0qeCL0pbkcCQzpa60Yo1Jn0yg==", + "files": [ + "analyzers/portable50/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Analyzers.nuspec", + "ThirdPartyNotices.rtf", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "sha512": "B5aFOpPSQeEG5pafehkWJvJgTzI7dN9jLWqX6rk8u4RSQHiAldwRgniGo+jcKJGbdsxFUQISjZsvaNY+k9kXvg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "sha512": "iS92guFlOKM4GNXwuWkQDgMwZDWxEny9LsilhAGyc8gfdX1rmbOrQTLR6ti8CQA3Jk0s9UB7O1MZmI8lKvcTMw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "serviceable": true, + "sha512": "YbfHijwmKd3PsNSJ6iYRARwSeCPwkZKY9s3qb+jNFqom2QnD9PDq9q0yIZZBWZMJ3EAsRIZa92FYuKnNKPfX9g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "sha512": "hgETnks4ovIE4ySkFs6mQ+QN195kOIM+3IxgIqQFYtuF9tfNdw1/xkkwm9ip7vUifJlNC4O5d9o7CJ2ou46GyA==", + "files": [ + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll", + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.xml", + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll", + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.xml", + "lib/net45/Microsoft.Framework.NotNullAttribute.Sources.dll", + "lib/net45/Microsoft.Framework.NotNullAttribute.Sources.xml", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "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/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/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+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "System.Collections.Immutable/1.1.36": { + "serviceable": true, + "sha512": "MOlivTIeAIQPPMUPWIIoMCvZczjFRLYUWSYwqi1szu8QPyeIbsaPeI+hpXe1DzTxNwnRnmfYaoToi6kXIfSPNg==", + "files": [ + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "License-Stable.rtf", + "System.Collections.Immutable.1.1.36.nupkg", + "System.Collections.Immutable.1.1.36.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "sha512": "TkElLDkB9UwDl9Ka8lCRlANpI8OOIprWchSbVOkSRUcFTOFT42B7+t5RWYZeayQluAqAiYpT4tw7zQZdghWSYA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0-rc3-build2880.nupkg", + "xunit.abstractions.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.0.0-rc3-build2880": { + "sha512": "8ytSE6XlpeLIkuba3bWKmqX07vMVN3cCRZ+9cZmCYwuNOgHP3T9YYz+pWLjUbdBhM8uXdzueIZkJN/Ig6YIGkg==", + "files": [ + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.0.0-rc3-build2880.nupkg", + "xunit.assert.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "sha512": "hsX/BOW0xd29ZDX0nLzDgo2iCDTS06VhDcv9ZRkQzZpeAkOvIaFgkHX/5neGrtCiItnEfRiUWP476rlzYVdKcA==", + "files": [ + "lib/dnx451/xunit.execution.AspNet.dll", + "lib/dnx451/xunit.execution.AspNet.xml", + "lib/dnxcore50/xunit.execution.AspNet.dll", + "lib/dnxcore50/xunit.execution.AspNet.xml", + "xunit.execution.AspNet.2.0.0-aspnet-beta5.nupkg", + "xunit.execution.AspNet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.execution.AspNet.nuspec" + ] + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "sha512": "h5qu03ot74RyjJt69AozLZPUCRklHqfA9IAQtu9wCQ1MmPXN0X+q7vu3ZH+moXfFlDRfsaDtuKr7DdaxhZaw4Q==", + "files": [ + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.0.0-rc3-build2880.nupkg", + "xunit.extensibility.core.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "sha512": "yGmIP+ED7HTFa/oCY/OjDMn3QOTtsquhFO+l7ZPJ0kKGWJ84p3rnD4E0Hvo/7t7pEMpUAkzXSeqOwobsf1VleA==", + "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-beta5.nupkg", + "xunit.runner.aspnet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.runner.aspnet.nuspec" + ] + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "sha512": "sydRLOseu0P8iod7Zezt0GimHoKuEQCRlwvTEqY/0WcDLdCCoca/+tvLrd8NumBA0hHUj1OsxOkvURW+hTA9zw==", + "files": [ + "lib/dnx451/xunit.runner.utility.AspNet.dll", + "lib/dnx451/xunit.runner.utility.AspNet.xml", + "lib/dnxcore50/xunit.runner.utility.AspNet.dll", + "lib/dnxcore50/xunit.runner.utility.AspNet.xml", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta5.nupkg", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.runner.utility.AspNet.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.Testing >= 1.0.0-beta5", + "Microsoft.Framework.CommonTestUtils >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Sources >= 1.0.0-beta5", + "Microsoft.Framework.PackageManager >= 1.0.0-beta5", + "xunit.runner.aspnet >= 2.0.0-aspnet-beta5" + ], + "DNX,Version=v4.5.1": [] + } +} \ No newline at end of file diff --git a/test/Microsoft.Framework.PackageManager.Tests/project.json b/test/Microsoft.Framework.PackageManager.Tests/project.json index ff9d653fc..831232253 100644 --- a/test/Microsoft.Framework.PackageManager.Tests/project.json +++ b/test/Microsoft.Framework.PackageManager.Tests/project.json @@ -1,9 +1,9 @@ { "dependencies": { - "Microsoft.Framework.CommonTestUtils": "1.0.0-*", - "Microsoft.Framework.PackageManager": "1.0.0-*", - "Microsoft.Framework.Runtime.Sources": "1.0.0-*", - "xunit.runner.aspnet": "2.0.0-aspnet-*" + "Microsoft.Framework.CommonTestUtils": "1.0.0-beta5", + "Microsoft.Framework.PackageManager": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Sources": "1.0.0-beta5", + "xunit.runner.aspnet": "2.0.0-aspnet-beta5" }, "frameworks": { "dnx451": { }, diff --git a/test/Microsoft.Framework.PackageManager.Tests/project.lock.json b/test/Microsoft.Framework.PackageManager.Tests/project.lock.json new file mode 100644 index 000000000..1e314d8b7 --- /dev/null +++ b/test/Microsoft.Framework.PackageManager.Tests/project.lock.json @@ -0,0 +1,3144 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.0.0-rc3-build2880": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880", + "xunit.extensibility.core": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.Diagnostics.Debug", + "System.Globalization", + "System.Linq", + "System.Reflection", + "System.Reflection.Extensions", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading.Tasks" + ], + "compile": { + "lib/dnx451/xunit.execution.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.AspNet.dll": {} + } + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "dependencies": { + "xunit.abstractions": "[2.0.0-rc3-build2880]" + }, + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.assert": "2.0.0-rc3-build2880", + "xunit.execution.AspNet": "2.0.0-aspnet-beta5", + "xunit.runner.utility.AspNet": "2.0.0-aspnet-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.ObjectModel", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.aspnet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.aspnet.dll": {} + } + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.Reflection", + "System.Runtime" + ], + "compile": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": {}, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Dynamic.Runtime": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Resources.ReaderWriter": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Threading.Timer": "4.0.0-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019", + "System.Xml.XmlSerializer": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.AppContext": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Loader": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Process": "4.0.0-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.Sockets": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + } + }, + "Microsoft.Net.Http.Client/1.0.0-beta3-10053": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-22516", + "System.Collections": "4.0.10-beta-22516", + "System.Collections.Concurrent": "4.0.0-beta-22231", + "System.Diagnostics.Contracts": "4.0.0-beta-22516", + "System.Diagnostics.Debug": "4.0.10-beta-22516", + "System.Diagnostics.Tools": "4.0.0-beta-22516", + "System.Globalization": "4.0.10-beta-22516", + "System.IO": "4.0.10-beta-22516", + "System.IO.FileSystem": "4.0.0-beta-22516", + "System.Linq": "4.0.0-beta-22516", + "System.Net.Http": "4.0.0-beta-22516", + "System.Net.Primitives": "4.0.10-beta-22516", + "System.Net.Security": "4.0.0-beta-22516", + "System.Net.Sockets": "4.0.0-beta-22516", + "System.Reflection": "4.0.10-beta-22516", + "System.Resources.ResourceManager": "4.0.0-beta-22516", + "System.Runtime": "4.0.20-beta-22516", + "System.Runtime.Extensions": "4.0.10-beta-22516", + "System.Runtime.Handles": "4.0.0-beta-22516", + "System.Runtime.InteropServices": "4.0.20-beta-22516", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-22516", + "System.Security.Principal": "4.0.0-beta-22516", + "System.Text.Encoding": "4.0.10-beta-22516", + "System.Text.Encoding.Extensions": "4.0.10-beta-22516", + "System.Threading": "4.0.0-beta-22416", + "System.Threading.Overlapped": "4.0.0-beta-22516", + "System.Threading.Tasks": "4.0.10-beta-22516", + "System.Threading.ThreadPool": "4.0.10-beta-22516" + }, + "compile": { + "lib/aspnetcore50/Microsoft.Net.Http.Client.dll": {} + }, + "runtime": { + "lib/aspnetcore50/Microsoft.Net.Http.Client.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "System.AppContext/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.0-beta-22605": { + "dependencies": { + "System.Runtime": "4.0.0-beta-22605" + }, + "compile": { + "lib/contract/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/aspnetcore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.ZipFile/4.0.0.0": { + "compile": { + "lib/contract/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/aspnetcore50/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Parallel/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Parallel.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.Parallel.dll": {} + } + }, + "System.Net.Http/4.0.0-beta-22605": { + "dependencies": { + "System.IO": "4.0.0-beta-22605", + "System.Net.Primitives": "4.0.0-beta-22605", + "System.Runtime": "4.0.0-beta-22605", + "System.Text.Encoding": "4.0.0-beta-22605", + "System.Threading.Tasks": "4.0.0-beta-22605" + }, + "compile": { + "lib/contract/System.Net.Http.dll": {} + }, + "runtime": { + "lib/aspnetcore50/System.Net.Http.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.Security/4.0.0-beta-22605": { + "dependencies": { + "System.IO": "4.0.0-beta-22605", + "System.Net.Primitives": "4.0.10-beta-22605", + "System.Runtime": "4.0.0-beta-22605", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-22605", + "System.Threading.Tasks": "4.0.0-beta-22605" + }, + "compile": { + "lib/contract/System.Net.Security.dll": {} + }, + "runtime": { + "lib/aspnetcore50/System.Net.Security.dll": {} + } + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ReaderWriter.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ReaderWriter.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XmlDocument": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.0.0-rc3-build2880": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "xunit.abstractions": "2.0.0-rc3-build2880", + "xunit.extensibility.core": "2.0.0-rc3-build2880" + }, + "compile": { + "lib/dnxcore50/xunit.execution.AspNet.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.execution.AspNet.dll": {} + } + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "dependencies": { + "xunit.abstractions": "[2.0.0-rc3-build2880]" + }, + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "System.Console": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019", + "xunit.assert": "2.0.0-rc3-build2880", + "xunit.execution.AspNet": "2.0.0-aspnet-beta5", + "xunit.runner.utility.AspNet": "2.0.0-aspnet-beta5" + }, + "compile": { + "lib/dnxcore50/xunit.runner.aspnet.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.aspnet.dll": {} + } + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "xunit.abstractions": "2.0.0-rc3-build2880" + }, + "compile": { + "lib/dnxcore50/xunit.runner.utility.AspNet.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.utility.AspNet.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "sha512": "3OKYZSMwSsgHA7uyx3U3BqAzdJLHKhR6Y95mhuOFRgg2Piw3vKEPmxmG/IQiD0qeCL0pbkcCQzpa60Yo1Jn0yg==", + "files": [ + "analyzers/portable50/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Analyzers.nuspec", + "ThirdPartyNotices.rtf", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "sha512": "B5aFOpPSQeEG5pafehkWJvJgTzI7dN9jLWqX6rk8u4RSQHiAldwRgniGo+jcKJGbdsxFUQISjZsvaNY+k9kXvg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "sha512": "iS92guFlOKM4GNXwuWkQDgMwZDWxEny9LsilhAGyc8gfdX1rmbOrQTLR6ti8CQA3Jk0s9UB7O1MZmI8lKvcTMw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "serviceable": true, + "sha512": "YbfHijwmKd3PsNSJ6iYRARwSeCPwkZKY9s3qb+jNFqom2QnD9PDq9q0yIZZBWZMJ3EAsRIZa92FYuKnNKPfX9g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "sha512": "hgETnks4ovIE4ySkFs6mQ+QN195kOIM+3IxgIqQFYtuF9tfNdw1/xkkwm9ip7vUifJlNC4O5d9o7CJ2ou46GyA==", + "files": [ + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll", + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.xml", + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll", + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.xml", + "lib/net45/Microsoft.Framework.NotNullAttribute.Sources.dll", + "lib/net45/Microsoft.Framework.NotNullAttribute.Sources.xml", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Microsoft.Net.Http.Client/1.0.0-beta3-10053": { + "sha512": "e3M1dAhwXqNiwlCYlwHZNiCcxsD07c7/B137lCcrBI1ek/CRTFMHIuGCOP94xGkBzxyyUFHWttl2cPkCF0rWsA==", + "files": [ + "lib/aspnet50/Microsoft.Net.Http.Client.dll", + "lib/aspnet50/Microsoft.Net.Http.Client.xml", + "lib/aspnetcore50/Microsoft.Net.Http.Client.dll", + "lib/aspnetcore50/Microsoft.Net.Http.Client.xml", + "lib/net45/Microsoft.Net.Http.Client.dll", + "lib/net45/Microsoft.Net.Http.Client.xml", + "Microsoft.Net.Http.Client.1.0.0-beta3-10053.nupkg", + "Microsoft.Net.Http.Client.1.0.0-beta3-10053.nupkg.sha512", + "Microsoft.Net.Http.Client.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "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/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/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+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "System.AppContext/4.0.0-beta-23019": { + "sha512": "dtYrJWnRhdNNbuTQf8ZhL9FhR+zef7ExSEHwqCF7e3YTPcL3XhUF7SD4Ij2rF3DJNMWT/r/8dgAs/9mNmOD66w==", + "files": [ + "lib/DNXCore50/System.AppContext.dll", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "ref/dotnet/System.AppContext.dll", + "ref/net46/System.AppContext.dll", + "System.AppContext.4.0.0-beta-23019.nupkg", + "System.AppContext.4.0.0-beta-23019.nupkg.sha512", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.36": { + "serviceable": true, + "sha512": "MOlivTIeAIQPPMUPWIIoMCvZczjFRLYUWSYwqi1szu8QPyeIbsaPeI+hpXe1DzTxNwnRnmfYaoToi6kXIfSPNg==", + "files": [ + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "License-Stable.rtf", + "System.Collections.Immutable.1.1.36.nupkg", + "System.Collections.Immutable.1.1.36.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "sha512": "ijnoxLU+SrSf1AItfZOwtnzyx7yEi+WJtKa3d2X93Xf5YHlRsL4RwMZ10M9gLE8E+Rpi3ZJM5wAXi6OFSprDtw==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/net46/System.Collections.NonGeneric.dll", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Diagnostics.Contracts/4.0.0-beta-22605": { + "sha512": "BjtaTiqGO9T8kCdA16d7KDfNdW8u28DarnN4cewwQeBEYcRQ8aFaV9O06B+8EtuelRgvtcvG+KVLQKpUUmoz2A==", + "files": [ + "lib/aspnetcore50/System.Diagnostics.Contracts.dll", + "lib/contract/System.Diagnostics.Contracts.dll", + "lib/net45/System.Diagnostics.Contracts.dll", + "lib/portable-wpa81+wp80+win80+net45+aspnetcore50/System.Diagnostics.Contracts.dll", + "License.rtf", + "System.Diagnostics.Contracts.4.0.0-beta-22605.nupkg", + "System.Diagnostics.Contracts.4.0.0-beta-22605.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "sha512": "1vuXv89pElI0JeDhnXokMyy9VkLpkDFa+oU3selb5uhHfzVswH1etFBumZ0VKKvTOAnm8AS/3ZDXAVlRjywq3A==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Process.dll", + "lib/net46/System.Diagnostics.Process.dll", + "ref/dotnet/System.Diagnostics.Process.dll", + "ref/net46/System.Diagnostics.Process.dll", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Process.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "sha512": "GB0ki4TLNwFKcT7ZesteTERlZmBytRitEbdD6O1zVwDaeqqY+FZb2/+CH2Q5U1rN7qY9YmM70PxtyPG1t31zkg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "sha512": "MZxMo9Skg9oZrJYwGpRfeOfrTfHxmTPWhj8XIXdIryfArzwG1FjZgzOrkWWcON0PdV9OywZYGly09nUCs/JdhA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.TraceSource.dll", + "lib/net46/System.Diagnostics.TraceSource.dll", + "ref/dotnet/System.Diagnostics.TraceSource.dll", + "ref/net46/System.Diagnostics.TraceSource.dll", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.TraceSource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "sha512": "yhXko8+R8fy0RERn6xQltYEhChBNyGEQgntwjHqNBc3x1M7wvg+Ye72Bh1QVQfnMIXZ0tG8XSrQs8hJe8KjYjg==", + "files": [ + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._", + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.0.0.0": { + "sha512": "hxrtsFCVHGGdEPS9ZaOxW/HBXt1hNb8rXJfDhEDUaQ6E/kefS1n5/OpmzT+4l8hWSVetrGPhyh7JPy/a8w8eGg==", + "files": [ + "lib/aspnetcore50/System.IO.Compression.ZipFile.dll", + "lib/contract/System.IO.Compression.ZipFile.dll", + "System.IO.Compression.ZipFile.4.0.0.0.nupkg", + "System.IO.Compression.ZipFile.4.0.0.0.nupkg.sha512", + "System.IO.Compression.ZipFile.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "sha512": "+xsD0H46/EB88848d9cHel2WVbUWlM/Y/k+tuY5lp2jXSwV8zMJ6F3TjMqeUZwWtUUavw+AN7D0a4ZoGVs/Rcw==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._", + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "sha512": "YjnsUzXsXx8BdqaXQ2U/hrz4CWdlAfcoYccqO3BSKCpPZPFEbKizEiHR9KJGcqf9gQ4lzRkhlM3xiMIjX27mUQ==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Linq.Parallel/4.0.0-beta-23019": { + "sha512": "JuBrjLe4kFgxaPS90+0bScw5k9JFfkfHzom4yYsMG+H6ySvHfqmr/MHrqEjfvnAZQkVotwVswOAUndN9AAOCrA==", + "files": [ + "lib/dotnet/System.Linq.Parallel.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.Parallel.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.Parallel.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.Parallel.dll", + "ref/win8/_._", + "System.Linq.Parallel.4.0.0-beta-23019.nupkg", + "System.Linq.Parallel.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.Parallel.nuspec" + ] + }, + "System.Net.Http/4.0.0-beta-22605": { + "sha512": "YwTreVePvIfaxBDZis/gh78VGq6Lahg7xkt0c8u+G0hA6lX8gKkogQ/aiNrjYGwa/hXCcbF9wbB57SABRLw5Kw==", + "files": [ + "lib/aspnetcore50/System.Net.Http.dll", + "lib/contract/System.Net.Http.dll", + "lib/net45/_._", + "lib/portable-wpa81+wp80+win80+net45+aspnetcore50/System.Net.Http.dll", + "License.rtf", + "System.Net.Http.4.0.0-beta-22605.nupkg", + "System.Net.Http.4.0.0-beta-22605.nupkg.sha512", + "System.Net.Http.nuspec" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._", + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.Security/4.0.0-beta-22605": { + "sha512": "NHHKaPIBTzIvFRt6XhqdTGx8gfyiDUoYW/IIcewa86RDDxEb5DStmLRtuLraYWv3mFA/0D+s4P7NSoImuBYoCg==", + "files": [ + "lib/aspnetcore50/System.Net.Security.dll", + "lib/contract/System.Net.Security.dll", + "lib/net45/System.Net.Security.dll", + "lib/portable-wpa81+wp80+win80+net45+aspnetcore50/System.Net.Security.dll", + "License.rtf", + "System.Net.Security.4.0.0-beta-22605.nupkg", + "System.Net.Security.4.0.0-beta-22605.nupkg.sha512", + "System.Net.Security.nuspec" + ] + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "sha512": "4NWuSdsFSf21iJkd+NQaE2OwtNaKGdXIbBbQmfE43evHl6fUII38wwNnooWtF0avCEyU6BOdUTiwoZAUZyQwcA==", + "files": [ + "lib/DNXCore50/System.Net.Sockets.dll", + "ref/dotnet/System.Net.Sockets.dll", + "System.Net.Sockets.4.0.10-beta-23019.nupkg", + "System.Net.Sockets.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Sockets.nuspec" + ] + }, + "System.ObjectModel/4.0.10-beta-23019": { + "sha512": "sJ+7kgWoTs4d8eNlhJB/p1Uq2iWHYVxO7ALNpB3sTwh3LORqwwPZe5FbSweccA3seM+zLSYa2AqBGp69JOXbcA==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/net46/_._", + "ref/dotnet/System.ObjectModel.dll", + "ref/net46/_._", + "System.ObjectModel.4.0.10-beta-23019.nupkg", + "System.ObjectModel.4.0.10-beta-23019.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "sha512": "FAp9TewUfCxaydPyY5Glv2/3KdxD5vpZ4qgx26OWV6xtytGinnXpHsxownQKKe7WkeqlRjy7s7cRgjTKZ50AQA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "sha512": "5OsJjj6G9WY8aV3EWfI03dJoqH0RvILtP2GJ16JQf90pV0kVmgGsFQSqh+lcnnexh4CEje7DDxF748o/8KamWA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/net45/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "sha512": "5/WcPvsdnw0d8rwwsCgQKoo9oXFQA1gMHtyNcYjelDjaaYC/dYoU7Eo0JdP+0PMgy9FnBOHVjRHOTcJ2HIjefA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "sha512": "9J0+T+ChJ9rlYTcrJiTOLfTJHuHuenol1eOJgiF8yJK1rDozU2Wnex5kXus5Z8/SerMSCUofUOx4c2WYX/tNow==", + "files": [ + "lib/DNXCore50/System.Resources.ReaderWriter.dll", + "lib/net46/System.Resources.ReaderWriter.dll", + "ref/dotnet/System.Resources.ReaderWriter.dll", + "ref/net46/System.Resources.ReaderWriter.dll", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ReaderWriter.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "sha512": "YuxWBHBbvN5ILjno2DBjgW2NXQscfJFvIfQEOGHwChM5Q9//EO0LZfErH7fTk1n0IVcorDu/HTnkqr2NuK/t5w==", + "files": [ + "lib/DNXCore50/System.Runtime.Loader.dll", + "ref/dotnet/System.Runtime.Loader.dll", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Loader.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.0.10-beta-23019": { + "sha512": "txtdLZ+b8B5/YIDthLTS4IUkt/pgl/RYIoLwp5ZEJ2dxurzkB99dOOIPFvkWoe3WJF7XWVSgmSZTO/VOvR6UlA==", + "files": [ + "lib/dotnet/System.Runtime.Serialization.Primitives.dll", + "lib/net46/_._", + "ref/dotnet/System.Runtime.Serialization.Primitives.dll", + "ref/net46/_._", + "System.Runtime.Serialization.Primitives.4.0.10-beta-23019.nupkg", + "System.Runtime.Serialization.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Serialization.Primitives.nuspec" + ] + }, + "System.Security.Claims/4.0.0-beta-23019": { + "sha512": "kKseHxGh5pWjM43MZWtub/ZyBWUV3RHNSJuUtTzapeQD2qND6pGGNekMXcxmEZOxrKwFEBAeTlcgmWo/2e6/SQ==", + "files": [ + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll", + "System.Security.Claims.4.0.0-beta-23019.nupkg", + "System.Security.Claims.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.0-beta-23019": { + "sha512": "2zkK0eJOfso/Jo+77NVXDoJRggzL0jM0ayeXz+vD8pK9pIRnhpWJVbaGmT7MPBWW9KbPwtbJyXejpUS2rBflUQ==", + "files": [ + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._", + "System.Security.Principal.4.0.0-beta-23019.nupkg", + "System.Security.Principal.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "sha512": "FYvKKTbncuJCMnc1TmccsJlGSjIQrUJPymt2R3o5uSV1plyGD9V3san/rpq2IO4kDbHjGrQjEtZlbehwUucB5Q==", + "files": [ + "lib/DNXCore50/System.Security.Principal.Windows.dll", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/dotnet/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.Windows.nuspec" + ] + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll", + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "sha512": "7gCVMRey2Nji6WDKleSigGBJuy4gMKXGeVqauROuFoTygHNtFYaUTeToGMy7Obsi+tzgnyEYfd+9uY3Ifc/SjA==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "sha512": "ECx+zZlXCfhkpZ0PUVrzp5UB6zRdzi94LsQhm7DtUS/uB17I3sYh0RsnMu/5jTULByQ1Ju4K/JTbM28InXO/PQ==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.dll", + "ref/net46/System.Threading.Thread.dll", + "System.Threading.Thread.4.0.0-beta-23019.nupkg", + "System.Threading.Thread.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "sha512": "nGA/Vt5zC8zGQ8r9mSdRTWzVMXh1YgJH9XH8x5OQZVLh0hn6CSC32RrmUrmKLpxKd64B9mbKoubeLUqXlf/m8g==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "ref/dotnet/System.Threading.Timer.dll", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/win81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.0-beta-23019.nupkg", + "System.Threading.Timer.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "sha512": "pyyzY5FFoZziGVDFyO5VLM094cX7jNN+01EsSJEFreje5uzSz6aKwIPgTe/l2CFiXYFoUNr0O6D3GEc8jPmbPg==", + "files": [ + "lib/dotnet/System.Xml.XDocument.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net46/_._", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "sha512": "b1SOLM9FhBCL4gW3OP5b/HV1JVb1hfsF4D4wBxyUIZMXcP3kbm4F+bYvOB0cSeJ1F8oVnCCGivSk1/aSEQ86XQ==", + "files": [ + "lib/dotnet/System.Xml.XmlDocument.dll", + "lib/net46/System.Xml.XmlDocument.dll", + "ref/dotnet/System.Xml.XmlDocument.dll", + "ref/net46/System.Xml.XmlDocument.dll", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg.sha512", + "System.Xml.XmlDocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "sha512": "BqXNr12cUj02qymL4Nhowcsfz840wLSMPfU0T8i0JGPPIx38txMwUA2pnrYWsYmDmyIgw7GGUhrjXz6WJpjgwg==", + "files": [ + "lib/DNXCore50/System.Xml.XmlSerializer.dll", + "lib/net46/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "ref/dotnet/System.Xml.XmlSerializer.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XmlSerializer.nuspec" + ] + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "sha512": "TkElLDkB9UwDl9Ka8lCRlANpI8OOIprWchSbVOkSRUcFTOFT42B7+t5RWYZeayQluAqAiYpT4tw7zQZdghWSYA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0-rc3-build2880.nupkg", + "xunit.abstractions.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.0.0-rc3-build2880": { + "sha512": "8ytSE6XlpeLIkuba3bWKmqX07vMVN3cCRZ+9cZmCYwuNOgHP3T9YYz+pWLjUbdBhM8uXdzueIZkJN/Ig6YIGkg==", + "files": [ + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.0.0-rc3-build2880.nupkg", + "xunit.assert.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "sha512": "hsX/BOW0xd29ZDX0nLzDgo2iCDTS06VhDcv9ZRkQzZpeAkOvIaFgkHX/5neGrtCiItnEfRiUWP476rlzYVdKcA==", + "files": [ + "lib/dnx451/xunit.execution.AspNet.dll", + "lib/dnx451/xunit.execution.AspNet.xml", + "lib/dnxcore50/xunit.execution.AspNet.dll", + "lib/dnxcore50/xunit.execution.AspNet.xml", + "xunit.execution.AspNet.2.0.0-aspnet-beta5.nupkg", + "xunit.execution.AspNet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.execution.AspNet.nuspec" + ] + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "sha512": "h5qu03ot74RyjJt69AozLZPUCRklHqfA9IAQtu9wCQ1MmPXN0X+q7vu3ZH+moXfFlDRfsaDtuKr7DdaxhZaw4Q==", + "files": [ + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.0.0-rc3-build2880.nupkg", + "xunit.extensibility.core.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "sha512": "yGmIP+ED7HTFa/oCY/OjDMn3QOTtsquhFO+l7ZPJ0kKGWJ84p3rnD4E0Hvo/7t7pEMpUAkzXSeqOwobsf1VleA==", + "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-beta5.nupkg", + "xunit.runner.aspnet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.runner.aspnet.nuspec" + ] + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "sha512": "sydRLOseu0P8iod7Zezt0GimHoKuEQCRlwvTEqY/0WcDLdCCoca/+tvLrd8NumBA0hHUj1OsxOkvURW+hTA9zw==", + "files": [ + "lib/dnx451/xunit.runner.utility.AspNet.dll", + "lib/dnx451/xunit.runner.utility.AspNet.xml", + "lib/dnxcore50/xunit.runner.utility.AspNet.dll", + "lib/dnxcore50/xunit.runner.utility.AspNet.xml", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta5.nupkg", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.runner.utility.AspNet.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.Framework.CommonTestUtils >= 1.0.0-beta5", + "Microsoft.Framework.PackageManager >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Sources >= 1.0.0-beta5", + "xunit.runner.aspnet >= 2.0.0-aspnet-beta5" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [] + } +} \ No newline at end of file diff --git a/test/Microsoft.Framework.Runtime.FunctionalTests/project.json b/test/Microsoft.Framework.Runtime.FunctionalTests/project.json index 017ccf589..263a740e0 100644 --- a/test/Microsoft.Framework.Runtime.FunctionalTests/project.json +++ b/test/Microsoft.Framework.Runtime.FunctionalTests/project.json @@ -1,10 +1,10 @@ { "dependencies": { - "Microsoft.Framework.CommonTestUtils": "1.0.0-*", - "Microsoft.Framework.Runtime": "1.0.0-*", - "Microsoft.Framework.Runtime.Abstractions": "1.0.0-*", - "Microsoft.AspNet.Testing": "1.0.0-*", - "xunit.runner.aspnet": "2.0.0-aspnet-*" + "Microsoft.Framework.CommonTestUtils": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Testing": "1.0.0-beta5", + "xunit.runner.aspnet": "2.0.0-aspnet-beta5" }, "frameworks": { "dnx451": { } diff --git a/test/Microsoft.Framework.Runtime.FunctionalTests/project.lock.json b/test/Microsoft.Framework.Runtime.FunctionalTests/project.lock.json new file mode 100644 index 000000000..b03cb0331 --- /dev/null +++ b/test/Microsoft.Framework.Runtime.FunctionalTests/project.lock.json @@ -0,0 +1,683 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.AspNet.Testing/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "xunit.runner.aspnet": "2.0.0-aspnet-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Reflection", + "System.Runtime", + "System.Threading.Tasks" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Testing.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Testing.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.0.0-rc3-build2880": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880", + "xunit.extensibility.core": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.Diagnostics.Debug", + "System.Globalization", + "System.Linq", + "System.Reflection", + "System.Reflection.Extensions", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading.Tasks" + ], + "compile": { + "lib/dnx451/xunit.execution.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.AspNet.dll": {} + } + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "dependencies": { + "xunit.abstractions": "[2.0.0-rc3-build2880]" + }, + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.assert": "2.0.0-rc3-build2880", + "xunit.execution.AspNet": "2.0.0-aspnet-beta5", + "xunit.runner.utility.AspNet": "2.0.0-aspnet-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.ObjectModel", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.aspnet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.aspnet.dll": {} + } + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.Reflection", + "System.Runtime" + ], + "compile": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNet.Testing/1.0.0-beta5": { + "serviceable": true, + "sha512": "y/78MxsUWo35YZhv7uwx5AYZYNGvr9ZOGmqwukKEvv4wS7gk55OL3xEqB69Wc6zXWGIy7mV8wSYYTdr5SXGYag==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Testing.dll", + "lib/dnx451/Microsoft.AspNet.Testing.xml", + "lib/dnxcore50/Microsoft.AspNet.Testing.dll", + "lib/dnxcore50/Microsoft.AspNet.Testing.xml", + "Microsoft.AspNet.Testing.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Testing.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Testing.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "sha512": "3OKYZSMwSsgHA7uyx3U3BqAzdJLHKhR6Y95mhuOFRgg2Piw3vKEPmxmG/IQiD0qeCL0pbkcCQzpa60Yo1Jn0yg==", + "files": [ + "analyzers/portable50/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Analyzers.nuspec", + "ThirdPartyNotices.rtf", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "sha512": "B5aFOpPSQeEG5pafehkWJvJgTzI7dN9jLWqX6rk8u4RSQHiAldwRgniGo+jcKJGbdsxFUQISjZsvaNY+k9kXvg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "sha512": "iS92guFlOKM4GNXwuWkQDgMwZDWxEny9LsilhAGyc8gfdX1rmbOrQTLR6ti8CQA3Jk0s9UB7O1MZmI8lKvcTMw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "serviceable": true, + "sha512": "YbfHijwmKd3PsNSJ6iYRARwSeCPwkZKY9s3qb+jNFqom2QnD9PDq9q0yIZZBWZMJ3EAsRIZa92FYuKnNKPfX9g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "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/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/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+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "System.Collections.Immutable/1.1.36": { + "serviceable": true, + "sha512": "MOlivTIeAIQPPMUPWIIoMCvZczjFRLYUWSYwqi1szu8QPyeIbsaPeI+hpXe1DzTxNwnRnmfYaoToi6kXIfSPNg==", + "files": [ + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "License-Stable.rtf", + "System.Collections.Immutable.1.1.36.nupkg", + "System.Collections.Immutable.1.1.36.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "sha512": "TkElLDkB9UwDl9Ka8lCRlANpI8OOIprWchSbVOkSRUcFTOFT42B7+t5RWYZeayQluAqAiYpT4tw7zQZdghWSYA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0-rc3-build2880.nupkg", + "xunit.abstractions.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.0.0-rc3-build2880": { + "sha512": "8ytSE6XlpeLIkuba3bWKmqX07vMVN3cCRZ+9cZmCYwuNOgHP3T9YYz+pWLjUbdBhM8uXdzueIZkJN/Ig6YIGkg==", + "files": [ + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.0.0-rc3-build2880.nupkg", + "xunit.assert.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "sha512": "hsX/BOW0xd29ZDX0nLzDgo2iCDTS06VhDcv9ZRkQzZpeAkOvIaFgkHX/5neGrtCiItnEfRiUWP476rlzYVdKcA==", + "files": [ + "lib/dnx451/xunit.execution.AspNet.dll", + "lib/dnx451/xunit.execution.AspNet.xml", + "lib/dnxcore50/xunit.execution.AspNet.dll", + "lib/dnxcore50/xunit.execution.AspNet.xml", + "xunit.execution.AspNet.2.0.0-aspnet-beta5.nupkg", + "xunit.execution.AspNet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.execution.AspNet.nuspec" + ] + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "sha512": "h5qu03ot74RyjJt69AozLZPUCRklHqfA9IAQtu9wCQ1MmPXN0X+q7vu3ZH+moXfFlDRfsaDtuKr7DdaxhZaw4Q==", + "files": [ + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.0.0-rc3-build2880.nupkg", + "xunit.extensibility.core.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "sha512": "yGmIP+ED7HTFa/oCY/OjDMn3QOTtsquhFO+l7ZPJ0kKGWJ84p3rnD4E0Hvo/7t7pEMpUAkzXSeqOwobsf1VleA==", + "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-beta5.nupkg", + "xunit.runner.aspnet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.runner.aspnet.nuspec" + ] + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "sha512": "sydRLOseu0P8iod7Zezt0GimHoKuEQCRlwvTEqY/0WcDLdCCoca/+tvLrd8NumBA0hHUj1OsxOkvURW+hTA9zw==", + "files": [ + "lib/dnx451/xunit.runner.utility.AspNet.dll", + "lib/dnx451/xunit.runner.utility.AspNet.xml", + "lib/dnxcore50/xunit.runner.utility.AspNet.dll", + "lib/dnxcore50/xunit.runner.utility.AspNet.xml", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta5.nupkg", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.runner.utility.AspNet.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.Framework.CommonTestUtils >= 1.0.0-beta5", + "Microsoft.Framework.Runtime >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions >= 1.0.0-beta5", + "Microsoft.AspNet.Testing >= 1.0.0-beta5", + "xunit.runner.aspnet >= 2.0.0-aspnet-beta5" + ], + "DNX,Version=v4.5.1": [] + } +} \ No newline at end of file diff --git a/test/Microsoft.Framework.Runtime.Roslyn.Tests/project.json b/test/Microsoft.Framework.Runtime.Roslyn.Tests/project.json index b50e62d7d..2e6f1110f 100644 --- a/test/Microsoft.Framework.Runtime.Roslyn.Tests/project.json +++ b/test/Microsoft.Framework.Runtime.Roslyn.Tests/project.json @@ -1,8 +1,8 @@ { "dependencies": { - "Microsoft.Framework.Runtime.Abstractions": "1.0.0-*", - "Microsoft.Framework.Runtime.Roslyn": "1.0.0-*", - "xunit.runner.aspnet": "2.0.0-aspnet-*" + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Roslyn": "1.0.0-beta5", + "xunit.runner.aspnet": "2.0.0-aspnet-beta5" }, "frameworks": { "dnx451": { }, diff --git a/test/Microsoft.Framework.Runtime.Roslyn.Tests/project.lock.json b/test/Microsoft.Framework.Runtime.Roslyn.Tests/project.lock.json new file mode 100644 index 000000000..a0e9b49ec --- /dev/null +++ b/test/Microsoft.Framework.Runtime.Roslyn.Tests/project.lock.json @@ -0,0 +1,2893 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.0.0-rc3-build2880": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880", + "xunit.extensibility.core": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.Diagnostics.Debug", + "System.Globalization", + "System.Linq", + "System.Reflection", + "System.Reflection.Extensions", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading.Tasks" + ], + "compile": { + "lib/dnx451/xunit.execution.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.AspNet.dll": {} + } + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "dependencies": { + "xunit.abstractions": "[2.0.0-rc3-build2880]" + }, + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.assert": "2.0.0-rc3-build2880", + "xunit.execution.AspNet": "2.0.0-aspnet-beta5", + "xunit.runner.utility.AspNet": "2.0.0-aspnet-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.ObjectModel", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.aspnet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.aspnet.dll": {} + } + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.Reflection", + "System.Runtime" + ], + "compile": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": {}, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Dynamic.Runtime": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Resources.ReaderWriter": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Threading.Timer": "4.0.0-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019", + "System.Xml.XmlSerializer": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.AppContext": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Loader": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Process": "4.0.0-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.Sockets": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "System.AppContext/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ReaderWriter.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ReaderWriter.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XmlDocument": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.0.0-rc3-build2880": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "xunit.abstractions": "2.0.0-rc3-build2880", + "xunit.extensibility.core": "2.0.0-rc3-build2880" + }, + "compile": { + "lib/dnxcore50/xunit.execution.AspNet.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.execution.AspNet.dll": {} + } + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "dependencies": { + "xunit.abstractions": "[2.0.0-rc3-build2880]" + }, + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "System.Console": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019", + "xunit.assert": "2.0.0-rc3-build2880", + "xunit.execution.AspNet": "2.0.0-aspnet-beta5", + "xunit.runner.utility.AspNet": "2.0.0-aspnet-beta5" + }, + "compile": { + "lib/dnxcore50/xunit.runner.aspnet.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.aspnet.dll": {} + } + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "xunit.abstractions": "2.0.0-rc3-build2880" + }, + "compile": { + "lib/dnxcore50/xunit.runner.utility.AspNet.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.utility.AspNet.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "sha512": "3OKYZSMwSsgHA7uyx3U3BqAzdJLHKhR6Y95mhuOFRgg2Piw3vKEPmxmG/IQiD0qeCL0pbkcCQzpa60Yo1Jn0yg==", + "files": [ + "analyzers/portable50/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Analyzers.nuspec", + "ThirdPartyNotices.rtf", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "sha512": "B5aFOpPSQeEG5pafehkWJvJgTzI7dN9jLWqX6rk8u4RSQHiAldwRgniGo+jcKJGbdsxFUQISjZsvaNY+k9kXvg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "sha512": "iS92guFlOKM4GNXwuWkQDgMwZDWxEny9LsilhAGyc8gfdX1rmbOrQTLR6ti8CQA3Jk0s9UB7O1MZmI8lKvcTMw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "serviceable": true, + "sha512": "YbfHijwmKd3PsNSJ6iYRARwSeCPwkZKY9s3qb+jNFqom2QnD9PDq9q0yIZZBWZMJ3EAsRIZa92FYuKnNKPfX9g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "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/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/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+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "System.AppContext/4.0.0-beta-23019": { + "sha512": "dtYrJWnRhdNNbuTQf8ZhL9FhR+zef7ExSEHwqCF7e3YTPcL3XhUF7SD4Ij2rF3DJNMWT/r/8dgAs/9mNmOD66w==", + "files": [ + "lib/DNXCore50/System.AppContext.dll", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "ref/dotnet/System.AppContext.dll", + "ref/net46/System.AppContext.dll", + "System.AppContext.4.0.0-beta-23019.nupkg", + "System.AppContext.4.0.0-beta-23019.nupkg.sha512", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.36": { + "serviceable": true, + "sha512": "MOlivTIeAIQPPMUPWIIoMCvZczjFRLYUWSYwqi1szu8QPyeIbsaPeI+hpXe1DzTxNwnRnmfYaoToi6kXIfSPNg==", + "files": [ + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "License-Stable.rtf", + "System.Collections.Immutable.1.1.36.nupkg", + "System.Collections.Immutable.1.1.36.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "sha512": "ijnoxLU+SrSf1AItfZOwtnzyx7yEi+WJtKa3d2X93Xf5YHlRsL4RwMZ10M9gLE8E+Rpi3ZJM5wAXi6OFSprDtw==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/net46/System.Collections.NonGeneric.dll", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "sha512": "1vuXv89pElI0JeDhnXokMyy9VkLpkDFa+oU3selb5uhHfzVswH1etFBumZ0VKKvTOAnm8AS/3ZDXAVlRjywq3A==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Process.dll", + "lib/net46/System.Diagnostics.Process.dll", + "ref/dotnet/System.Diagnostics.Process.dll", + "ref/net46/System.Diagnostics.Process.dll", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Process.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "sha512": "GB0ki4TLNwFKcT7ZesteTERlZmBytRitEbdD6O1zVwDaeqqY+FZb2/+CH2Q5U1rN7qY9YmM70PxtyPG1t31zkg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "sha512": "MZxMo9Skg9oZrJYwGpRfeOfrTfHxmTPWhj8XIXdIryfArzwG1FjZgzOrkWWcON0PdV9OywZYGly09nUCs/JdhA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.TraceSource.dll", + "lib/net46/System.Diagnostics.TraceSource.dll", + "ref/dotnet/System.Diagnostics.TraceSource.dll", + "ref/net46/System.Diagnostics.TraceSource.dll", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.TraceSource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "sha512": "yhXko8+R8fy0RERn6xQltYEhChBNyGEQgntwjHqNBc3x1M7wvg+Ye72Bh1QVQfnMIXZ0tG8XSrQs8hJe8KjYjg==", + "files": [ + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._", + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "sha512": "+xsD0H46/EB88848d9cHel2WVbUWlM/Y/k+tuY5lp2jXSwV8zMJ6F3TjMqeUZwWtUUavw+AN7D0a4ZoGVs/Rcw==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._", + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "sha512": "YjnsUzXsXx8BdqaXQ2U/hrz4CWdlAfcoYccqO3BSKCpPZPFEbKizEiHR9KJGcqf9gQ4lzRkhlM3xiMIjX27mUQ==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._", + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "sha512": "4NWuSdsFSf21iJkd+NQaE2OwtNaKGdXIbBbQmfE43evHl6fUII38wwNnooWtF0avCEyU6BOdUTiwoZAUZyQwcA==", + "files": [ + "lib/DNXCore50/System.Net.Sockets.dll", + "ref/dotnet/System.Net.Sockets.dll", + "System.Net.Sockets.4.0.10-beta-23019.nupkg", + "System.Net.Sockets.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Sockets.nuspec" + ] + }, + "System.ObjectModel/4.0.10-beta-23019": { + "sha512": "sJ+7kgWoTs4d8eNlhJB/p1Uq2iWHYVxO7ALNpB3sTwh3LORqwwPZe5FbSweccA3seM+zLSYa2AqBGp69JOXbcA==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/net46/_._", + "ref/dotnet/System.ObjectModel.dll", + "ref/net46/_._", + "System.ObjectModel.4.0.10-beta-23019.nupkg", + "System.ObjectModel.4.0.10-beta-23019.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "sha512": "FAp9TewUfCxaydPyY5Glv2/3KdxD5vpZ4qgx26OWV6xtytGinnXpHsxownQKKe7WkeqlRjy7s7cRgjTKZ50AQA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "sha512": "5OsJjj6G9WY8aV3EWfI03dJoqH0RvILtP2GJ16JQf90pV0kVmgGsFQSqh+lcnnexh4CEje7DDxF748o/8KamWA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/net45/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "sha512": "5/WcPvsdnw0d8rwwsCgQKoo9oXFQA1gMHtyNcYjelDjaaYC/dYoU7Eo0JdP+0PMgy9FnBOHVjRHOTcJ2HIjefA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "sha512": "9J0+T+ChJ9rlYTcrJiTOLfTJHuHuenol1eOJgiF8yJK1rDozU2Wnex5kXus5Z8/SerMSCUofUOx4c2WYX/tNow==", + "files": [ + "lib/DNXCore50/System.Resources.ReaderWriter.dll", + "lib/net46/System.Resources.ReaderWriter.dll", + "ref/dotnet/System.Resources.ReaderWriter.dll", + "ref/net46/System.Resources.ReaderWriter.dll", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ReaderWriter.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "sha512": "YuxWBHBbvN5ILjno2DBjgW2NXQscfJFvIfQEOGHwChM5Q9//EO0LZfErH7fTk1n0IVcorDu/HTnkqr2NuK/t5w==", + "files": [ + "lib/DNXCore50/System.Runtime.Loader.dll", + "ref/dotnet/System.Runtime.Loader.dll", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Loader.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Security.Claims/4.0.0-beta-23019": { + "sha512": "kKseHxGh5pWjM43MZWtub/ZyBWUV3RHNSJuUtTzapeQD2qND6pGGNekMXcxmEZOxrKwFEBAeTlcgmWo/2e6/SQ==", + "files": [ + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll", + "System.Security.Claims.4.0.0-beta-23019.nupkg", + "System.Security.Claims.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.0-beta-23019": { + "sha512": "2zkK0eJOfso/Jo+77NVXDoJRggzL0jM0ayeXz+vD8pK9pIRnhpWJVbaGmT7MPBWW9KbPwtbJyXejpUS2rBflUQ==", + "files": [ + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._", + "System.Security.Principal.4.0.0-beta-23019.nupkg", + "System.Security.Principal.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "sha512": "FYvKKTbncuJCMnc1TmccsJlGSjIQrUJPymt2R3o5uSV1plyGD9V3san/rpq2IO4kDbHjGrQjEtZlbehwUucB5Q==", + "files": [ + "lib/DNXCore50/System.Security.Principal.Windows.dll", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/dotnet/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.Windows.nuspec" + ] + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll", + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "sha512": "7gCVMRey2Nji6WDKleSigGBJuy4gMKXGeVqauROuFoTygHNtFYaUTeToGMy7Obsi+tzgnyEYfd+9uY3Ifc/SjA==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "sha512": "ECx+zZlXCfhkpZ0PUVrzp5UB6zRdzi94LsQhm7DtUS/uB17I3sYh0RsnMu/5jTULByQ1Ju4K/JTbM28InXO/PQ==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.dll", + "ref/net46/System.Threading.Thread.dll", + "System.Threading.Thread.4.0.0-beta-23019.nupkg", + "System.Threading.Thread.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "sha512": "nGA/Vt5zC8zGQ8r9mSdRTWzVMXh1YgJH9XH8x5OQZVLh0hn6CSC32RrmUrmKLpxKd64B9mbKoubeLUqXlf/m8g==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "ref/dotnet/System.Threading.Timer.dll", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/win81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.0-beta-23019.nupkg", + "System.Threading.Timer.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "sha512": "pyyzY5FFoZziGVDFyO5VLM094cX7jNN+01EsSJEFreje5uzSz6aKwIPgTe/l2CFiXYFoUNr0O6D3GEc8jPmbPg==", + "files": [ + "lib/dotnet/System.Xml.XDocument.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net46/_._", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "sha512": "b1SOLM9FhBCL4gW3OP5b/HV1JVb1hfsF4D4wBxyUIZMXcP3kbm4F+bYvOB0cSeJ1F8oVnCCGivSk1/aSEQ86XQ==", + "files": [ + "lib/dotnet/System.Xml.XmlDocument.dll", + "lib/net46/System.Xml.XmlDocument.dll", + "ref/dotnet/System.Xml.XmlDocument.dll", + "ref/net46/System.Xml.XmlDocument.dll", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg.sha512", + "System.Xml.XmlDocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "sha512": "BqXNr12cUj02qymL4Nhowcsfz840wLSMPfU0T8i0JGPPIx38txMwUA2pnrYWsYmDmyIgw7GGUhrjXz6WJpjgwg==", + "files": [ + "lib/DNXCore50/System.Xml.XmlSerializer.dll", + "lib/net46/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "ref/dotnet/System.Xml.XmlSerializer.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XmlSerializer.nuspec" + ] + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "sha512": "TkElLDkB9UwDl9Ka8lCRlANpI8OOIprWchSbVOkSRUcFTOFT42B7+t5RWYZeayQluAqAiYpT4tw7zQZdghWSYA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0-rc3-build2880.nupkg", + "xunit.abstractions.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.0.0-rc3-build2880": { + "sha512": "8ytSE6XlpeLIkuba3bWKmqX07vMVN3cCRZ+9cZmCYwuNOgHP3T9YYz+pWLjUbdBhM8uXdzueIZkJN/Ig6YIGkg==", + "files": [ + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.0.0-rc3-build2880.nupkg", + "xunit.assert.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "sha512": "hsX/BOW0xd29ZDX0nLzDgo2iCDTS06VhDcv9ZRkQzZpeAkOvIaFgkHX/5neGrtCiItnEfRiUWP476rlzYVdKcA==", + "files": [ + "lib/dnx451/xunit.execution.AspNet.dll", + "lib/dnx451/xunit.execution.AspNet.xml", + "lib/dnxcore50/xunit.execution.AspNet.dll", + "lib/dnxcore50/xunit.execution.AspNet.xml", + "xunit.execution.AspNet.2.0.0-aspnet-beta5.nupkg", + "xunit.execution.AspNet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.execution.AspNet.nuspec" + ] + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "sha512": "h5qu03ot74RyjJt69AozLZPUCRklHqfA9IAQtu9wCQ1MmPXN0X+q7vu3ZH+moXfFlDRfsaDtuKr7DdaxhZaw4Q==", + "files": [ + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.0.0-rc3-build2880.nupkg", + "xunit.extensibility.core.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "sha512": "yGmIP+ED7HTFa/oCY/OjDMn3QOTtsquhFO+l7ZPJ0kKGWJ84p3rnD4E0Hvo/7t7pEMpUAkzXSeqOwobsf1VleA==", + "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-beta5.nupkg", + "xunit.runner.aspnet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.runner.aspnet.nuspec" + ] + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "sha512": "sydRLOseu0P8iod7Zezt0GimHoKuEQCRlwvTEqY/0WcDLdCCoca/+tvLrd8NumBA0hHUj1OsxOkvURW+hTA9zw==", + "files": [ + "lib/dnx451/xunit.runner.utility.AspNet.dll", + "lib/dnx451/xunit.runner.utility.AspNet.xml", + "lib/dnxcore50/xunit.runner.utility.AspNet.dll", + "lib/dnxcore50/xunit.runner.utility.AspNet.xml", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta5.nupkg", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.runner.utility.AspNet.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.Framework.Runtime.Abstractions >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Roslyn >= 1.0.0-beta5", + "xunit.runner.aspnet >= 2.0.0-aspnet-beta5" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [] + } +} \ No newline at end of file diff --git a/test/Microsoft.Framework.Runtime.Tests/project.json b/test/Microsoft.Framework.Runtime.Tests/project.json index 1168434b9..b142b7eef 100644 --- a/test/Microsoft.Framework.Runtime.Tests/project.json +++ b/test/Microsoft.Framework.Runtime.Tests/project.json @@ -1,9 +1,9 @@ { "dependencies": { - "Microsoft.Framework.Runtime": "1.0.0-*", - "Microsoft.Framework.Runtime.Abstractions": "1.0.0-*", - "Microsoft.AspNet.Testing": "1.0.0-*", - "xunit.runner.aspnet": "2.0.0-aspnet-*" + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Testing": "1.0.0-beta5", + "xunit.runner.aspnet": "2.0.0-aspnet-beta5" }, "frameworks": { "dnx451": { }, diff --git a/test/Microsoft.Framework.Runtime.Tests/project.lock.json b/test/Microsoft.Framework.Runtime.Tests/project.lock.json new file mode 100644 index 000000000..113f24c1c --- /dev/null +++ b/test/Microsoft.Framework.Runtime.Tests/project.lock.json @@ -0,0 +1,2946 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.AspNet.Testing/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "xunit.runner.aspnet": "2.0.0-aspnet-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Reflection", + "System.Runtime", + "System.Threading.Tasks" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Testing.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Testing.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.0.0-rc3-build2880": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880", + "xunit.extensibility.core": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.Diagnostics.Debug", + "System.Globalization", + "System.Linq", + "System.Reflection", + "System.Reflection.Extensions", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading.Tasks" + ], + "compile": { + "lib/dnx451/xunit.execution.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.AspNet.dll": {} + } + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "dependencies": { + "xunit.abstractions": "[2.0.0-rc3-build2880]" + }, + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.assert": "2.0.0-rc3-build2880", + "xunit.execution.AspNet": "2.0.0-aspnet-beta5", + "xunit.runner.utility.AspNet": "2.0.0-aspnet-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.ObjectModel", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.aspnet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.aspnet.dll": {} + } + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.Reflection", + "System.Runtime" + ], + "compile": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.AspNet.Testing/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Globalization": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "xunit.runner.aspnet": "2.0.0-aspnet-beta5" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Testing.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Testing.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": {}, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Dynamic.Runtime": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Resources.ReaderWriter": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Threading.Timer": "4.0.0-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019", + "System.Xml.XmlSerializer": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.AppContext": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Loader": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Process": "4.0.0-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.Sockets": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "System.AppContext/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ReaderWriter.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ReaderWriter.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XmlDocument": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.0.0-rc3-build2880": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "xunit.abstractions": "2.0.0-rc3-build2880", + "xunit.extensibility.core": "2.0.0-rc3-build2880" + }, + "compile": { + "lib/dnxcore50/xunit.execution.AspNet.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.execution.AspNet.dll": {} + } + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "dependencies": { + "xunit.abstractions": "[2.0.0-rc3-build2880]" + }, + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "System.Console": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019", + "xunit.assert": "2.0.0-rc3-build2880", + "xunit.execution.AspNet": "2.0.0-aspnet-beta5", + "xunit.runner.utility.AspNet": "2.0.0-aspnet-beta5" + }, + "compile": { + "lib/dnxcore50/xunit.runner.aspnet.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.aspnet.dll": {} + } + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "xunit.abstractions": "2.0.0-rc3-build2880" + }, + "compile": { + "lib/dnxcore50/xunit.runner.utility.AspNet.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.utility.AspNet.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNet.Testing/1.0.0-beta5": { + "serviceable": true, + "sha512": "y/78MxsUWo35YZhv7uwx5AYZYNGvr9ZOGmqwukKEvv4wS7gk55OL3xEqB69Wc6zXWGIy7mV8wSYYTdr5SXGYag==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Testing.dll", + "lib/dnx451/Microsoft.AspNet.Testing.xml", + "lib/dnxcore50/Microsoft.AspNet.Testing.dll", + "lib/dnxcore50/Microsoft.AspNet.Testing.xml", + "Microsoft.AspNet.Testing.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Testing.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Testing.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "sha512": "3OKYZSMwSsgHA7uyx3U3BqAzdJLHKhR6Y95mhuOFRgg2Piw3vKEPmxmG/IQiD0qeCL0pbkcCQzpa60Yo1Jn0yg==", + "files": [ + "analyzers/portable50/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Analyzers.nuspec", + "ThirdPartyNotices.rtf", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "sha512": "B5aFOpPSQeEG5pafehkWJvJgTzI7dN9jLWqX6rk8u4RSQHiAldwRgniGo+jcKJGbdsxFUQISjZsvaNY+k9kXvg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "sha512": "iS92guFlOKM4GNXwuWkQDgMwZDWxEny9LsilhAGyc8gfdX1rmbOrQTLR6ti8CQA3Jk0s9UB7O1MZmI8lKvcTMw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "serviceable": true, + "sha512": "YbfHijwmKd3PsNSJ6iYRARwSeCPwkZKY9s3qb+jNFqom2QnD9PDq9q0yIZZBWZMJ3EAsRIZa92FYuKnNKPfX9g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "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/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/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+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "System.AppContext/4.0.0-beta-23019": { + "sha512": "dtYrJWnRhdNNbuTQf8ZhL9FhR+zef7ExSEHwqCF7e3YTPcL3XhUF7SD4Ij2rF3DJNMWT/r/8dgAs/9mNmOD66w==", + "files": [ + "lib/DNXCore50/System.AppContext.dll", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "ref/dotnet/System.AppContext.dll", + "ref/net46/System.AppContext.dll", + "System.AppContext.4.0.0-beta-23019.nupkg", + "System.AppContext.4.0.0-beta-23019.nupkg.sha512", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.36": { + "serviceable": true, + "sha512": "MOlivTIeAIQPPMUPWIIoMCvZczjFRLYUWSYwqi1szu8QPyeIbsaPeI+hpXe1DzTxNwnRnmfYaoToi6kXIfSPNg==", + "files": [ + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "License-Stable.rtf", + "System.Collections.Immutable.1.1.36.nupkg", + "System.Collections.Immutable.1.1.36.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "sha512": "ijnoxLU+SrSf1AItfZOwtnzyx7yEi+WJtKa3d2X93Xf5YHlRsL4RwMZ10M9gLE8E+Rpi3ZJM5wAXi6OFSprDtw==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/net46/System.Collections.NonGeneric.dll", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "sha512": "1vuXv89pElI0JeDhnXokMyy9VkLpkDFa+oU3selb5uhHfzVswH1etFBumZ0VKKvTOAnm8AS/3ZDXAVlRjywq3A==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Process.dll", + "lib/net46/System.Diagnostics.Process.dll", + "ref/dotnet/System.Diagnostics.Process.dll", + "ref/net46/System.Diagnostics.Process.dll", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Process.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "sha512": "GB0ki4TLNwFKcT7ZesteTERlZmBytRitEbdD6O1zVwDaeqqY+FZb2/+CH2Q5U1rN7qY9YmM70PxtyPG1t31zkg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "sha512": "MZxMo9Skg9oZrJYwGpRfeOfrTfHxmTPWhj8XIXdIryfArzwG1FjZgzOrkWWcON0PdV9OywZYGly09nUCs/JdhA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.TraceSource.dll", + "lib/net46/System.Diagnostics.TraceSource.dll", + "ref/dotnet/System.Diagnostics.TraceSource.dll", + "ref/net46/System.Diagnostics.TraceSource.dll", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.TraceSource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "sha512": "yhXko8+R8fy0RERn6xQltYEhChBNyGEQgntwjHqNBc3x1M7wvg+Ye72Bh1QVQfnMIXZ0tG8XSrQs8hJe8KjYjg==", + "files": [ + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._", + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "sha512": "+xsD0H46/EB88848d9cHel2WVbUWlM/Y/k+tuY5lp2jXSwV8zMJ6F3TjMqeUZwWtUUavw+AN7D0a4ZoGVs/Rcw==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._", + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "sha512": "YjnsUzXsXx8BdqaXQ2U/hrz4CWdlAfcoYccqO3BSKCpPZPFEbKizEiHR9KJGcqf9gQ4lzRkhlM3xiMIjX27mUQ==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._", + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "sha512": "4NWuSdsFSf21iJkd+NQaE2OwtNaKGdXIbBbQmfE43evHl6fUII38wwNnooWtF0avCEyU6BOdUTiwoZAUZyQwcA==", + "files": [ + "lib/DNXCore50/System.Net.Sockets.dll", + "ref/dotnet/System.Net.Sockets.dll", + "System.Net.Sockets.4.0.10-beta-23019.nupkg", + "System.Net.Sockets.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Sockets.nuspec" + ] + }, + "System.ObjectModel/4.0.10-beta-23019": { + "sha512": "sJ+7kgWoTs4d8eNlhJB/p1Uq2iWHYVxO7ALNpB3sTwh3LORqwwPZe5FbSweccA3seM+zLSYa2AqBGp69JOXbcA==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/net46/_._", + "ref/dotnet/System.ObjectModel.dll", + "ref/net46/_._", + "System.ObjectModel.4.0.10-beta-23019.nupkg", + "System.ObjectModel.4.0.10-beta-23019.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "sha512": "FAp9TewUfCxaydPyY5Glv2/3KdxD5vpZ4qgx26OWV6xtytGinnXpHsxownQKKe7WkeqlRjy7s7cRgjTKZ50AQA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "sha512": "5OsJjj6G9WY8aV3EWfI03dJoqH0RvILtP2GJ16JQf90pV0kVmgGsFQSqh+lcnnexh4CEje7DDxF748o/8KamWA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/net45/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "sha512": "5/WcPvsdnw0d8rwwsCgQKoo9oXFQA1gMHtyNcYjelDjaaYC/dYoU7Eo0JdP+0PMgy9FnBOHVjRHOTcJ2HIjefA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "sha512": "9J0+T+ChJ9rlYTcrJiTOLfTJHuHuenol1eOJgiF8yJK1rDozU2Wnex5kXus5Z8/SerMSCUofUOx4c2WYX/tNow==", + "files": [ + "lib/DNXCore50/System.Resources.ReaderWriter.dll", + "lib/net46/System.Resources.ReaderWriter.dll", + "ref/dotnet/System.Resources.ReaderWriter.dll", + "ref/net46/System.Resources.ReaderWriter.dll", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ReaderWriter.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "sha512": "YuxWBHBbvN5ILjno2DBjgW2NXQscfJFvIfQEOGHwChM5Q9//EO0LZfErH7fTk1n0IVcorDu/HTnkqr2NuK/t5w==", + "files": [ + "lib/DNXCore50/System.Runtime.Loader.dll", + "ref/dotnet/System.Runtime.Loader.dll", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Loader.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Security.Claims/4.0.0-beta-23019": { + "sha512": "kKseHxGh5pWjM43MZWtub/ZyBWUV3RHNSJuUtTzapeQD2qND6pGGNekMXcxmEZOxrKwFEBAeTlcgmWo/2e6/SQ==", + "files": [ + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll", + "System.Security.Claims.4.0.0-beta-23019.nupkg", + "System.Security.Claims.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.0-beta-23019": { + "sha512": "2zkK0eJOfso/Jo+77NVXDoJRggzL0jM0ayeXz+vD8pK9pIRnhpWJVbaGmT7MPBWW9KbPwtbJyXejpUS2rBflUQ==", + "files": [ + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._", + "System.Security.Principal.4.0.0-beta-23019.nupkg", + "System.Security.Principal.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "sha512": "FYvKKTbncuJCMnc1TmccsJlGSjIQrUJPymt2R3o5uSV1plyGD9V3san/rpq2IO4kDbHjGrQjEtZlbehwUucB5Q==", + "files": [ + "lib/DNXCore50/System.Security.Principal.Windows.dll", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/dotnet/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.Windows.nuspec" + ] + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll", + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "sha512": "7gCVMRey2Nji6WDKleSigGBJuy4gMKXGeVqauROuFoTygHNtFYaUTeToGMy7Obsi+tzgnyEYfd+9uY3Ifc/SjA==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "sha512": "ECx+zZlXCfhkpZ0PUVrzp5UB6zRdzi94LsQhm7DtUS/uB17I3sYh0RsnMu/5jTULByQ1Ju4K/JTbM28InXO/PQ==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.dll", + "ref/net46/System.Threading.Thread.dll", + "System.Threading.Thread.4.0.0-beta-23019.nupkg", + "System.Threading.Thread.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "sha512": "nGA/Vt5zC8zGQ8r9mSdRTWzVMXh1YgJH9XH8x5OQZVLh0hn6CSC32RrmUrmKLpxKd64B9mbKoubeLUqXlf/m8g==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "ref/dotnet/System.Threading.Timer.dll", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/win81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.0-beta-23019.nupkg", + "System.Threading.Timer.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "sha512": "pyyzY5FFoZziGVDFyO5VLM094cX7jNN+01EsSJEFreje5uzSz6aKwIPgTe/l2CFiXYFoUNr0O6D3GEc8jPmbPg==", + "files": [ + "lib/dotnet/System.Xml.XDocument.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net46/_._", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "sha512": "b1SOLM9FhBCL4gW3OP5b/HV1JVb1hfsF4D4wBxyUIZMXcP3kbm4F+bYvOB0cSeJ1F8oVnCCGivSk1/aSEQ86XQ==", + "files": [ + "lib/dotnet/System.Xml.XmlDocument.dll", + "lib/net46/System.Xml.XmlDocument.dll", + "ref/dotnet/System.Xml.XmlDocument.dll", + "ref/net46/System.Xml.XmlDocument.dll", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg.sha512", + "System.Xml.XmlDocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "sha512": "BqXNr12cUj02qymL4Nhowcsfz840wLSMPfU0T8i0JGPPIx38txMwUA2pnrYWsYmDmyIgw7GGUhrjXz6WJpjgwg==", + "files": [ + "lib/DNXCore50/System.Xml.XmlSerializer.dll", + "lib/net46/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "ref/dotnet/System.Xml.XmlSerializer.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XmlSerializer.nuspec" + ] + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "sha512": "TkElLDkB9UwDl9Ka8lCRlANpI8OOIprWchSbVOkSRUcFTOFT42B7+t5RWYZeayQluAqAiYpT4tw7zQZdghWSYA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0-rc3-build2880.nupkg", + "xunit.abstractions.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.0.0-rc3-build2880": { + "sha512": "8ytSE6XlpeLIkuba3bWKmqX07vMVN3cCRZ+9cZmCYwuNOgHP3T9YYz+pWLjUbdBhM8uXdzueIZkJN/Ig6YIGkg==", + "files": [ + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.0.0-rc3-build2880.nupkg", + "xunit.assert.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "sha512": "hsX/BOW0xd29ZDX0nLzDgo2iCDTS06VhDcv9ZRkQzZpeAkOvIaFgkHX/5neGrtCiItnEfRiUWP476rlzYVdKcA==", + "files": [ + "lib/dnx451/xunit.execution.AspNet.dll", + "lib/dnx451/xunit.execution.AspNet.xml", + "lib/dnxcore50/xunit.execution.AspNet.dll", + "lib/dnxcore50/xunit.execution.AspNet.xml", + "xunit.execution.AspNet.2.0.0-aspnet-beta5.nupkg", + "xunit.execution.AspNet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.execution.AspNet.nuspec" + ] + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "sha512": "h5qu03ot74RyjJt69AozLZPUCRklHqfA9IAQtu9wCQ1MmPXN0X+q7vu3ZH+moXfFlDRfsaDtuKr7DdaxhZaw4Q==", + "files": [ + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.0.0-rc3-build2880.nupkg", + "xunit.extensibility.core.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "sha512": "yGmIP+ED7HTFa/oCY/OjDMn3QOTtsquhFO+l7ZPJ0kKGWJ84p3rnD4E0Hvo/7t7pEMpUAkzXSeqOwobsf1VleA==", + "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-beta5.nupkg", + "xunit.runner.aspnet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.runner.aspnet.nuspec" + ] + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "sha512": "sydRLOseu0P8iod7Zezt0GimHoKuEQCRlwvTEqY/0WcDLdCCoca/+tvLrd8NumBA0hHUj1OsxOkvURW+hTA9zw==", + "files": [ + "lib/dnx451/xunit.runner.utility.AspNet.dll", + "lib/dnx451/xunit.runner.utility.AspNet.xml", + "lib/dnxcore50/xunit.runner.utility.AspNet.dll", + "lib/dnxcore50/xunit.runner.utility.AspNet.xml", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta5.nupkg", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.runner.utility.AspNet.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.Framework.Runtime >= 1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions >= 1.0.0-beta5", + "Microsoft.AspNet.Testing >= 1.0.0-beta5", + "xunit.runner.aspnet >= 2.0.0-aspnet-beta5" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [] + } +} \ No newline at end of file diff --git a/test/dnx.host.Tests/project.json b/test/dnx.host.Tests/project.json index 1c3ec2e9b..25a4e44a5 100644 --- a/test/dnx.host.Tests/project.json +++ b/test/dnx.host.Tests/project.json @@ -1,7 +1,7 @@ { "dependencies": { - "dnx.host": "1.0.0-*", - "xunit.runner.aspnet": "2.0.0-aspnet-*" + "dnx.host": "1.0.0-beta5", + "xunit.runner.aspnet": "2.0.0-aspnet-beta5" }, "frameworks": { diff --git a/test/dnx.host.Tests/project.lock.json b/test/dnx.host.Tests/project.lock.json new file mode 100644 index 000000000..03bd74b48 --- /dev/null +++ b/test/dnx.host.Tests/project.lock.json @@ -0,0 +1,2892 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.0.0-rc3-build2880": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880", + "xunit.extensibility.core": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.Diagnostics.Debug", + "System.Globalization", + "System.Linq", + "System.Reflection", + "System.Reflection.Extensions", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading.Tasks" + ], + "compile": { + "lib/dnx451/xunit.execution.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.AspNet.dll": {} + } + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "dependencies": { + "xunit.abstractions": "[2.0.0-rc3-build2880]" + }, + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.assert": "2.0.0-rc3-build2880", + "xunit.execution.AspNet": "2.0.0-aspnet-beta5", + "xunit.runner.utility.AspNet": "2.0.0-aspnet-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.ObjectModel", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.aspnet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.aspnet.dll": {} + } + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.Reflection", + "System.Runtime" + ], + "compile": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": {}, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150529-04]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150529-04]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Dynamic.Runtime": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Resources.ReaderWriter": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Threading.Timer": "4.0.0-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019", + "System.Xml.XmlSerializer": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.AppContext": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Loader": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Process": "4.0.0-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.Sockets": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "System.AppContext/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ReaderWriter.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ReaderWriter.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XmlDocument": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.0.0-rc3-build2880": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "xunit.abstractions": "2.0.0-rc3-build2880", + "xunit.extensibility.core": "2.0.0-rc3-build2880" + }, + "compile": { + "lib/dnxcore50/xunit.execution.AspNet.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.execution.AspNet.dll": {} + } + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "dependencies": { + "xunit.abstractions": "[2.0.0-rc3-build2880]" + }, + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "System.Console": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019", + "xunit.assert": "2.0.0-rc3-build2880", + "xunit.execution.AspNet": "2.0.0-aspnet-beta5", + "xunit.runner.utility.AspNet": "2.0.0-aspnet-beta5" + }, + "compile": { + "lib/dnxcore50/xunit.runner.aspnet.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.aspnet.dll": {} + } + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "xunit.abstractions": "2.0.0-rc3-build2880" + }, + "compile": { + "lib/dnxcore50/xunit.runner.utility.AspNet.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.utility.AspNet.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150529-04": { + "sha512": "3OKYZSMwSsgHA7uyx3U3BqAzdJLHKhR6Y95mhuOFRgg2Piw3vKEPmxmG/IQiD0qeCL0pbkcCQzpa60Yo1Jn0yg==", + "files": [ + "analyzers/portable50/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/portable50/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Analyzers.nuspec", + "ThirdPartyNotices.rtf", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150529-04": { + "sha512": "B5aFOpPSQeEG5pafehkWJvJgTzI7dN9jLWqX6rk8u4RSQHiAldwRgniGo+jcKJGbdsxFUQISjZsvaNY+k9kXvg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150529-04": { + "sha512": "iS92guFlOKM4GNXwuWkQDgMwZDWxEny9LsilhAGyc8gfdX1rmbOrQTLR6ti8CQA3Jk0s9UB7O1MZmI8lKvcTMw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150529-04.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "serviceable": true, + "sha512": "YbfHijwmKd3PsNSJ6iYRARwSeCPwkZKY9s3qb+jNFqom2QnD9PDq9q0yIZZBWZMJ3EAsRIZa92FYuKnNKPfX9g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "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/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/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+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "System.AppContext/4.0.0-beta-23019": { + "sha512": "dtYrJWnRhdNNbuTQf8ZhL9FhR+zef7ExSEHwqCF7e3YTPcL3XhUF7SD4Ij2rF3DJNMWT/r/8dgAs/9mNmOD66w==", + "files": [ + "lib/DNXCore50/System.AppContext.dll", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "ref/dotnet/System.AppContext.dll", + "ref/net46/System.AppContext.dll", + "System.AppContext.4.0.0-beta-23019.nupkg", + "System.AppContext.4.0.0-beta-23019.nupkg.sha512", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.36": { + "serviceable": true, + "sha512": "MOlivTIeAIQPPMUPWIIoMCvZczjFRLYUWSYwqi1szu8QPyeIbsaPeI+hpXe1DzTxNwnRnmfYaoToi6kXIfSPNg==", + "files": [ + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "License-Stable.rtf", + "System.Collections.Immutable.1.1.36.nupkg", + "System.Collections.Immutable.1.1.36.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "sha512": "ijnoxLU+SrSf1AItfZOwtnzyx7yEi+WJtKa3d2X93Xf5YHlRsL4RwMZ10M9gLE8E+Rpi3ZJM5wAXi6OFSprDtw==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/net46/System.Collections.NonGeneric.dll", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "sha512": "1vuXv89pElI0JeDhnXokMyy9VkLpkDFa+oU3selb5uhHfzVswH1etFBumZ0VKKvTOAnm8AS/3ZDXAVlRjywq3A==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Process.dll", + "lib/net46/System.Diagnostics.Process.dll", + "ref/dotnet/System.Diagnostics.Process.dll", + "ref/net46/System.Diagnostics.Process.dll", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Process.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "sha512": "GB0ki4TLNwFKcT7ZesteTERlZmBytRitEbdD6O1zVwDaeqqY+FZb2/+CH2Q5U1rN7qY9YmM70PxtyPG1t31zkg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "sha512": "MZxMo9Skg9oZrJYwGpRfeOfrTfHxmTPWhj8XIXdIryfArzwG1FjZgzOrkWWcON0PdV9OywZYGly09nUCs/JdhA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.TraceSource.dll", + "lib/net46/System.Diagnostics.TraceSource.dll", + "ref/dotnet/System.Diagnostics.TraceSource.dll", + "ref/net46/System.Diagnostics.TraceSource.dll", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.TraceSource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "sha512": "yhXko8+R8fy0RERn6xQltYEhChBNyGEQgntwjHqNBc3x1M7wvg+Ye72Bh1QVQfnMIXZ0tG8XSrQs8hJe8KjYjg==", + "files": [ + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._", + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "sha512": "+xsD0H46/EB88848d9cHel2WVbUWlM/Y/k+tuY5lp2jXSwV8zMJ6F3TjMqeUZwWtUUavw+AN7D0a4ZoGVs/Rcw==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._", + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "sha512": "YjnsUzXsXx8BdqaXQ2U/hrz4CWdlAfcoYccqO3BSKCpPZPFEbKizEiHR9KJGcqf9gQ4lzRkhlM3xiMIjX27mUQ==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._", + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "sha512": "4NWuSdsFSf21iJkd+NQaE2OwtNaKGdXIbBbQmfE43evHl6fUII38wwNnooWtF0avCEyU6BOdUTiwoZAUZyQwcA==", + "files": [ + "lib/DNXCore50/System.Net.Sockets.dll", + "ref/dotnet/System.Net.Sockets.dll", + "System.Net.Sockets.4.0.10-beta-23019.nupkg", + "System.Net.Sockets.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Sockets.nuspec" + ] + }, + "System.ObjectModel/4.0.10-beta-23019": { + "sha512": "sJ+7kgWoTs4d8eNlhJB/p1Uq2iWHYVxO7ALNpB3sTwh3LORqwwPZe5FbSweccA3seM+zLSYa2AqBGp69JOXbcA==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/net46/_._", + "ref/dotnet/System.ObjectModel.dll", + "ref/net46/_._", + "System.ObjectModel.4.0.10-beta-23019.nupkg", + "System.ObjectModel.4.0.10-beta-23019.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "sha512": "FAp9TewUfCxaydPyY5Glv2/3KdxD5vpZ4qgx26OWV6xtytGinnXpHsxownQKKe7WkeqlRjy7s7cRgjTKZ50AQA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "sha512": "5OsJjj6G9WY8aV3EWfI03dJoqH0RvILtP2GJ16JQf90pV0kVmgGsFQSqh+lcnnexh4CEje7DDxF748o/8KamWA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/net45/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "sha512": "5/WcPvsdnw0d8rwwsCgQKoo9oXFQA1gMHtyNcYjelDjaaYC/dYoU7Eo0JdP+0PMgy9FnBOHVjRHOTcJ2HIjefA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "sha512": "9J0+T+ChJ9rlYTcrJiTOLfTJHuHuenol1eOJgiF8yJK1rDozU2Wnex5kXus5Z8/SerMSCUofUOx4c2WYX/tNow==", + "files": [ + "lib/DNXCore50/System.Resources.ReaderWriter.dll", + "lib/net46/System.Resources.ReaderWriter.dll", + "ref/dotnet/System.Resources.ReaderWriter.dll", + "ref/net46/System.Resources.ReaderWriter.dll", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ReaderWriter.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "sha512": "YuxWBHBbvN5ILjno2DBjgW2NXQscfJFvIfQEOGHwChM5Q9//EO0LZfErH7fTk1n0IVcorDu/HTnkqr2NuK/t5w==", + "files": [ + "lib/DNXCore50/System.Runtime.Loader.dll", + "ref/dotnet/System.Runtime.Loader.dll", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Loader.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Security.Claims/4.0.0-beta-23019": { + "sha512": "kKseHxGh5pWjM43MZWtub/ZyBWUV3RHNSJuUtTzapeQD2qND6pGGNekMXcxmEZOxrKwFEBAeTlcgmWo/2e6/SQ==", + "files": [ + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll", + "System.Security.Claims.4.0.0-beta-23019.nupkg", + "System.Security.Claims.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.0-beta-23019": { + "sha512": "2zkK0eJOfso/Jo+77NVXDoJRggzL0jM0ayeXz+vD8pK9pIRnhpWJVbaGmT7MPBWW9KbPwtbJyXejpUS2rBflUQ==", + "files": [ + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._", + "System.Security.Principal.4.0.0-beta-23019.nupkg", + "System.Security.Principal.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "sha512": "FYvKKTbncuJCMnc1TmccsJlGSjIQrUJPymt2R3o5uSV1plyGD9V3san/rpq2IO4kDbHjGrQjEtZlbehwUucB5Q==", + "files": [ + "lib/DNXCore50/System.Security.Principal.Windows.dll", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/dotnet/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.Windows.nuspec" + ] + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll", + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "sha512": "7gCVMRey2Nji6WDKleSigGBJuy4gMKXGeVqauROuFoTygHNtFYaUTeToGMy7Obsi+tzgnyEYfd+9uY3Ifc/SjA==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "sha512": "ECx+zZlXCfhkpZ0PUVrzp5UB6zRdzi94LsQhm7DtUS/uB17I3sYh0RsnMu/5jTULByQ1Ju4K/JTbM28InXO/PQ==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.dll", + "ref/net46/System.Threading.Thread.dll", + "System.Threading.Thread.4.0.0-beta-23019.nupkg", + "System.Threading.Thread.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "sha512": "nGA/Vt5zC8zGQ8r9mSdRTWzVMXh1YgJH9XH8x5OQZVLh0hn6CSC32RrmUrmKLpxKd64B9mbKoubeLUqXlf/m8g==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "ref/dotnet/System.Threading.Timer.dll", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/win81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.0-beta-23019.nupkg", + "System.Threading.Timer.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "sha512": "pyyzY5FFoZziGVDFyO5VLM094cX7jNN+01EsSJEFreje5uzSz6aKwIPgTe/l2CFiXYFoUNr0O6D3GEc8jPmbPg==", + "files": [ + "lib/dotnet/System.Xml.XDocument.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net46/_._", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "sha512": "b1SOLM9FhBCL4gW3OP5b/HV1JVb1hfsF4D4wBxyUIZMXcP3kbm4F+bYvOB0cSeJ1F8oVnCCGivSk1/aSEQ86XQ==", + "files": [ + "lib/dotnet/System.Xml.XmlDocument.dll", + "lib/net46/System.Xml.XmlDocument.dll", + "ref/dotnet/System.Xml.XmlDocument.dll", + "ref/net46/System.Xml.XmlDocument.dll", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg.sha512", + "System.Xml.XmlDocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "sha512": "BqXNr12cUj02qymL4Nhowcsfz840wLSMPfU0T8i0JGPPIx38txMwUA2pnrYWsYmDmyIgw7GGUhrjXz6WJpjgwg==", + "files": [ + "lib/DNXCore50/System.Xml.XmlSerializer.dll", + "lib/net46/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "ref/dotnet/System.Xml.XmlSerializer.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XmlSerializer.nuspec" + ] + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "sha512": "TkElLDkB9UwDl9Ka8lCRlANpI8OOIprWchSbVOkSRUcFTOFT42B7+t5RWYZeayQluAqAiYpT4tw7zQZdghWSYA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0-rc3-build2880.nupkg", + "xunit.abstractions.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.0.0-rc3-build2880": { + "sha512": "8ytSE6XlpeLIkuba3bWKmqX07vMVN3cCRZ+9cZmCYwuNOgHP3T9YYz+pWLjUbdBhM8uXdzueIZkJN/Ig6YIGkg==", + "files": [ + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.0.0-rc3-build2880.nupkg", + "xunit.assert.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "sha512": "hsX/BOW0xd29ZDX0nLzDgo2iCDTS06VhDcv9ZRkQzZpeAkOvIaFgkHX/5neGrtCiItnEfRiUWP476rlzYVdKcA==", + "files": [ + "lib/dnx451/xunit.execution.AspNet.dll", + "lib/dnx451/xunit.execution.AspNet.xml", + "lib/dnxcore50/xunit.execution.AspNet.dll", + "lib/dnxcore50/xunit.execution.AspNet.xml", + "xunit.execution.AspNet.2.0.0-aspnet-beta5.nupkg", + "xunit.execution.AspNet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.execution.AspNet.nuspec" + ] + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "sha512": "h5qu03ot74RyjJt69AozLZPUCRklHqfA9IAQtu9wCQ1MmPXN0X+q7vu3ZH+moXfFlDRfsaDtuKr7DdaxhZaw4Q==", + "files": [ + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.0.0-rc3-build2880.nupkg", + "xunit.extensibility.core.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "sha512": "yGmIP+ED7HTFa/oCY/OjDMn3QOTtsquhFO+l7ZPJ0kKGWJ84p3rnD4E0Hvo/7t7pEMpUAkzXSeqOwobsf1VleA==", + "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-beta5.nupkg", + "xunit.runner.aspnet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.runner.aspnet.nuspec" + ] + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "sha512": "sydRLOseu0P8iod7Zezt0GimHoKuEQCRlwvTEqY/0WcDLdCCoca/+tvLrd8NumBA0hHUj1OsxOkvURW+hTA9zw==", + "files": [ + "lib/dnx451/xunit.runner.utility.AspNet.dll", + "lib/dnx451/xunit.runner.utility.AspNet.xml", + "lib/dnxcore50/xunit.runner.utility.AspNet.dll", + "lib/dnxcore50/xunit.runner.utility.AspNet.xml", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta5.nupkg", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.runner.utility.AspNet.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "dnx.host >= 1.0.0-beta5", + "xunit.runner.aspnet >= 2.0.0-aspnet-beta5" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [] + } +} \ No newline at end of file