From 6c437d11bfb2013bdb4130211361df5585990198 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Tue, 28 Jul 2015 12:49:18 -0700 Subject: [PATCH] Updating json files to pin versions and build.cmd to pin KoreBuild and DNX --- build.cmd | 12 +- .../project.json | 8 +- .../project.lock.json | 45 + .../project.json | 41 +- .../project.lock.json | 1037 +++++ .../project.json | 12 +- .../project.lock.json | 2491 ++++++++++ test/AutobahnTestClient/Project.json | 12 +- test/AutobahnTestClient/project.lock.json | 45 + test/AutobahnTestServer/Project.json | 16 +- test/AutobahnTestServer/project.lock.json | 4054 +++++++++++++++++ .../project.json | 14 +- .../project.lock.json | 1247 +++++ .../project.json | 13 +- .../project.lock.json | 536 +++ test/TestClient/project.json | 8 +- test/TestClient/project.lock.json | 46 + 17 files changed, 9576 insertions(+), 61 deletions(-) create mode 100644 src/Microsoft.AspNet.WebSockets.Client/project.lock.json create mode 100644 src/Microsoft.AspNet.WebSockets.Protocol/project.lock.json create mode 100644 src/Microsoft.AspNet.WebSockets.Server/project.lock.json create mode 100644 test/AutobahnTestClient/project.lock.json create mode 100644 test/AutobahnTestServer/project.lock.json create mode 100644 test/Microsoft.AspNet.WebSockets.Client.Test/project.lock.json create mode 100644 test/Microsoft.AspNet.WebSockets.Protocol.Test/project.lock.json create mode 100644 test/TestClient/project.lock.json diff --git a/build.cmd b/build.cmd index 41025afb..5a69c96e 100644 --- a/build.cmd +++ b/build.cmd @@ -16,11 +16,19 @@ 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 "%SKIP_DNX_INSTALL%"=="1" goto run -CALL packages\KoreBuild\build\dnvm upgrade -runtime CLR -arch x86 +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 install default -runtime CoreCLR -arch x86 :run diff --git a/src/Microsoft.AspNet.WebSockets.Client/project.json b/src/Microsoft.AspNet.WebSockets.Client/project.json index 5e6c3605..fd1c26b6 100644 --- a/src/Microsoft.AspNet.WebSockets.Client/project.json +++ b/src/Microsoft.AspNet.WebSockets.Client/project.json @@ -1,14 +1,14 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta6", "description": "Client for communicating over web sockets.", "repository": { "type": "git", "url": "git://github.com/aspnet/websockets" }, "dependencies": { - "Microsoft.AspNet.WebSockets.Protocol": "1.0.0-*" + "Microsoft.AspNet.WebSockets.Protocol": "1.0.0-beta6" }, "frameworks": { - "net45": { } + "net45": {} } -} +} \ No newline at end of file diff --git a/src/Microsoft.AspNet.WebSockets.Client/project.lock.json b/src/Microsoft.AspNet.WebSockets.Client/project.lock.json new file mode 100644 index 00000000..a3597196 --- /dev/null +++ b/src/Microsoft.AspNet.WebSockets.Client/project.lock.json @@ -0,0 +1,45 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.5": { + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta6": { + "sha512": "85K5j4jXSZxErwaNUrMMaq2O5sjPsW68fnCdSK8h88MZh04Bj0QAsk4yuRZG0nZlgn7He+k1H5XIWkMSLDXFKQ==", + "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-beta6.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "shared/NotNullAttribute.cs" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.WebSockets.Protocol >= 1.0.0-beta6" + ], + ".NETFramework,Version=v4.5": [] + } +} \ No newline at end of file diff --git a/src/Microsoft.AspNet.WebSockets.Protocol/project.json b/src/Microsoft.AspNet.WebSockets.Protocol/project.json index 17d05ea9..f39e96dc 100644 --- a/src/Microsoft.AspNet.WebSockets.Protocol/project.json +++ b/src/Microsoft.AspNet.WebSockets.Protocol/project.json @@ -1,33 +1,36 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta6", "description": "Managed web socket protocol parser.", "repository": { "type": "git", "url": "git://github.com/aspnet/websockets" }, "dependencies": { - "Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-*" } + "Microsoft.Framework.NotNullAttribute.Sources": { + "type": "build", + "version": "1.0.0-beta6" + } }, "frameworks": { - "net45": { }, + "net45": {}, "dnxcore50": { "dependencies": { - "System.Diagnostics.Contracts": "4.0.0-beta-*", - "System.IO": "4.0.10-beta-*", - "System.Linq": "4.0.0-beta-*", - "System.Net.WebSockets": "4.0.0-beta-*", - "System.Runtime": "4.0.20-beta-*", - "System.Runtime.InteropServices": "4.0.20-beta-*", - "System.Runtime.Extensions": "4.0.10-beta-*", - "System.Security.Cryptography.Encryption": "4.0.0-beta-*", - "System.Security.Cryptography.Hashing": "4.0.0-beta-*", - "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-*", - "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-*", - "System.Text.Encoding.Extensions": "4.0.10-beta-*", - "System.Threading": "4.0.10-beta-*", - "System.Threading.Tasks": "4.0.10-beta-*", - "System.Threading.Timer": "4.0.0-beta-*" + "System.Diagnostics.Contracts": "4.0.0-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Net.WebSockets": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23109", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23109", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109", + "System.Threading.Timer": "4.0.0-beta-23109" } } } -} +} \ No newline at end of file diff --git a/src/Microsoft.AspNet.WebSockets.Protocol/project.lock.json b/src/Microsoft.AspNet.WebSockets.Protocol/project.lock.json new file mode 100644 index 00000000..2c94330e --- /dev/null +++ b/src/Microsoft.AspNet.WebSockets.Protocol/project.lock.json @@ -0,0 +1,1037 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.5": { + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta6": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "System.Collections/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + } + }, + "System.IO/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23109": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.WebSockets.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23109": { + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23109": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "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-23109": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23109", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23109" + }, + "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-23109": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta6": { + "sha512": "85K5j4jXSZxErwaNUrMMaq2O5sjPsW68fnCdSK8h88MZh04Bj0QAsk4yuRZG0nZlgn7He+k1H5XIWkMSLDXFKQ==", + "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-beta6.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "GsSRwzgrK2WJHUyd83AtKEX+Hv8ecmnwerJzinTXNqddsI48ClaeAyBgUnvRh5e/R8zzfIFqSHD1iEXSOSjAgQ==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23109.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23109.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/de/Microsoft.Win32.Primitives.xml", + "ref/dotnet/es/Microsoft.Win32.Primitives.xml", + "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", + "ref/dotnet/it/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "System.Collections/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "2/VX+2QEyyIpvGDzuIXX8V0vSl/Llt673DR48nNmeA6BoMuwL4Eu4F1Meh9fPp80nhcjifqVK8g7/UQDn/0PFw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23109.nupkg", + "System.Collections.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Diagnostics.Contracts/4.0.0-beta-23109": { + "sha512": "kvQ39S26PRGerulw6LayNGxleSvNB0koSkcoHqZQdf8YLbKWFYR84G8lZJr0uhPIKJrLiNw0VXvHa87bNHk8IQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Diagnostics.Contracts.xml", + "ref/dotnet/es/System.Diagnostics.Contracts.xml", + "ref/dotnet/fr/System.Diagnostics.Contracts.xml", + "ref/dotnet/it/System.Diagnostics.Contracts.xml", + "ref/dotnet/ja/System.Diagnostics.Contracts.xml", + "ref/dotnet/ko/System.Diagnostics.Contracts.xml", + "ref/dotnet/ru/System.Diagnostics.Contracts.xml", + "ref/dotnet/System.Diagnostics.Contracts.dll", + "ref/dotnet/System.Diagnostics.Contracts.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Contracts.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Contracts.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/netcore50/System.Diagnostics.Contracts.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll", + "System.Diagnostics.Contracts.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Contracts.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "woJsNwCtAqYac5zp+6Wy40HAp7kYr8zhaFvHl3gECjQf+VGeGYaHgDV1ATVcyMG1h6XvmX0wtmD5Qds51CRJoA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.IO/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "DVHSyfJO8mC9CpZFjjuaOWazALkWFnI6b/fqTQCjNe1dp2XasuvTRiV/qIOJB+uyDVex8sH8QMRUDS6ukimyLA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/de/System.IO.xml", + "ref/dotnet/es/System.IO.xml", + "ref/dotnet/fr/System.IO.xml", + "ref/dotnet/it/System.IO.xml", + "ref/dotnet/ja/System.IO.xml", + "ref/dotnet/ko/System.IO.xml", + "ref/dotnet/ru/System.IO.xml", + "ref/dotnet/System.IO.dll", + "ref/dotnet/System.IO.xml", + "ref/dotnet/zh-hans/System.IO.xml", + "ref/dotnet/zh-hant/System.IO.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23109.nupkg", + "System.IO.4.0.10-beta-23109.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Net.WebSockets/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "oeNoZE8gMn6cz+6cK6K2or4nKR+HUa0lxfgEd5UkFvnr6hwU2islJ+K9oRdm6u3sQVEHfQSAuBKSIBekKuBX2w==", + "files": [ + "lib/DNXCore50/System.Net.WebSockets.dll", + "lib/net46/System.Net.WebSockets.dll", + "ref/dotnet/de/System.Net.WebSockets.xml", + "ref/dotnet/es/System.Net.WebSockets.xml", + "ref/dotnet/fr/System.Net.WebSockets.xml", + "ref/dotnet/it/System.Net.WebSockets.xml", + "ref/dotnet/ja/System.Net.WebSockets.xml", + "ref/dotnet/ko/System.Net.WebSockets.xml", + "ref/dotnet/ru/System.Net.WebSockets.xml", + "ref/dotnet/System.Net.WebSockets.dll", + "ref/dotnet/System.Net.WebSockets.xml", + "ref/dotnet/zh-hans/System.Net.WebSockets.xml", + "ref/dotnet/zh-hant/System.Net.WebSockets.xml", + "ref/net46/System.Net.WebSockets.dll", + "System.Net.WebSockets.4.0.0-beta-23109.nupkg", + "System.Net.WebSockets.4.0.0-beta-23109.nupkg.sha512", + "System.Net.WebSockets.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "y6M7TxwDXBD2in5cCf+KzucZyx7YE7SJMcU24atzYnpwP2xFASUYCeI6NRg5bYcw2Do5HKBz+XdE9WiZrwpnFg==", + "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-23109.nupkg", + "System.Private.Uri.4.0.0-beta-23109.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.0-beta-23109": { + "sha512": "N7ZN1WweCWH6fhhD8IfUaNWwSPSibjEZ/FUffH8EuqKbovw46Xgm193DVmIYVgA0zySKyBnJbH/fLK/lOjgcoQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Reflection.xml", + "ref/dotnet/es/System.Reflection.xml", + "ref/dotnet/fr/System.Reflection.xml", + "ref/dotnet/it/System.Reflection.xml", + "ref/dotnet/ja/System.Reflection.xml", + "ref/dotnet/ko/System.Reflection.xml", + "ref/dotnet/ru/System.Reflection.xml", + "ref/dotnet/System.Reflection.dll", + "ref/dotnet/System.Reflection.xml", + "ref/dotnet/zh-hans/System.Reflection.xml", + "ref/dotnet/zh-hant/System.Reflection.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Reflection.4.0.0-beta-23109.nupkg", + "System.Reflection.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "R5oBDNgUtSV9KTPCxwHWiTyryX/9mngnPbLWwFOEF5xcNd3Qlu6/3LiauGsIzGtXV8vOpRl9tfyIFy8t4ix4Gw==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Primitives.xml", + "ref/dotnet/es/System.Reflection.Primitives.xml", + "ref/dotnet/fr/System.Reflection.Primitives.xml", + "ref/dotnet/it/System.Reflection.Primitives.xml", + "ref/dotnet/ja/System.Reflection.Primitives.xml", + "ref/dotnet/ko/System.Reflection.Primitives.xml", + "ref/dotnet/ru/System.Reflection.Primitives.xml", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "6usAb6nZEPKugl3z5JR/RZrouH5/340n3tM0lhRfxVE/k3B3Sfh/sHSPiAOorrZgGm4cIDDhXTCGJQSWYphu3g==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/de/System.Runtime.xml", + "ref/dotnet/es/System.Runtime.xml", + "ref/dotnet/fr/System.Runtime.xml", + "ref/dotnet/it/System.Runtime.xml", + "ref/dotnet/ja/System.Runtime.xml", + "ref/dotnet/ko/System.Runtime.xml", + "ref/dotnet/ru/System.Runtime.xml", + "ref/dotnet/System.Runtime.dll", + "ref/dotnet/System.Runtime.xml", + "ref/dotnet/zh-hans/System.Runtime.xml", + "ref/dotnet/zh-hant/System.Runtime.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23109.nupkg", + "System.Runtime.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "JkRMtSY5YFGhP9eY7ZFIj40Ha5lGOwSxrk90k0ZAuIFn6qEPNe0NKu/C8laV7Cqy4Lv5IYzkVUGrfOqg3MOG9A==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/de/System.Runtime.Extensions.xml", + "ref/dotnet/es/System.Runtime.Extensions.xml", + "ref/dotnet/fr/System.Runtime.Extensions.xml", + "ref/dotnet/it/System.Runtime.Extensions.xml", + "ref/dotnet/ja/System.Runtime.Extensions.xml", + "ref/dotnet/ko/System.Runtime.Extensions.xml", + "ref/dotnet/ru/System.Runtime.Extensions.xml", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "XfjBv5hxBDVXvgPzBXiMpHprnmd5trdBAG4o7DEi/3GPXIlety4G0sfmlxeiTr7njKr0wF4ERdLIfzPesS5PAw==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "fxRLTR5kbqOZuSeT5ggVBYc6HIEGmEwh+Uw1ijp2qD3yMiMPmxvtI5aP5t0yZHEmwUrB37lGB+oaPpcXLH5Feg==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/de/System.Runtime.InteropServices.xml", + "ref/dotnet/es/System.Runtime.InteropServices.xml", + "ref/dotnet/fr/System.Runtime.InteropServices.xml", + "ref/dotnet/it/System.Runtime.InteropServices.xml", + "ref/dotnet/ja/System.Runtime.InteropServices.xml", + "ref/dotnet/ko/System.Runtime.InteropServices.xml", + "ref/dotnet/ru/System.Runtime.InteropServices.xml", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Lewf25aZTItYvFz8RtCFdNAniNQ737gkTPU9IObuzbOeX8MMGHRf9Le4AQ2SdkTTTljjhebGybF5KCKZ784DLA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/de/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/es/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/fr/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/it/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/ja/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/ko/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/ru/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Encryption.xml", + "ref/net46/System.Security.Cryptography.Encryption.dll", + "System.Security.Cryptography.Encryption.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "aW1iD9qY229C8gvnebG/drLk3ed7n7zb7yXNtr7KCE7xFOh+rIbZ7xEEn+yP7zP12iUsdV4NlKTvZva2kklmGg==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/de/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/es/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/fr/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/it/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/ja/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/ko/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/ru/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Hashing.xml", + "ref/net46/System.Security.Cryptography.Hashing.dll", + "System.Security.Cryptography.Hashing.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "ilSnV4VGW2z8nUKRIs/OrpmtgFV5qZoRie6mdPKdk8Xl6dqkl/MiCu7Z5glJ+PxPq6sGo9M9pmDehTKLjekIFw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/de/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/es/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/fr/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/it/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/ja/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/ko/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/ru/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "eBEb851icqj4elt5iPbiO6cnLflOWr0tRRHEq/ekxr1P2zNkI2TntVWC+lu5MOYgRj92XRNt2H+pCootjKruMw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/de/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/es/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/fr/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/it/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/ja/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/ko/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/ru/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "sha512": "oymPt96KPPXO/Scxow+x8cKczVw0KXfExKTXQlwT+j3sS1j/JuV+rZq2sQ54fqOi2R4d9aFPESsoN830sA6VCw==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/de/System.Text.Encoding.xml", + "ref/dotnet/es/System.Text.Encoding.xml", + "ref/dotnet/fr/System.Text.Encoding.xml", + "ref/dotnet/it/System.Text.Encoding.xml", + "ref/dotnet/ja/System.Text.Encoding.xml", + "ref/dotnet/ko/System.Text.Encoding.xml", + "ref/dotnet/ru/System.Text.Encoding.xml", + "ref/dotnet/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "sha512": "F6GZqICZ654MsqVPCL8h+fvDZJmXnu1I1PYY9686yG+lbcZzs9aavqMUjv1Lu5wOdiTKnmn7LADZYzPD6y1p+w==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/de/System.Text.Encoding.Extensions.xml", + "ref/dotnet/es/System.Text.Encoding.Extensions.xml", + "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", + "ref/dotnet/it/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "TSViw+K20yh9DmwzZpvuCUc2m2ju1eVAJ10pTw2gB/aP4kkrX2nGf4A9BkwkxupPXFA2OtO9LbbEqdp4YbBnjQ==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/de/System.Threading.xml", + "ref/dotnet/es/System.Threading.xml", + "ref/dotnet/fr/System.Threading.xml", + "ref/dotnet/it/System.Threading.xml", + "ref/dotnet/ja/System.Threading.xml", + "ref/dotnet/ko/System.Threading.xml", + "ref/dotnet/ru/System.Threading.xml", + "ref/dotnet/System.Threading.dll", + "ref/dotnet/System.Threading.xml", + "ref/dotnet/zh-hans/System.Threading.xml", + "ref/dotnet/zh-hant/System.Threading.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23109.nupkg", + "System.Threading.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "J7lBqLLy1A85KZUgFz0fS8u6BO+pnWun2OAkrNqcUQbgCiKDC9v92u9q6a6AB9znum+GCdzH3cyEftNtIVNd1Q==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/de/System.Threading.Tasks.xml", + "ref/dotnet/es/System.Threading.Tasks.xml", + "ref/dotnet/fr/System.Threading.Tasks.xml", + "ref/dotnet/it/System.Threading.Tasks.xml", + "ref/dotnet/ja/System.Threading.Tasks.xml", + "ref/dotnet/ko/System.Threading.Tasks.xml", + "ref/dotnet/ru/System.Threading.Tasks.xml", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.xml", + "ref/dotnet/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet/zh-hant/System.Threading.Tasks.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Timer/4.0.0-beta-23109": { + "sha512": "m0IORsRdO5kQqdA3C1EGLvD3NPaAj+B0FaM0KnAj0Cxg53baGGmYpNwh6mPf4sB8Pl4VBUtVaxlLN18MuyNQKQ==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Threading.Timer.xml", + "ref/dotnet/es/System.Threading.Timer.xml", + "ref/dotnet/fr/System.Threading.Timer.xml", + "ref/dotnet/it/System.Threading.Timer.xml", + "ref/dotnet/ja/System.Threading.Timer.xml", + "ref/dotnet/ko/System.Threading.Timer.xml", + "ref/dotnet/ru/System.Threading.Timer.xml", + "ref/dotnet/System.Threading.Timer.dll", + "ref/dotnet/System.Threading.Timer.xml", + "ref/dotnet/zh-hans/System.Threading.Timer.xml", + "ref/dotnet/zh-hant/System.Threading.Timer.xml", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/win81/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.0-beta-23109.nupkg", + "System.Threading.Timer.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.Framework.NotNullAttribute.Sources >= 1.0.0-beta6" + ], + ".NETFramework,Version=v4.5": [], + "DNXCore,Version=v5.0": [ + "System.Diagnostics.Contracts >= 4.0.0-beta-23109", + "System.IO >= 4.0.10-beta-23109", + "System.Linq >= 4.0.0-beta-23109", + "System.Net.WebSockets >= 4.0.0-beta-23109", + "System.Runtime >= 4.0.20-beta-23109", + "System.Runtime.InteropServices >= 4.0.20-beta-23109", + "System.Runtime.Extensions >= 4.0.10-beta-23109", + "System.Security.Cryptography.Encryption >= 4.0.0-beta-23109", + "System.Security.Cryptography.Hashing >= 4.0.0-beta-23109", + "System.Security.Cryptography.Hashing.Algorithms >= 4.0.0-beta-23109", + "System.Security.Cryptography.RandomNumberGenerator >= 4.0.0-beta-23109", + "System.Text.Encoding.Extensions >= 4.0.10-beta-23109", + "System.Threading >= 4.0.10-beta-23109", + "System.Threading.Tasks >= 4.0.10-beta-23109", + "System.Threading.Timer >= 4.0.0-beta-23109" + ] + } +} \ No newline at end of file diff --git a/src/Microsoft.AspNet.WebSockets.Server/project.json b/src/Microsoft.AspNet.WebSockets.Server/project.json index 1818c554..998cb7dc 100644 --- a/src/Microsoft.AspNet.WebSockets.Server/project.json +++ b/src/Microsoft.AspNet.WebSockets.Server/project.json @@ -1,20 +1,20 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta6", "description": "ASP.NET 5 web socket middleware for use on top of opaque servers.", "repository": { "type": "git", "url": "git://github.com/aspnet/websockets" }, "dependencies": { - "Microsoft.AspNet.Http": "1.0.0-*", - "Microsoft.AspNet.WebSockets.Protocol": "1.0.0-*" + "Microsoft.AspNet.Http": "1.0.0-beta6", + "Microsoft.AspNet.WebSockets.Protocol": "1.0.0-beta6" }, "frameworks": { - "dnx451": { }, + "dnx451": {}, "dnxcore50": { "dependencies": { - "System.Runtime": "4.0.20-beta-*" + "System.Runtime": "4.0.20-beta-23109" } } } -} +} \ No newline at end of file diff --git a/src/Microsoft.AspNet.WebSockets.Server/project.lock.json b/src/Microsoft.AspNet.WebSockets.Server/project.lock.json new file mode 100644 index 00000000..c8fc6b52 --- /dev/null +++ b/src/Microsoft.AspNet.WebSockets.Server/project.lock.json @@ -0,0 +1,2491 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.AspNet.FeatureModel/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta6", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta6", + "Microsoft.Net.Http.Headers": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta6", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta6": { + "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.WebEncoders.Core/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.AspNet.FeatureModel/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta6", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta6", + "Microsoft.Net.Http.Headers": "1.0.0-beta6", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta6", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Globalization.Extensions": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Net.Primitives": "4.0.10-beta-23109", + "System.Net.WebSockets": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Security.Claims": "4.0.0-beta-23109", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23109", + "System.Security.Principal": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Net.Primitives": "4.0.10-beta-23109", + "System.Net.WebSockets": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Security.Claims": "4.0.0-beta-23109", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23109", + "System.Security.Principal": "4.0.0-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta6": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Contracts": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Globalization.Extensions": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "System.Collections/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23109": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Overlapped": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit": "4.0.0-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23109": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23109": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23109": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23109", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.0-beta-23109", + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tracing": "4.0.20-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23109", + "System.Security.Principal.Windows": "4.0.0-beta-23109", + "System.Security.SecureString": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Overlapped": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109", + "System.Threading.ThreadPool": "4.0.10-beta-23109" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23109": { + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23109": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Security.Principal": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "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-23109": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23109", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23109" + }, + "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-23109": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23109", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Globalization.Calendars": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Runtime.Numerics": "4.0.0-beta-23109", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23109", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23109", + "System.Security.Cryptography.RSA": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Claims": "4.0.0-beta-23109", + "System.Security.Principal": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23109": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNet.FeatureModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "6SdDa7Fx/38scBkaOGySzkSMQhk58ERdzouVyxJ9FhhXph2MEMgSuqNACCgTOX6+zFl6ZUwJG0DphQ+iYv2jrw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll", + "lib/dnx451/Microsoft.AspNet.FeatureModel.xml", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.xml", + "Microsoft.AspNet.FeatureModel.1.0.0-beta6.nupkg", + "Microsoft.AspNet.FeatureModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.FeatureModel.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http/1.0.0-beta6": { + "serviceable": true, + "sha512": "67oPgXxtKkenyJ6cQv1w5SFX1Iy9E5kGJ/nFLZb8y0NFq0q40VU+TSTaNksyAN/7NCLSdpXdZqLRIplkc/VdUw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.dll", + "lib/dnx451/Microsoft.AspNet.Http.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.xml", + "Microsoft.AspNet.Http.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "yb6WdoTelIHfgNuKzHp5uu4qHB7CyXAs+41PFyskNTkWn4TwCXzoCnpJV08X3n2GdjqMCzeb2U2FFafmeZxAkQ==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.xml", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta6": { + "serviceable": true, + "sha512": "x9m0cW55Y5oFBCgD4Yqwfyu14kw0AkNm2UFgrdCpTy6h7GBaV2nc5sSx6SgoP4fwThco5gac29GpH8IBXOUeYA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.Features.dll", + "lib/dnx451/Microsoft.AspNet.Http.Features.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.Features.xml", + "Microsoft.AspNet.Http.Features.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta6": { + "serviceable": true, + "sha512": "bLN5Nk0K9DB5trMtXUIrvNMxm+VKVPKcUHfM7mGBaKbBSARVvd5KIJTt+8Z9UF1IjjItd4/bV6gRTbo1Fo3/lw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll", + "lib/dnx451/Microsoft.AspNet.WebUtilities.xml", + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll", + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.xml", + "Microsoft.AspNet.WebUtilities.1.0.0-beta6.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta6": { + "sha512": "85K5j4jXSZxErwaNUrMMaq2O5sjPsW68fnCdSK8h88MZh04Bj0QAsk4yuRZG0nZlgn7He+k1H5XIWkMSLDXFKQ==", + "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-beta6.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta6": { + "serviceable": true, + "sha512": "OvCNyGPZq645VdMzHZ8vLdlYIdl7KlZfVrCu+30DfwSCGV36ByJkUPHer3wU688jWFPx2S1OO7f82fJENYwz8Q==", + "files": [ + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll", + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.xml", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.xml", + "lib/net45/Microsoft.Framework.WebEncoders.Core.dll", + "lib/net45/Microsoft.Framework.WebEncoders.Core.xml", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta6.nupkg", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.WebEncoders.Core.nuspec", + "repo.json" + ] + }, + "Microsoft.Net.Http.Headers/1.0.0-beta6": { + "serviceable": true, + "sha512": "PeBHRiu9gSlP31Z1V3WEmIEb+1YJDdNdQY7xsSA98d3GnZqi+7ZERXVNcDDYMI16QViA/+Gq10HtYti8GwDHtQ==", + "files": [ + "lib/dnx451/Microsoft.Net.Http.Headers.dll", + "lib/dnx451/Microsoft.Net.Http.Headers.xml", + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll", + "lib/dnxcore50/Microsoft.Net.Http.Headers.xml", + "lib/net45/Microsoft.Net.Http.Headers.dll", + "lib/net45/Microsoft.Net.Http.Headers.xml", + "Microsoft.Net.Http.Headers.1.0.0-beta6.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-beta6.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec", + "repo.json" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "GsSRwzgrK2WJHUyd83AtKEX+Hv8ecmnwerJzinTXNqddsI48ClaeAyBgUnvRh5e/R8zzfIFqSHD1iEXSOSjAgQ==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23109.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23109.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/de/Microsoft.Win32.Primitives.xml", + "ref/dotnet/es/Microsoft.Win32.Primitives.xml", + "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", + "ref/dotnet/it/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "System.Collections/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "2/VX+2QEyyIpvGDzuIXX8V0vSl/Llt673DR48nNmeA6BoMuwL4Eu4F1Meh9fPp80nhcjifqVK8g7/UQDn/0PFw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23109.nupkg", + "System.Collections.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.0-beta-23109": { + "sha512": "ho+bO0DCKzknt/Wclih/H0tEeVj+BVPp1SE9dWqejp2iUtqlJrL8XVpdM8OgDIyT2DESwMPwDNpDsx7QI+bZhA==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.Concurrent.xml", + "ref/dotnet/es/System.Collections.Concurrent.xml", + "ref/dotnet/fr/System.Collections.Concurrent.xml", + "ref/dotnet/it/System.Collections.Concurrent.xml", + "ref/dotnet/ja/System.Collections.Concurrent.xml", + "ref/dotnet/ko/System.Collections.Concurrent.xml", + "ref/dotnet/ru/System.Collections.Concurrent.xml", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/dotnet/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "System.Collections.Concurrent.4.0.0-beta-23109.nupkg", + "System.Collections.Concurrent.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Z+VGG3YaL4PxuBn/Nbjul1OoaCBzvkylexTwIW6s8arj3c17XkCeJvZ1BIn66lzDpAQYMGZmv97UMT6OboRoVg==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/de/System.Collections.NonGeneric.xml", + "ref/dotnet/es/System.Collections.NonGeneric.xml", + "ref/dotnet/fr/System.Collections.NonGeneric.xml", + "ref/dotnet/it/System.Collections.NonGeneric.xml", + "ref/dotnet/ja/System.Collections.NonGeneric.xml", + "ref/dotnet/ko/System.Collections.NonGeneric.xml", + "ref/dotnet/ru/System.Collections.NonGeneric.xml", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", + "ref/net46/System.Collections.NonGeneric.dll", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "JFzHUvX28tQbud0c9AP+SFeOroBG9x7tgc0OYu0Z5nQotnIiwP5nHXq9DoK3N2y0MoRUt8jy2FwkRMAYgiQuNQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.ComponentModel.xml", + "ref/dotnet/es/System.ComponentModel.xml", + "ref/dotnet/fr/System.ComponentModel.xml", + "ref/dotnet/it/System.ComponentModel.xml", + "ref/dotnet/ja/System.ComponentModel.xml", + "ref/dotnet/ko/System.ComponentModel.xml", + "ref/dotnet/ru/System.ComponentModel.xml", + "ref/dotnet/System.ComponentModel.dll", + "ref/dotnet/System.ComponentModel.xml", + "ref/dotnet/zh-hans/System.ComponentModel.xml", + "ref/dotnet/zh-hant/System.ComponentModel.xml", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.0-beta-23109.nupkg", + "System.ComponentModel.4.0.0-beta-23109.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "M5Ac5DJJ/xUy5N/9XlyOYJ2Y+C0ZvajUcgcywvWJKSFXsGwTPGHkri5ajXnJ6aLjQYggUrzJJ/tQEsO2jxec9Q==", + "files": [ + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/dotnet/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/net46/_._", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23109.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23109.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec" + ] + }, + "System.Diagnostics.Contracts/4.0.0-beta-23109": { + "sha512": "kvQ39S26PRGerulw6LayNGxleSvNB0koSkcoHqZQdf8YLbKWFYR84G8lZJr0uhPIKJrLiNw0VXvHa87bNHk8IQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Diagnostics.Contracts.xml", + "ref/dotnet/es/System.Diagnostics.Contracts.xml", + "ref/dotnet/fr/System.Diagnostics.Contracts.xml", + "ref/dotnet/it/System.Diagnostics.Contracts.xml", + "ref/dotnet/ja/System.Diagnostics.Contracts.xml", + "ref/dotnet/ko/System.Diagnostics.Contracts.xml", + "ref/dotnet/ru/System.Diagnostics.Contracts.xml", + "ref/dotnet/System.Diagnostics.Contracts.dll", + "ref/dotnet/System.Diagnostics.Contracts.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Contracts.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Contracts.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/netcore50/System.Diagnostics.Contracts.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll", + "System.Diagnostics.Contracts.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Contracts.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "woJsNwCtAqYac5zp+6Wy40HAp7kYr8zhaFvHl3gECjQf+VGeGYaHgDV1ATVcyMG1h6XvmX0wtmD5Qds51CRJoA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6tFdP3p3SV6DZOagwW5ThfUF+zp5pUIyW4CY2K4B2RxV6HGVyY/8J2EuZGrcEP3wdO5fXnb9MmdOZa5Tn01Hmg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Diagnostics.Tools.xml", + "ref/dotnet/es/System.Diagnostics.Tools.xml", + "ref/dotnet/fr/System.Diagnostics.Tools.xml", + "ref/dotnet/it/System.Diagnostics.Tools.xml", + "ref/dotnet/ja/System.Diagnostics.Tools.xml", + "ref/dotnet/ko/System.Diagnostics.Tools.xml", + "ref/dotnet/ru/System.Diagnostics.Tools.xml", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/dotnet/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "sNauLSBFewFLjULHeplEr7FCmmfPbcc1jfz1Mynjy445bYiP/IW1q9X14a//oV/uQG7p82S9qHyfPxoxmt3pxQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/de/System.Diagnostics.Tracing.xml", + "ref/dotnet/es/System.Diagnostics.Tracing.xml", + "ref/dotnet/fr/System.Diagnostics.Tracing.xml", + "ref/dotnet/it/System.Diagnostics.Tracing.xml", + "ref/dotnet/ja/System.Diagnostics.Tracing.xml", + "ref/dotnet/ko/System.Diagnostics.Tracing.xml", + "ref/dotnet/ru/System.Diagnostics.Tracing.xml", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23109": { + "sha512": "l4QNrgLmC4KHGLcfriJ2EmsM2j18xefJzCnLU6YqVdBFaYzsJGwqmHyIr4nqw9DBjdWEtzdHLEbvpLeEay0ZWQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23109.nupkg", + "System.Globalization.4.0.10-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23109": { + "sha512": "j8sJKMKIoGz7MoGNjaoaaQCTscTpSieB4tWAjlUTr8mWU2bwhvlLMiA4zjXlie+FsDmpB3Ts7iG+R4ppXgBfVA==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/de/System.Globalization.Calendars.xml", + "ref/dotnet/es/System.Globalization.Calendars.xml", + "ref/dotnet/fr/System.Globalization.Calendars.xml", + "ref/dotnet/it/System.Globalization.Calendars.xml", + "ref/dotnet/ja/System.Globalization.Calendars.xml", + "ref/dotnet/ko/System.Globalization.Calendars.xml", + "ref/dotnet/ru/System.Globalization.Calendars.xml", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hans/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hant/System.Globalization.Calendars.xml", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0-beta-23109.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Q0BD+jsPZFtcR5DMcyERM2TggHJm9fJNGIMypTTh/6i6jET/c0B1MPnOyOUrHIbLuYrEwyiKDNJz0yw7Ps3hbg==", + "files": [ + "lib/dotnet/System.Globalization.Extensions.dll", + "lib/net46/System.Globalization.Extensions.dll", + "ref/dotnet/de/System.Globalization.Extensions.xml", + "ref/dotnet/es/System.Globalization.Extensions.xml", + "ref/dotnet/fr/System.Globalization.Extensions.xml", + "ref/dotnet/it/System.Globalization.Extensions.xml", + "ref/dotnet/ja/System.Globalization.Extensions.xml", + "ref/dotnet/ko/System.Globalization.Extensions.xml", + "ref/dotnet/ru/System.Globalization.Extensions.xml", + "ref/dotnet/System.Globalization.Extensions.dll", + "ref/dotnet/System.Globalization.Extensions.xml", + "ref/dotnet/zh-hans/System.Globalization.Extensions.xml", + "ref/dotnet/zh-hant/System.Globalization.Extensions.xml", + "ref/net46/System.Globalization.Extensions.dll", + "System.Globalization.Extensions.4.0.0-beta-23109.nupkg", + "System.Globalization.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.Extensions.nuspec" + ] + }, + "System.IO/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "DVHSyfJO8mC9CpZFjjuaOWazALkWFnI6b/fqTQCjNe1dp2XasuvTRiV/qIOJB+uyDVex8sH8QMRUDS6ukimyLA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/de/System.IO.xml", + "ref/dotnet/es/System.IO.xml", + "ref/dotnet/fr/System.IO.xml", + "ref/dotnet/it/System.IO.xml", + "ref/dotnet/ja/System.IO.xml", + "ref/dotnet/ko/System.IO.xml", + "ref/dotnet/ru/System.IO.xml", + "ref/dotnet/System.IO.dll", + "ref/dotnet/System.IO.xml", + "ref/dotnet/zh-hans/System.IO.xml", + "ref/dotnet/zh-hant/System.IO.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23109.nupkg", + "System.IO.4.0.10-beta-23109.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "OusDe4B1/Q3BYY4QzNfztnyPPK9a1OGsQVZBg41C1bk8F2S3AOtXCx0GUwAfKbVxxS4dOdIgxWw1JN5m+IlpAA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/de/System.IO.FileSystem.xml", + "ref/dotnet/es/System.IO.FileSystem.xml", + "ref/dotnet/fr/System.IO.FileSystem.xml", + "ref/dotnet/it/System.IO.FileSystem.xml", + "ref/dotnet/ja/System.IO.FileSystem.xml", + "ref/dotnet/ko/System.IO.FileSystem.xml", + "ref/dotnet/ru/System.IO.FileSystem.xml", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.xml", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "1JFc6+hsLnlYgACgluhMi19zFkNruPgWoLDq30z7qMKgs3FZqShvXDZLTQ1Hk+cnenUoUU/8P8yRdmbdQaf4yg==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "cy+sQJW809QnFHIXt5Y/If45u362gwiNqHldnJS70l7VCjyR4Bo3UgZMZl+bowSupWxqXk69cwCQhRUyFu2hVw==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/de/System.Linq.Expressions.xml", + "ref/dotnet/es/System.Linq.Expressions.xml", + "ref/dotnet/fr/System.Linq.Expressions.xml", + "ref/dotnet/it/System.Linq.Expressions.xml", + "ref/dotnet/ja/System.Linq.Expressions.xml", + "ref/dotnet/ko/System.Linq.Expressions.xml", + "ref/dotnet/ru/System.Linq.Expressions.xml", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.xml", + "ref/dotnet/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet/zh-hant/System.Linq.Expressions.xml", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Net.Primitives/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "Btf+WQXkAQpm6rF/aeNhr8zXUCAsnZuHLVOzVIvnXS4wA32ZsmOa0iCnAjhVGAz7BNOYsjpvKWAHyxO58k+l3g==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/de/System.Net.Primitives.xml", + "ref/dotnet/es/System.Net.Primitives.xml", + "ref/dotnet/fr/System.Net.Primitives.xml", + "ref/dotnet/it/System.Net.Primitives.xml", + "ref/dotnet/ja/System.Net.Primitives.xml", + "ref/dotnet/ko/System.Net.Primitives.xml", + "ref/dotnet/ru/System.Net.Primitives.xml", + "ref/dotnet/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.xml", + "ref/dotnet/zh-hans/System.Net.Primitives.xml", + "ref/dotnet/zh-hant/System.Net.Primitives.xml", + "ref/net46/_._", + "System.Net.Primitives.4.0.10-beta-23109.nupkg", + "System.Net.Primitives.4.0.10-beta-23109.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.WebSockets/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "oeNoZE8gMn6cz+6cK6K2or4nKR+HUa0lxfgEd5UkFvnr6hwU2islJ+K9oRdm6u3sQVEHfQSAuBKSIBekKuBX2w==", + "files": [ + "lib/DNXCore50/System.Net.WebSockets.dll", + "lib/net46/System.Net.WebSockets.dll", + "ref/dotnet/de/System.Net.WebSockets.xml", + "ref/dotnet/es/System.Net.WebSockets.xml", + "ref/dotnet/fr/System.Net.WebSockets.xml", + "ref/dotnet/it/System.Net.WebSockets.xml", + "ref/dotnet/ja/System.Net.WebSockets.xml", + "ref/dotnet/ko/System.Net.WebSockets.xml", + "ref/dotnet/ru/System.Net.WebSockets.xml", + "ref/dotnet/System.Net.WebSockets.dll", + "ref/dotnet/System.Net.WebSockets.xml", + "ref/dotnet/zh-hans/System.Net.WebSockets.xml", + "ref/dotnet/zh-hant/System.Net.WebSockets.xml", + "ref/net46/System.Net.WebSockets.dll", + "System.Net.WebSockets.4.0.0-beta-23109.nupkg", + "System.Net.WebSockets.4.0.0-beta-23109.nupkg.sha512", + "System.Net.WebSockets.nuspec" + ] + }, + "System.ObjectModel/4.0.0-beta-23109": { + "sha512": "chuCWtLOjJx8LfaDeVB8KqP4NPjj03PUrXxRvkFuSk28hXdJZ6qWFwTICnvZGuvuHqkBFHAuKgFJqvdzp2s9xw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.ObjectModel.xml", + "ref/dotnet/es/System.ObjectModel.xml", + "ref/dotnet/fr/System.ObjectModel.xml", + "ref/dotnet/it/System.ObjectModel.xml", + "ref/dotnet/ja/System.ObjectModel.xml", + "ref/dotnet/ko/System.ObjectModel.xml", + "ref/dotnet/ru/System.ObjectModel.xml", + "ref/dotnet/System.ObjectModel.dll", + "ref/dotnet/System.ObjectModel.xml", + "ref/dotnet/zh-hans/System.ObjectModel.xml", + "ref/dotnet/zh-hant/System.ObjectModel.xml", + "ref/net45/_._", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ObjectModel.4.0.0-beta-23109.nupkg", + "System.ObjectModel.4.0.0-beta-23109.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Networking/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "xJxSwEnJe2lmzuahgRjQJY7WcPFFBp60d4TLY9LejGgBbR1yGiQo094nZPkVYChQTz3TtKayLvZZOdNVpONhKQ==", + "files": [ + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.4.0.0-beta-23109.nupkg", + "System.Private.Networking.4.0.0-beta-23109.nupkg.sha512", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "y6M7TxwDXBD2in5cCf+KzucZyx7YE7SJMcU24atzYnpwP2xFASUYCeI6NRg5bYcw2Do5HKBz+XdE9WiZrwpnFg==", + "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-23109.nupkg", + "System.Private.Uri.4.0.0-beta-23109.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23109": { + "sha512": "aeXO8gjPb46LaP727cXDcCZ2mZoMxguq2UhE25wJoO1Je8Q8D2JFonNk85oVlgXCdEM6XgrtRnsnhvj8PmTBNg==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/de/System.Reflection.xml", + "ref/dotnet/es/System.Reflection.xml", + "ref/dotnet/fr/System.Reflection.xml", + "ref/dotnet/it/System.Reflection.xml", + "ref/dotnet/ja/System.Reflection.xml", + "ref/dotnet/ko/System.Reflection.xml", + "ref/dotnet/ru/System.Reflection.xml", + "ref/dotnet/System.Reflection.dll", + "ref/dotnet/System.Reflection.xml", + "ref/dotnet/zh-hans/System.Reflection.xml", + "ref/dotnet/zh-hant/System.Reflection.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23109.nupkg", + "System.Reflection.4.0.10-beta-23109.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "sha512": "zH69GCp68Ad8KCHev6Qu7DDqg5VzqzoXeJDthGHqB3oAkqBDTwNRVTo2NUY84kOINdQTnYvD0xlEMqE7heOMyg==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/de/System.Reflection.Emit.xml", + "ref/dotnet/es/System.Reflection.Emit.xml", + "ref/dotnet/fr/System.Reflection.Emit.xml", + "ref/dotnet/it/System.Reflection.Emit.xml", + "ref/dotnet/ja/System.Reflection.Emit.xml", + "ref/dotnet/ko/System.Reflection.Emit.xml", + "ref/dotnet/ru/System.Reflection.Emit.xml", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.xml", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "sha512": "tJO27blFXyvYwDLbK7GvgFC94XjeY6MnRitBI4w8LHfEc/gVdRmCC8gzkE8KEmkecnIWIt9VTSJ3p4lGgafKKA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/wp80/_._", + "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/net45/_._", + "ref/wp80/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "sXo3+qJ7TukCF/rDFYKjEog4iVb75dXJztu/lkvhMHgYnviPSbi9zg78FQUFhB6BOvntwnknrgNJhhtl3x9a7A==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Extensions.xml", + "ref/dotnet/es/System.Reflection.Extensions.xml", + "ref/dotnet/fr/System.Reflection.Extensions.xml", + "ref/dotnet/it/System.Reflection.Extensions.xml", + "ref/dotnet/ja/System.Reflection.Extensions.xml", + "ref/dotnet/ko/System.Reflection.Extensions.xml", + "ref/dotnet/ru/System.Reflection.Extensions.xml", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/dotnet/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "R5oBDNgUtSV9KTPCxwHWiTyryX/9mngnPbLWwFOEF5xcNd3Qlu6/3LiauGsIzGtXV8vOpRl9tfyIFy8t4ix4Gw==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Primitives.xml", + "ref/dotnet/es/System.Reflection.Primitives.xml", + "ref/dotnet/fr/System.Reflection.Primitives.xml", + "ref/dotnet/it/System.Reflection.Primitives.xml", + "ref/dotnet/ja/System.Reflection.Primitives.xml", + "ref/dotnet/ko/System.Reflection.Primitives.xml", + "ref/dotnet/ru/System.Reflection.Primitives.xml", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "lTuPMxeoT/Jqb1QtsIuSomLiJpQP3Y4DqqxLPncrMvLrejwdF25QSbhXdx5twgvBDqwSVL8wYtqiOqKe02u7FA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/de/System.Reflection.TypeExtensions.xml", + "ref/dotnet/es/System.Reflection.TypeExtensions.xml", + "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", + "ref/dotnet/it/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "6usAb6nZEPKugl3z5JR/RZrouH5/340n3tM0lhRfxVE/k3B3Sfh/sHSPiAOorrZgGm4cIDDhXTCGJQSWYphu3g==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/de/System.Runtime.xml", + "ref/dotnet/es/System.Runtime.xml", + "ref/dotnet/fr/System.Runtime.xml", + "ref/dotnet/it/System.Runtime.xml", + "ref/dotnet/ja/System.Runtime.xml", + "ref/dotnet/ko/System.Runtime.xml", + "ref/dotnet/ru/System.Runtime.xml", + "ref/dotnet/System.Runtime.dll", + "ref/dotnet/System.Runtime.xml", + "ref/dotnet/zh-hans/System.Runtime.xml", + "ref/dotnet/zh-hant/System.Runtime.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23109.nupkg", + "System.Runtime.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "JkRMtSY5YFGhP9eY7ZFIj40Ha5lGOwSxrk90k0ZAuIFn6qEPNe0NKu/C8laV7Cqy4Lv5IYzkVUGrfOqg3MOG9A==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/de/System.Runtime.Extensions.xml", + "ref/dotnet/es/System.Runtime.Extensions.xml", + "ref/dotnet/fr/System.Runtime.Extensions.xml", + "ref/dotnet/it/System.Runtime.Extensions.xml", + "ref/dotnet/ja/System.Runtime.Extensions.xml", + "ref/dotnet/ko/System.Runtime.Extensions.xml", + "ref/dotnet/ru/System.Runtime.Extensions.xml", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "XfjBv5hxBDVXvgPzBXiMpHprnmd5trdBAG4o7DEi/3GPXIlety4G0sfmlxeiTr7njKr0wF4ERdLIfzPesS5PAw==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "fxRLTR5kbqOZuSeT5ggVBYc6HIEGmEwh+Uw1ijp2qD3yMiMPmxvtI5aP5t0yZHEmwUrB37lGB+oaPpcXLH5Feg==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/de/System.Runtime.InteropServices.xml", + "ref/dotnet/es/System.Runtime.InteropServices.xml", + "ref/dotnet/fr/System.Runtime.InteropServices.xml", + "ref/dotnet/it/System.Runtime.InteropServices.xml", + "ref/dotnet/ja/System.Runtime.InteropServices.xml", + "ref/dotnet/ko/System.Runtime.InteropServices.xml", + "ref/dotnet/ru/System.Runtime.InteropServices.xml", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "l4yWLk7mSm1eUWuZRJaQ5jfPE67GI9DNR6hAKc3Dr3QnwzlzH0zyOqF1wY+2Jo0402LS+std02n2aLvbNNjQFg==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Runtime.Numerics.xml", + "ref/dotnet/es/System.Runtime.Numerics.xml", + "ref/dotnet/fr/System.Runtime.Numerics.xml", + "ref/dotnet/it/System.Runtime.Numerics.xml", + "ref/dotnet/ja/System.Runtime.Numerics.xml", + "ref/dotnet/ko/System.Runtime.Numerics.xml", + "ref/dotnet/ru/System.Runtime.Numerics.xml", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/dotnet/System.Runtime.Numerics.xml", + "ref/dotnet/zh-hans/System.Runtime.Numerics.xml", + "ref/dotnet/zh-hant/System.Runtime.Numerics.xml", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "System.Runtime.Numerics.4.0.0-beta-23109.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Security.Claims/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6oI/9RzVy/6AVHRzuSm9oOOm3O/iS+pWDby0YTuepAtW7aT1VZiYbar0Nzi7wUJLIE+EuUWgGUgVQni0inIUSw==", + "files": [ + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/de/System.Security.Claims.xml", + "ref/dotnet/es/System.Security.Claims.xml", + "ref/dotnet/fr/System.Security.Claims.xml", + "ref/dotnet/it/System.Security.Claims.xml", + "ref/dotnet/ja/System.Security.Claims.xml", + "ref/dotnet/ko/System.Security.Claims.xml", + "ref/dotnet/ru/System.Security.Claims.xml", + "ref/dotnet/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.xml", + "ref/dotnet/zh-hans/System.Security.Claims.xml", + "ref/dotnet/zh-hant/System.Security.Claims.xml", + "ref/net46/System.Security.Claims.dll", + "System.Security.Claims.4.0.0-beta-23109.nupkg", + "System.Security.Claims.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "mEzuexl2Wn+c0RHiPNlsuUecqV1lQ9Z005vcbFHec36zEGEbshbmiiGBZQWE2Gmb9ddINAo6Ob6NnUVAWSpw4A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/de/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/es/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/fr/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/it/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/ja/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/ko/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/ru/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "System.Security.Cryptography.Encoding.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Lewf25aZTItYvFz8RtCFdNAniNQ737gkTPU9IObuzbOeX8MMGHRf9Le4AQ2SdkTTTljjhebGybF5KCKZ784DLA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/de/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/es/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/fr/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/it/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/ja/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/ko/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/ru/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Encryption.xml", + "ref/net46/System.Security.Cryptography.Encryption.dll", + "System.Security.Cryptography.Encryption.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "aW1iD9qY229C8gvnebG/drLk3ed7n7zb7yXNtr7KCE7xFOh+rIbZ7xEEn+yP7zP12iUsdV4NlKTvZva2kklmGg==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/de/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/es/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/fr/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/it/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/ja/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/ko/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/ru/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Hashing.xml", + "ref/net46/System.Security.Cryptography.Hashing.dll", + "System.Security.Cryptography.Hashing.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "ilSnV4VGW2z8nUKRIs/OrpmtgFV5qZoRie6mdPKdk8Xl6dqkl/MiCu7Z5glJ+PxPq6sGo9M9pmDehTKLjekIFw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/de/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/es/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/fr/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/it/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/ja/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/ko/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/ru/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "eBEb851icqj4elt5iPbiO6cnLflOWr0tRRHEq/ekxr1P2zNkI2TntVWC+lu5MOYgRj92XRNt2H+pCootjKruMw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/de/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/es/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/fr/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/it/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/ja/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/ko/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/ru/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "sGincwuZQugP8U3hlzYbRoJ2zKZGZ2dJ/EAQ/pKryCOIlFDur18oXjRvOvTT010Yt7Y/psjCbQlHRmA8EvEKHQ==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/de/System.Security.Cryptography.RSA.xml", + "ref/dotnet/es/System.Security.Cryptography.RSA.xml", + "ref/dotnet/fr/System.Security.Cryptography.RSA.xml", + "ref/dotnet/it/System.Security.Cryptography.RSA.xml", + "ref/dotnet/ja/System.Security.Cryptography.RSA.xml", + "ref/dotnet/ko/System.Security.Cryptography.RSA.xml", + "ref/dotnet/ru/System.Security.Cryptography.RSA.xml", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.RSA.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.RSA.xml", + "ref/net46/System.Security.Cryptography.RSA.dll", + "System.Security.Cryptography.RSA.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "/N8VmWLwPrb17IFAdOdRzJ578wNYl5rIlbcBNQzabO4EVm1S72WOBWlpyKbCFeS1ejO1S+x4RMc99XQ2jLBj/A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/de/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/es/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/it/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "j94G8UrhEtW+RigEzZkayd9fcT9v/J35/V+rGzm6vmRjLE4e12+jwFUqFC9ZowElO4ZqaCoBgxu7uogHRmrKbQ==", + "files": [ + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Security.Principal.xml", + "ref/dotnet/es/System.Security.Principal.xml", + "ref/dotnet/fr/System.Security.Principal.xml", + "ref/dotnet/it/System.Security.Principal.xml", + "ref/dotnet/ja/System.Security.Principal.xml", + "ref/dotnet/ko/System.Security.Principal.xml", + "ref/dotnet/ru/System.Security.Principal.xml", + "ref/dotnet/System.Security.Principal.dll", + "ref/dotnet/System.Security.Principal.xml", + "ref/dotnet/zh-hans/System.Security.Principal.xml", + "ref/dotnet/zh-hant/System.Security.Principal.xml", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Security.Principal.4.0.0-beta-23109.nupkg", + "System.Security.Principal.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "/u7MPH/6bERVU88hsQJFoxva/OnPcS5fUrzj8OWH016zKnUElOVq76GoUdghmN5HCAmRpjqmryvZLt8+b2mrjQ==", + "files": [ + "lib/DNXCore50/System.Security.Principal.Windows.dll", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/dotnet/de/System.Security.Principal.Windows.xml", + "ref/dotnet/es/System.Security.Principal.Windows.xml", + "ref/dotnet/fr/System.Security.Principal.Windows.xml", + "ref/dotnet/it/System.Security.Principal.Windows.xml", + "ref/dotnet/ja/System.Security.Principal.Windows.xml", + "ref/dotnet/ko/System.Security.Principal.Windows.xml", + "ref/dotnet/ru/System.Security.Principal.Windows.xml", + "ref/dotnet/System.Security.Principal.Windows.dll", + "ref/dotnet/System.Security.Principal.Windows.xml", + "ref/dotnet/zh-hans/System.Security.Principal.Windows.xml", + "ref/dotnet/zh-hant/System.Security.Principal.Windows.xml", + "ref/net46/System.Security.Principal.Windows.dll", + "System.Security.Principal.Windows.4.0.0-beta-23109.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Principal.Windows.nuspec" + ] + }, + "System.Security.SecureString/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "ZRmBb18JXF2sfEop6zESpMH+yCPnr3lPfB3o7pyU4hnoMPIzwGJq8T9pIWG0y1x+fB1RtsaXUXPf3T1ACR2T5w==", + "files": [ + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/de/System.Security.SecureString.xml", + "ref/dotnet/es/System.Security.SecureString.xml", + "ref/dotnet/fr/System.Security.SecureString.xml", + "ref/dotnet/it/System.Security.SecureString.xml", + "ref/dotnet/ja/System.Security.SecureString.xml", + "ref/dotnet/ko/System.Security.SecureString.xml", + "ref/dotnet/ru/System.Security.SecureString.xml", + "ref/dotnet/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.xml", + "ref/dotnet/zh-hans/System.Security.SecureString.xml", + "ref/dotnet/zh-hant/System.Security.SecureString.xml", + "ref/net46/System.Security.SecureString.dll", + "System.Security.SecureString.4.0.0-beta-23109.nupkg", + "System.Security.SecureString.4.0.0-beta-23109.nupkg.sha512", + "System.Security.SecureString.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "sha512": "oymPt96KPPXO/Scxow+x8cKczVw0KXfExKTXQlwT+j3sS1j/JuV+rZq2sQ54fqOi2R4d9aFPESsoN830sA6VCw==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/de/System.Text.Encoding.xml", + "ref/dotnet/es/System.Text.Encoding.xml", + "ref/dotnet/fr/System.Text.Encoding.xml", + "ref/dotnet/it/System.Text.Encoding.xml", + "ref/dotnet/ja/System.Text.Encoding.xml", + "ref/dotnet/ko/System.Text.Encoding.xml", + "ref/dotnet/ru/System.Text.Encoding.xml", + "ref/dotnet/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "sha512": "F6GZqICZ654MsqVPCL8h+fvDZJmXnu1I1PYY9686yG+lbcZzs9aavqMUjv1Lu5wOdiTKnmn7LADZYzPD6y1p+w==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/de/System.Text.Encoding.Extensions.xml", + "ref/dotnet/es/System.Text.Encoding.Extensions.xml", + "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", + "ref/dotnet/it/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "TSViw+K20yh9DmwzZpvuCUc2m2ju1eVAJ10pTw2gB/aP4kkrX2nGf4A9BkwkxupPXFA2OtO9LbbEqdp4YbBnjQ==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/de/System.Threading.xml", + "ref/dotnet/es/System.Threading.xml", + "ref/dotnet/fr/System.Threading.xml", + "ref/dotnet/it/System.Threading.xml", + "ref/dotnet/ja/System.Threading.xml", + "ref/dotnet/ko/System.Threading.xml", + "ref/dotnet/ru/System.Threading.xml", + "ref/dotnet/System.Threading.dll", + "ref/dotnet/System.Threading.xml", + "ref/dotnet/zh-hans/System.Threading.xml", + "ref/dotnet/zh-hant/System.Threading.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23109.nupkg", + "System.Threading.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "IMVmv9x4lBiy+jz31dU7KT/aTDlKZabAEDFAxQOTv//v1RYu5XZXZLIiTZqyVUKxxHgB0PUnuSDl5VxUDKysfQ==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/de/System.Threading.Overlapped.xml", + "ref/dotnet/es/System.Threading.Overlapped.xml", + "ref/dotnet/fr/System.Threading.Overlapped.xml", + "ref/dotnet/it/System.Threading.Overlapped.xml", + "ref/dotnet/ja/System.Threading.Overlapped.xml", + "ref/dotnet/ko/System.Threading.Overlapped.xml", + "ref/dotnet/ru/System.Threading.Overlapped.xml", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "J7lBqLLy1A85KZUgFz0fS8u6BO+pnWun2OAkrNqcUQbgCiKDC9v92u9q6a6AB9znum+GCdzH3cyEftNtIVNd1Q==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/de/System.Threading.Tasks.xml", + "ref/dotnet/es/System.Threading.Tasks.xml", + "ref/dotnet/fr/System.Threading.Tasks.xml", + "ref/dotnet/it/System.Threading.Tasks.xml", + "ref/dotnet/ja/System.Threading.Tasks.xml", + "ref/dotnet/ko/System.Threading.Tasks.xml", + "ref/dotnet/ru/System.Threading.Tasks.xml", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.xml", + "ref/dotnet/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet/zh-hant/System.Threading.Tasks.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23109": { + "sha512": "+PySIYrGo5TYk6/+SUq84cnhaJ/12z1DgguacLOjixDn7e1qVo8g2zSk/APEZFqj3CEE5OvGmYPhWPXgRaAgyw==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/de/System.Threading.ThreadPool.xml", + "ref/dotnet/es/System.Threading.ThreadPool.xml", + "ref/dotnet/fr/System.Threading.ThreadPool.xml", + "ref/dotnet/it/System.Threading.ThreadPool.xml", + "ref/dotnet/ja/System.Threading.ThreadPool.xml", + "ref/dotnet/ko/System.Threading.ThreadPool.xml", + "ref/dotnet/ru/System.Threading.ThreadPool.xml", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.xml", + "ref/dotnet/zh-hans/System.Threading.ThreadPool.xml", + "ref/dotnet/zh-hant/System.Threading.ThreadPool.xml", + "ref/net46/System.Threading.ThreadPool.dll", + "System.Threading.ThreadPool.4.0.10-beta-23109.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.0-beta-23109": { + "sha512": "m0IORsRdO5kQqdA3C1EGLvD3NPaAj+B0FaM0KnAj0Cxg53baGGmYpNwh6mPf4sB8Pl4VBUtVaxlLN18MuyNQKQ==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Threading.Timer.xml", + "ref/dotnet/es/System.Threading.Timer.xml", + "ref/dotnet/fr/System.Threading.Timer.xml", + "ref/dotnet/it/System.Threading.Timer.xml", + "ref/dotnet/ja/System.Threading.Timer.xml", + "ref/dotnet/ko/System.Threading.Timer.xml", + "ref/dotnet/ru/System.Threading.Timer.xml", + "ref/dotnet/System.Threading.Timer.dll", + "ref/dotnet/System.Threading.Timer.xml", + "ref/dotnet/zh-hans/System.Threading.Timer.xml", + "ref/dotnet/zh-hant/System.Threading.Timer.xml", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/win81/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.0-beta-23109.nupkg", + "System.Threading.Timer.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.Http >= 1.0.0-beta6", + "Microsoft.AspNet.WebSockets.Protocol >= 1.0.0-beta6" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [ + "System.Runtime >= 4.0.20-beta-23109" + ] + } +} \ No newline at end of file diff --git a/test/AutobahnTestClient/Project.json b/test/AutobahnTestClient/Project.json index a671b8f9..ef036059 100644 --- a/test/AutobahnTestClient/Project.json +++ b/test/AutobahnTestClient/Project.json @@ -1,11 +1,11 @@ { "dependencies": { - "Microsoft.AspNet.WebSockets.Client": "1.0.0-*" + "Microsoft.AspNet.WebSockets.Client": "1.0.0-beta6" }, - "commands": { - "run" : "run" + "commands": { + "run": "run" }, - "frameworks" : { - "dnx451" : { } + "frameworks": { + "dnx451": {} } -} +} \ No newline at end of file diff --git a/test/AutobahnTestClient/project.lock.json b/test/AutobahnTestClient/project.lock.json new file mode 100644 index 00000000..bef79e68 --- /dev/null +++ b/test/AutobahnTestClient/project.lock.json @@ -0,0 +1,45 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta6": { + "sha512": "85K5j4jXSZxErwaNUrMMaq2O5sjPsW68fnCdSK8h88MZh04Bj0QAsk4yuRZG0nZlgn7He+k1H5XIWkMSLDXFKQ==", + "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-beta6.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "shared/NotNullAttribute.cs" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.WebSockets.Client >= 1.0.0-beta6" + ], + "DNX,Version=v4.5.1": [] + } +} \ No newline at end of file diff --git a/test/AutobahnTestServer/Project.json b/test/AutobahnTestServer/Project.json index cb434f80..2c372708 100644 --- a/test/AutobahnTestServer/Project.json +++ b/test/AutobahnTestServer/Project.json @@ -2,17 +2,17 @@ "webroot": "wwwroot", "exclude": "wwwroot/**/*", "dependencies": { - "Microsoft.AspNet.Server.IIS": "1.0.0-*", - "Microsoft.AspNet.Server.WebListener": "1.0.0-*", - "Microsoft.AspNet.WebSockets.Server": "1.0.0-*", - "Kestrel": "1.0.0-*" + "Microsoft.AspNet.Server.IIS": "1.0.0-beta6", + "Microsoft.AspNet.Server.WebListener": "1.0.0-beta6", + "Microsoft.AspNet.WebSockets.Server": "1.0.0-beta6", + "Kestrel": "1.0.0-beta6" }, "commands": { "web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:12345", "kestrel": "Microsoft.AspNet.Hosting --server Kestrel --server.urls http://localhost:12344" }, - "frameworks" : { - "dnx451" : { }, - "dnxcore50" : { } + "frameworks": { + "dnx451": {}, + "dnxcore50": {} } -} +} \ No newline at end of file diff --git a/test/AutobahnTestServer/project.lock.json b/test/AutobahnTestServer/project.lock.json new file mode 100644 index 00000000..12a2be29 --- /dev/null +++ b/test/AutobahnTestServer/project.lock.json @@ -0,0 +1,4054 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Kestrel/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta6", + "Microsoft.AspNet.Server.Kestrel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Kestrel.dll": {} + }, + "runtime": { + "lib/dnx451/Kestrel.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta6", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Http": "1.0.0-beta6", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta6", + "Microsoft.Framework.Configuration": "1.0.0-beta6", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta6", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta6", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta6", + "Microsoft.Net.Http.Headers": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta6", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6", + "Microsoft.Net.Http.Headers": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.Loader.IIS/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Hosting": "1.0.0-beta6", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Loader.IIS.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Loader.IIS.dll": {} + } + }, + "Microsoft.AspNet.Loader.IIS.Interop/1.0.0-beta6": {}, + "Microsoft.AspNet.Server.IIS/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Loader.IIS": "1.0.0-beta6", + "Microsoft.AspNet.Loader.IIS.Interop": "1.0.0-beta6" + } + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll": {} + } + }, + "Microsoft.AspNet.Server.WebListener/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta6", + "Microsoft.Net.Http.Headers": "1.0.0-beta6", + "Microsoft.Net.Http.Server": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Server.WebListener.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Server.WebListener.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "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-beta6": { + "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-beta6": { + "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.Abstractions/1.0.0-beta6": { + "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.WebEncoders.Core/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Net.Http.Server/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Net.WebSockets": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Server.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Server.dll": {} + } + }, + "Microsoft.Net.WebSockets/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.WebSockets.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Kestrel/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta6", + "Microsoft.AspNet.Server.Kestrel": "1.0.0-beta6", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "lib/dnxcore50/Kestrel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Kestrel.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "System.IO": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta6", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Http": "1.0.0-beta6", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta6", + "Microsoft.Framework.Configuration": "1.0.0-beta6", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta6", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Newtonsoft.Json": "6.0.6", + "System.Console": "4.0.0-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta6", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta6", + "Microsoft.Net.Http.Headers": "1.0.0-beta6", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta6", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Globalization.Extensions": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Net.Primitives": "4.0.10-beta-23109", + "System.Net.WebSockets": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Security.Claims": "4.0.0-beta-23109", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23109", + "System.Security.Principal": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6", + "Microsoft.Net.Http.Headers": "1.0.0-beta6", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Net.Primitives": "4.0.10-beta-23109", + "System.Net.WebSockets": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Security.Claims": "4.0.0-beta-23109", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23109", + "System.Security.Principal": "4.0.0-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.Loader.IIS/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Hosting": "1.0.0-beta6", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6", + "Microsoft.Win32.Registry": "4.0.0-beta-23109", + "System.Diagnostics.Process": "4.0.0-beta-23109", + "System.Net.NetworkInformation": "4.0.10-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Security.Principal.Windows": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.ThreadPool": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Loader.IIS.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Loader.IIS.dll": {} + } + }, + "Microsoft.AspNet.Loader.IIS.Interop/1.0.0-beta6": {}, + "Microsoft.AspNet.Server.IIS/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Loader.IIS": "1.0.0-beta6", + "Microsoft.AspNet.Loader.IIS.Interop": "1.0.0-beta6" + } + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.TraceSource": "4.0.0-beta-23109", + "System.Diagnostics.Tracing": "4.0.20-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Net.Primitives": "4.0.10-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109", + "System.Threading.Thread": "4.0.0-beta-23109", + "System.Threading.ThreadPool": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.dll": {} + } + }, + "Microsoft.AspNet.Server.WebListener/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta6", + "Microsoft.Net.Http.Headers": "1.0.0-beta6", + "Microsoft.Net.Http.Server": "1.0.0-beta6", + "System.Security.Claims": "4.0.0-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Server.WebListener.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Server.WebListener.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Linq": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Ini.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Ini.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta6": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Contracts": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Globalization.Extensions": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Net.Http.Server/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Net.WebSockets": "1.0.0-beta6", + "Microsoft.Win32.Primitives": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Security.Claims": "4.0.0-beta-23109", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23109", + "System.Security.Principal.Windows": "4.0.0-beta-23109", + "System.Threading.Overlapped": "4.0.0-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Server.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Server.dll": {} + } + }, + "Microsoft.Net.WebSockets/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Contracts": "4.0.0-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Net.Primitives": "4.0.10-beta-23109", + "System.Net.WebSockets": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109", + "System.Threading.ThreadPool": "4.0.10-beta-23109", + "System.Threading.Timer": "4.0.0-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.WebSockets.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "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.Collections/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tracing": "4.0.20-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23109": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Console/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.0.0-beta-23109": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23109", + "Microsoft.Win32.Registry": "4.0.0-beta-23109", + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Security.SecureString": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109", + "System.Threading.Thread": "4.0.0-beta-23109", + "System.Threading.ThreadPool": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Overlapped": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23109": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Overlapped": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit": "4.0.0-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Net.NetworkInformation/4.0.10-beta-23109": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Net.NetworkInformation.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.NetworkInformation.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23109": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23109": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23109": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23109", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.0-beta-23109", + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tracing": "4.0.20-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23109", + "System.Security.Principal.Windows": "4.0.0-beta-23109", + "System.Security.SecureString": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Overlapped": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109", + "System.Threading.ThreadPool": "4.0.10-beta-23109" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23109": { + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23109": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Security.Principal": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "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-23109": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23109", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23109" + }, + "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-23109": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23109", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Globalization.Calendars": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Runtime.Numerics": "4.0.0-beta-23109", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23109", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23109", + "System.Security.Cryptography.RSA": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Claims": "4.0.0-beta-23109", + "System.Security.Principal": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23109": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + } + } + }, + "libraries": { + "Kestrel/1.0.0-beta6": { + "serviceable": true, + "sha512": "RTwIrran9aZVEzu727H1f7TL4ZRfaT7Ei9VG9INV4mqLCLWo42WkxJY3huPvGy6ojwgOwR45ZnXiNt1/IZJP9g==", + "files": [ + "Kestrel.1.0.0-beta6.nupkg", + "Kestrel.1.0.0-beta6.nupkg.sha512", + "Kestrel.nuspec", + "lib/dnx451/Kestrel.dll", + "lib/dnx451/Kestrel.xml", + "lib/dnxcore50/Kestrel.dll", + "lib/dnxcore50/Kestrel.xml", + "repo.json" + ] + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "05nIwAtRflvtHozdBlJ20uvWYtOxDlPbtKv13VIaOXbEnPfqm6WMI5yVGha5rst4KzX0M8jx+GSfkv0i2+wtaQ==", + "files": [ + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.xml", + "lib/net451/Microsoft.AspNet.DataProtection.Abstractions.dll", + "lib/net451/Microsoft.AspNet.DataProtection.Abstractions.xml", + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.DataProtection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "6SdDa7Fx/38scBkaOGySzkSMQhk58ERdzouVyxJ9FhhXph2MEMgSuqNACCgTOX6+zFl6ZUwJG0DphQ+iYv2jrw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll", + "lib/dnx451/Microsoft.AspNet.FeatureModel.xml", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.xml", + "Microsoft.AspNet.FeatureModel.1.0.0-beta6.nupkg", + "Microsoft.AspNet.FeatureModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.FeatureModel.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "KocyYqntJkcGv4//VyaolXixf/XRInce9xtvbgb7n3+UtKFDU/q0CvSV/8OoLhIoYxTvC61bQcyoCOg6AlSfTg==", + "files": [ + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.xml", + "lib/net45/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/net45/Microsoft.AspNet.FileProviders.Abstractions.xml", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta6": { + "serviceable": true, + "sha512": "jQR2r1ZMD80IG++gPq0YElidsvZUiauH6KImIXVM/TD3NGYNeksm97XbKV2r5hUGrTBYfqItmvWRuTCjW6io1Q==", + "files": [ + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.xml", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.xml", + "lib/net45/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/net45/Microsoft.AspNet.FileProviders.Physical.xml", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta6.nupkg", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Physical.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting/1.0.0-beta6": { + "serviceable": true, + "sha512": "q9MmbmxtnXdtWoJreTESNY/fNq2I2KSLD6XPg3vLnFK2qWvCBvNq29qVi67ft2bGLhjpxQLO0NYah4d1yhzpag==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Hosting.dll", + "lib/dnx451/Microsoft.AspNet.Hosting.xml", + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll", + "lib/dnxcore50/Microsoft.AspNet.Hosting.xml", + "Microsoft.AspNet.Hosting.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Hosting.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Hosting.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "gAqZ7jxzQroxKtbVU0Azwp05jt9DqdSYBnc7touWEms3vgS8AX16NU+l4OAPXKlAyKHsmy8P1JNM9zNbPD/kOA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.xml", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Hosting.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta6": { + "sha512": "iXOxv5XEBy/Hpq6ncoZ08qbrf55xiM1aZWyjiP9oASRqIAuHi9d5zh3ehsLKaiUQCfsfFozkPBoSwv7pRg/ZSQ==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.xml", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Hosting.Server.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http/1.0.0-beta6": { + "serviceable": true, + "sha512": "67oPgXxtKkenyJ6cQv1w5SFX1Iy9E5kGJ/nFLZb8y0NFq0q40VU+TSTaNksyAN/7NCLSdpXdZqLRIplkc/VdUw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.dll", + "lib/dnx451/Microsoft.AspNet.Http.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.xml", + "Microsoft.AspNet.Http.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "yb6WdoTelIHfgNuKzHp5uu4qHB7CyXAs+41PFyskNTkWn4TwCXzoCnpJV08X3n2GdjqMCzeb2U2FFafmeZxAkQ==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.xml", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta6": { + "serviceable": true, + "sha512": "Ad/hoYInYZLVJ0ch0jXCA4SXLo2AykwSrlr5c1l/9V2YCC4WHWwqFEMuS+3vIRMECHWbHuQJBz2HEcdPWrGoyw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll", + "lib/dnx451/Microsoft.AspNet.Http.Extensions.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.xml", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta6": { + "serviceable": true, + "sha512": "x9m0cW55Y5oFBCgD4Yqwfyu14kw0AkNm2UFgrdCpTy6h7GBaV2nc5sSx6SgoP4fwThco5gac29GpH8IBXOUeYA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.Features.dll", + "lib/dnx451/Microsoft.AspNet.Http.Features.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.Features.xml", + "Microsoft.AspNet.Http.Features.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Loader.IIS/1.0.0-beta6": { + "serviceable": true, + "sha512": "KgthERynEAHQDonKXUIbgDMO4K0/Z0sMr/RsgdHJ1B+0zu2FJNUmvcDqIxnqnGx0nGqpZdkZUV9bHvjsRsM+Jg==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Loader.IIS.dll", + "lib/dnx451/Microsoft.AspNet.Loader.IIS.xml", + "lib/dnxcore50/Microsoft.AspNet.Loader.IIS.dll", + "lib/dnxcore50/Microsoft.AspNet.Loader.IIS.xml", + "Microsoft.AspNet.Loader.IIS.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Loader.IIS.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Loader.IIS.nuspec" + ] + }, + "Microsoft.AspNet.Loader.IIS.Interop/1.0.0-beta6": { + "serviceable": true, + "sha512": "uHMUbBxd47RRMjgnRUulTcOfmF+O++DWcFtBg75uD+ZDMWfHqXKd8pSsaAVDa0PLfzye+bobYezPyAvzi742EA==", + "files": [ + "InteropAssemblies/amd64/Microsoft.AspNet.Loader.IIS.Interop.dll", + "InteropAssemblies/x86/Microsoft.AspNet.Loader.IIS.Interop.dll", + "Microsoft.AspNet.Loader.IIS.Interop.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Loader.IIS.Interop.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Loader.IIS.Interop.nuspec", + "tools/AspNet.Loader.dll" + ] + }, + "Microsoft.AspNet.Server.IIS/1.0.0-beta6": { + "sha512": "iQn5326ofZynrM27XTzd7+IPCg1ZxQT6N/UlhcBJCfBrOh5/MlKG5sHkyPoJFlkNqyuAo1QK+gTW8WibmOy6Zg==", + "files": [ + "Microsoft.AspNet.Server.IIS.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Server.IIS.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Server.IIS.nuspec" + ] + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta6": { + "serviceable": true, + "sha512": "L3NJgyFKcE6ZRIaXHytZyeElIn7MtVmJyQp/xKHeGMP8f3xtmQyqzu03tSvw2jPVD3fUvUxyTpbVYk2Vv2C17g==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll", + "lib/dnx451/Microsoft.AspNet.Server.Kestrel.xml", + "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.dll", + "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.xml", + "Microsoft.AspNet.Server.Kestrel.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Server.Kestrel.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Server.Kestrel.nuspec", + "native/darwin/universal/libuv.dylib", + "native/windows/amd64/libuv.dll", + "native/windows/x86/libuv.dll", + "repo.json" + ] + }, + "Microsoft.AspNet.Server.WebListener/1.0.0-beta6": { + "serviceable": true, + "sha512": "xQzHtacxFMlxfrcoIXjViThH6Qul6kDwwv+Dg4hkecvHar1aIoFehCr/cIeI24blqL4SSY6s5dZv/5R6fxjdaw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Server.WebListener.dll", + "lib/dnx451/Microsoft.AspNet.Server.WebListener.xml", + "lib/dnxcore50/Microsoft.AspNet.Server.WebListener.dll", + "lib/dnxcore50/Microsoft.AspNet.Server.WebListener.xml", + "Microsoft.AspNet.Server.WebListener.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Server.WebListener.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Server.WebListener.nuspec" + ] + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta6": { + "serviceable": true, + "sha512": "bLN5Nk0K9DB5trMtXUIrvNMxm+VKVPKcUHfM7mGBaKbBSARVvd5KIJTt+8Z9UF1IjjItd4/bV6gRTbo1Fo3/lw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll", + "lib/dnx451/Microsoft.AspNet.WebUtilities.xml", + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll", + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.xml", + "Microsoft.AspNet.WebUtilities.1.0.0-beta6.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta6": { + "serviceable": true, + "sha512": "9DX3AnuzuNl4QZLP/U/zkW03cASmOKJafcAXf1c/DUTJ7nRq9jUyVk9myJYd7+t0nmXXS1majXAHG3oQ/RGfTw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll", + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.xml", + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.dll", + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.xml", + "lib/net45/Microsoft.Framework.Configuration.CommandLine.dll", + "lib/net45/Microsoft.Framework.Configuration.CommandLine.xml", + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.CommandLine.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6": { + "serviceable": true, + "sha512": "wUYZglLlkxL6xpbOHv6TqeJeT3GwpOxNRw3gkWOpM7OVrhAORm1pWnQ4qA+kWs5RDXSEntv47dK95MIypfIWKQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "lib/net45/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/net45/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.EnvironmentVariables.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta6": { + "serviceable": true, + "sha512": "czas9Cge4+tptJ3TCA8TSFZBuXS7CAXvEJu6ssD467uZ2QHZF/1EF4aUnJs9BJ5cTZ8+/baROjXL1jVS+QVDuA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Ini.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Ini.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Ini.xml", + "lib/net45/Microsoft.Framework.Configuration.Ini.dll", + "lib/net45/Microsoft.Framework.Configuration.Ini.xml", + "Microsoft.Framework.Configuration.Ini.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Ini.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Ini.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "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-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "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-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "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-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta6": { + "sha512": "85K5j4jXSZxErwaNUrMMaq2O5sjPsW68fnCdSK8h88MZh04Bj0QAsk4yuRZG0nZlgn7He+k1H5XIWkMSLDXFKQ==", + "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-beta6.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "w4Cwg6jgPd3XFGOgBGU3GVGVAwUcMglSDTlI23M8uI7yhDRSDbxZ2HPbjTEBMoj+IYdkfunZWFdA67tdk8L8Tg==", + "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-beta6.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta6": { + "serviceable": true, + "sha512": "OvCNyGPZq645VdMzHZ8vLdlYIdl7KlZfVrCu+30DfwSCGV36ByJkUPHer3wU688jWFPx2S1OO7f82fJENYwz8Q==", + "files": [ + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll", + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.xml", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.xml", + "lib/net45/Microsoft.Framework.WebEncoders.Core.dll", + "lib/net45/Microsoft.Framework.WebEncoders.Core.xml", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta6.nupkg", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.WebEncoders.Core.nuspec", + "repo.json" + ] + }, + "Microsoft.Net.Http.Headers/1.0.0-beta6": { + "serviceable": true, + "sha512": "PeBHRiu9gSlP31Z1V3WEmIEb+1YJDdNdQY7xsSA98d3GnZqi+7ZERXVNcDDYMI16QViA/+Gq10HtYti8GwDHtQ==", + "files": [ + "lib/dnx451/Microsoft.Net.Http.Headers.dll", + "lib/dnx451/Microsoft.Net.Http.Headers.xml", + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll", + "lib/dnxcore50/Microsoft.Net.Http.Headers.xml", + "lib/net45/Microsoft.Net.Http.Headers.dll", + "lib/net45/Microsoft.Net.Http.Headers.xml", + "Microsoft.Net.Http.Headers.1.0.0-beta6.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-beta6.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec", + "repo.json" + ] + }, + "Microsoft.Net.Http.Server/1.0.0-beta6": { + "serviceable": true, + "sha512": "ytXaBXEyVs+G7SNVY6XCW0cr0r4gkTDKfVbgFrDoJkm7XvJCGUeY0QtGcvPREDpiPFVaLeKf2O9zDB2982YkGQ==", + "files": [ + "lib/dnx451/Microsoft.Net.Http.Server.dll", + "lib/dnx451/Microsoft.Net.Http.Server.xml", + "lib/dnxcore50/Microsoft.Net.Http.Server.dll", + "lib/dnxcore50/Microsoft.Net.Http.Server.xml", + "lib/net451/Microsoft.Net.Http.Server.dll", + "lib/net451/Microsoft.Net.Http.Server.xml", + "Microsoft.Net.Http.Server.1.0.0-beta6.nupkg", + "Microsoft.Net.Http.Server.1.0.0-beta6.nupkg.sha512", + "Microsoft.Net.Http.Server.nuspec" + ] + }, + "Microsoft.Net.WebSockets/1.0.0-beta6": { + "serviceable": true, + "sha512": "ofIfe5NTCeaWuq1cscQtgNa/rBlB4BnchgUx5h4oKmBTI1na7IoH9FRxI+Qfk3C3zFr4RUrz85SYsXPlH5gvLg==", + "files": [ + "lib/dnx451/Microsoft.Net.WebSockets.dll", + "lib/dnx451/Microsoft.Net.WebSockets.xml", + "lib/dnxcore50/Microsoft.Net.WebSockets.dll", + "lib/dnxcore50/Microsoft.Net.WebSockets.xml", + "lib/net451/Microsoft.Net.WebSockets.dll", + "lib/net451/Microsoft.Net.WebSockets.xml", + "Microsoft.Net.WebSockets.1.0.0-beta6.nupkg", + "Microsoft.Net.WebSockets.1.0.0-beta6.nupkg.sha512", + "Microsoft.Net.WebSockets.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "GsSRwzgrK2WJHUyd83AtKEX+Hv8ecmnwerJzinTXNqddsI48ClaeAyBgUnvRh5e/R8zzfIFqSHD1iEXSOSjAgQ==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23109.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23109.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/de/Microsoft.Win32.Primitives.xml", + "ref/dotnet/es/Microsoft.Win32.Primitives.xml", + "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", + "ref/dotnet/it/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "EGFd1xAy5TyB6zsOmyfWXcNUnPSX4+x1mNo923Y9Aerz5g8cm5ddv3730RWhbgHSNYQkakhA1M6pDtLJKkdkaw==", + "files": [ + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "Microsoft.Win32.Registry.4.0.0-beta-23109.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23109.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "ref/dotnet/de/Microsoft.Win32.Registry.xml", + "ref/dotnet/es/Microsoft.Win32.Registry.xml", + "ref/dotnet/fr/Microsoft.Win32.Registry.xml", + "ref/dotnet/it/Microsoft.Win32.Registry.xml", + "ref/dotnet/ja/Microsoft.Win32.Registry.xml", + "ref/dotnet/ko/Microsoft.Win32.Registry.xml", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/dotnet/Microsoft.Win32.Registry.xml", + "ref/dotnet/ru/Microsoft.Win32.Registry.xml", + "ref/dotnet/zh-hans/Microsoft.Win32.Registry.xml", + "ref/dotnet/zh-hant/Microsoft.Win32.Registry.xml", + "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.Collections/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "2/VX+2QEyyIpvGDzuIXX8V0vSl/Llt673DR48nNmeA6BoMuwL4Eu4F1Meh9fPp80nhcjifqVK8g7/UQDn/0PFw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23109.nupkg", + "System.Collections.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "fRXR5y4dg9zPovFpSQZkc6gnyMNlQJVQ8lKqPDPFSIelhqWxv2VyY87s5Vd9ViGwKrFwekDwCQFug9ny8qCHuA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Collections.Concurrent.xml", + "ref/dotnet/es/System.Collections.Concurrent.xml", + "ref/dotnet/fr/System.Collections.Concurrent.xml", + "ref/dotnet/it/System.Collections.Concurrent.xml", + "ref/dotnet/ja/System.Collections.Concurrent.xml", + "ref/dotnet/ko/System.Collections.Concurrent.xml", + "ref/dotnet/ru/System.Collections.Concurrent.xml", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/dotnet/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Z+VGG3YaL4PxuBn/Nbjul1OoaCBzvkylexTwIW6s8arj3c17XkCeJvZ1BIn66lzDpAQYMGZmv97UMT6OboRoVg==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/de/System.Collections.NonGeneric.xml", + "ref/dotnet/es/System.Collections.NonGeneric.xml", + "ref/dotnet/fr/System.Collections.NonGeneric.xml", + "ref/dotnet/it/System.Collections.NonGeneric.xml", + "ref/dotnet/ja/System.Collections.NonGeneric.xml", + "ref/dotnet/ko/System.Collections.NonGeneric.xml", + "ref/dotnet/ru/System.Collections.NonGeneric.xml", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", + "ref/net46/System.Collections.NonGeneric.dll", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "JFzHUvX28tQbud0c9AP+SFeOroBG9x7tgc0OYu0Z5nQotnIiwP5nHXq9DoK3N2y0MoRUt8jy2FwkRMAYgiQuNQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.ComponentModel.xml", + "ref/dotnet/es/System.ComponentModel.xml", + "ref/dotnet/fr/System.ComponentModel.xml", + "ref/dotnet/it/System.ComponentModel.xml", + "ref/dotnet/ja/System.ComponentModel.xml", + "ref/dotnet/ko/System.ComponentModel.xml", + "ref/dotnet/ru/System.ComponentModel.xml", + "ref/dotnet/System.ComponentModel.dll", + "ref/dotnet/System.ComponentModel.xml", + "ref/dotnet/zh-hans/System.ComponentModel.xml", + "ref/dotnet/zh-hant/System.ComponentModel.xml", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.0-beta-23109.nupkg", + "System.ComponentModel.4.0.0-beta-23109.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "M5Ac5DJJ/xUy5N/9XlyOYJ2Y+C0ZvajUcgcywvWJKSFXsGwTPGHkri5ajXnJ6aLjQYggUrzJJ/tQEsO2jxec9Q==", + "files": [ + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/dotnet/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/net46/_._", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23109.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23109.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec" + ] + }, + "System.Console/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "ytlRZBI9ZoHiGwmyOg9bGlxvuGQ72YjKsjMWVfMOS57pupJySse2FHIAFMM3RShpY1y36/IUYVDjoPsFKuRn0Q==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/de/System.Console.xml", + "ref/dotnet/es/System.Console.xml", + "ref/dotnet/fr/System.Console.xml", + "ref/dotnet/it/System.Console.xml", + "ref/dotnet/ja/System.Console.xml", + "ref/dotnet/ko/System.Console.xml", + "ref/dotnet/ru/System.Console.xml", + "ref/dotnet/System.Console.dll", + "ref/dotnet/System.Console.xml", + "ref/dotnet/zh-hans/System.Console.xml", + "ref/dotnet/zh-hant/System.Console.xml", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23109.nupkg", + "System.Console.4.0.0-beta-23109.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Diagnostics.Contracts/4.0.0-beta-23109": { + "sha512": "kvQ39S26PRGerulw6LayNGxleSvNB0koSkcoHqZQdf8YLbKWFYR84G8lZJr0uhPIKJrLiNw0VXvHa87bNHk8IQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Diagnostics.Contracts.xml", + "ref/dotnet/es/System.Diagnostics.Contracts.xml", + "ref/dotnet/fr/System.Diagnostics.Contracts.xml", + "ref/dotnet/it/System.Diagnostics.Contracts.xml", + "ref/dotnet/ja/System.Diagnostics.Contracts.xml", + "ref/dotnet/ko/System.Diagnostics.Contracts.xml", + "ref/dotnet/ru/System.Diagnostics.Contracts.xml", + "ref/dotnet/System.Diagnostics.Contracts.dll", + "ref/dotnet/System.Diagnostics.Contracts.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Contracts.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Contracts.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/netcore50/System.Diagnostics.Contracts.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll", + "System.Diagnostics.Contracts.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Contracts.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "woJsNwCtAqYac5zp+6Wy40HAp7kYr8zhaFvHl3gECjQf+VGeGYaHgDV1ATVcyMG1h6XvmX0wtmD5Qds51CRJoA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Process/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "FbuzE+g2I8NA9qxrcJ+aelA5oy53ZHt5oygIcT1hhI19vLIPzi/xZgjrIbXDjmZKtOC+laiuUwe3UlnMsytC7A==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Process.dll", + "lib/net46/System.Diagnostics.Process.dll", + "ref/dotnet/de/System.Diagnostics.Process.xml", + "ref/dotnet/es/System.Diagnostics.Process.xml", + "ref/dotnet/fr/System.Diagnostics.Process.xml", + "ref/dotnet/it/System.Diagnostics.Process.xml", + "ref/dotnet/ja/System.Diagnostics.Process.xml", + "ref/dotnet/ko/System.Diagnostics.Process.xml", + "ref/dotnet/ru/System.Diagnostics.Process.xml", + "ref/dotnet/System.Diagnostics.Process.dll", + "ref/dotnet/System.Diagnostics.Process.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Process.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Process.xml", + "ref/net46/System.Diagnostics.Process.dll", + "System.Diagnostics.Process.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Process.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Process.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6tFdP3p3SV6DZOagwW5ThfUF+zp5pUIyW4CY2K4B2RxV6HGVyY/8J2EuZGrcEP3wdO5fXnb9MmdOZa5Tn01Hmg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Diagnostics.Tools.xml", + "ref/dotnet/es/System.Diagnostics.Tools.xml", + "ref/dotnet/fr/System.Diagnostics.Tools.xml", + "ref/dotnet/it/System.Diagnostics.Tools.xml", + "ref/dotnet/ja/System.Diagnostics.Tools.xml", + "ref/dotnet/ko/System.Diagnostics.Tools.xml", + "ref/dotnet/ru/System.Diagnostics.Tools.xml", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/dotnet/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "UFzG2y1IMRlZ/13WWhkIJUJ0RpcK5XrNoSpZUfy7JxJhlliKeAvP06yXHXk6XECxizvIucE0EfE0MovKo07QiA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.TraceSource.dll", + "lib/net46/System.Diagnostics.TraceSource.dll", + "ref/dotnet/de/System.Diagnostics.TraceSource.xml", + "ref/dotnet/es/System.Diagnostics.TraceSource.xml", + "ref/dotnet/fr/System.Diagnostics.TraceSource.xml", + "ref/dotnet/it/System.Diagnostics.TraceSource.xml", + "ref/dotnet/ja/System.Diagnostics.TraceSource.xml", + "ref/dotnet/ko/System.Diagnostics.TraceSource.xml", + "ref/dotnet/ru/System.Diagnostics.TraceSource.xml", + "ref/dotnet/System.Diagnostics.TraceSource.dll", + "ref/dotnet/System.Diagnostics.TraceSource.xml", + "ref/dotnet/zh-hans/System.Diagnostics.TraceSource.xml", + "ref/dotnet/zh-hant/System.Diagnostics.TraceSource.xml", + "ref/net46/System.Diagnostics.TraceSource.dll", + "System.Diagnostics.TraceSource.4.0.0-beta-23109.nupkg", + "System.Diagnostics.TraceSource.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.TraceSource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "sNauLSBFewFLjULHeplEr7FCmmfPbcc1jfz1Mynjy445bYiP/IW1q9X14a//oV/uQG7p82S9qHyfPxoxmt3pxQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/de/System.Diagnostics.Tracing.xml", + "ref/dotnet/es/System.Diagnostics.Tracing.xml", + "ref/dotnet/fr/System.Diagnostics.Tracing.xml", + "ref/dotnet/it/System.Diagnostics.Tracing.xml", + "ref/dotnet/ja/System.Diagnostics.Tracing.xml", + "ref/dotnet/ko/System.Diagnostics.Tracing.xml", + "ref/dotnet/ru/System.Diagnostics.Tracing.xml", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23109": { + "sha512": "l4QNrgLmC4KHGLcfriJ2EmsM2j18xefJzCnLU6YqVdBFaYzsJGwqmHyIr4nqw9DBjdWEtzdHLEbvpLeEay0ZWQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23109.nupkg", + "System.Globalization.4.0.10-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23109": { + "sha512": "j8sJKMKIoGz7MoGNjaoaaQCTscTpSieB4tWAjlUTr8mWU2bwhvlLMiA4zjXlie+FsDmpB3Ts7iG+R4ppXgBfVA==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/de/System.Globalization.Calendars.xml", + "ref/dotnet/es/System.Globalization.Calendars.xml", + "ref/dotnet/fr/System.Globalization.Calendars.xml", + "ref/dotnet/it/System.Globalization.Calendars.xml", + "ref/dotnet/ja/System.Globalization.Calendars.xml", + "ref/dotnet/ko/System.Globalization.Calendars.xml", + "ref/dotnet/ru/System.Globalization.Calendars.xml", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hans/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hant/System.Globalization.Calendars.xml", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0-beta-23109.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Q0BD+jsPZFtcR5DMcyERM2TggHJm9fJNGIMypTTh/6i6jET/c0B1MPnOyOUrHIbLuYrEwyiKDNJz0yw7Ps3hbg==", + "files": [ + "lib/dotnet/System.Globalization.Extensions.dll", + "lib/net46/System.Globalization.Extensions.dll", + "ref/dotnet/de/System.Globalization.Extensions.xml", + "ref/dotnet/es/System.Globalization.Extensions.xml", + "ref/dotnet/fr/System.Globalization.Extensions.xml", + "ref/dotnet/it/System.Globalization.Extensions.xml", + "ref/dotnet/ja/System.Globalization.Extensions.xml", + "ref/dotnet/ko/System.Globalization.Extensions.xml", + "ref/dotnet/ru/System.Globalization.Extensions.xml", + "ref/dotnet/System.Globalization.Extensions.dll", + "ref/dotnet/System.Globalization.Extensions.xml", + "ref/dotnet/zh-hans/System.Globalization.Extensions.xml", + "ref/dotnet/zh-hant/System.Globalization.Extensions.xml", + "ref/net46/System.Globalization.Extensions.dll", + "System.Globalization.Extensions.4.0.0-beta-23109.nupkg", + "System.Globalization.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.Extensions.nuspec" + ] + }, + "System.IO/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "DVHSyfJO8mC9CpZFjjuaOWazALkWFnI6b/fqTQCjNe1dp2XasuvTRiV/qIOJB+uyDVex8sH8QMRUDS6ukimyLA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/de/System.IO.xml", + "ref/dotnet/es/System.IO.xml", + "ref/dotnet/fr/System.IO.xml", + "ref/dotnet/it/System.IO.xml", + "ref/dotnet/ja/System.IO.xml", + "ref/dotnet/ko/System.IO.xml", + "ref/dotnet/ru/System.IO.xml", + "ref/dotnet/System.IO.dll", + "ref/dotnet/System.IO.xml", + "ref/dotnet/zh-hans/System.IO.xml", + "ref/dotnet/zh-hant/System.IO.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23109.nupkg", + "System.IO.4.0.10-beta-23109.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "OusDe4B1/Q3BYY4QzNfztnyPPK9a1OGsQVZBg41C1bk8F2S3AOtXCx0GUwAfKbVxxS4dOdIgxWw1JN5m+IlpAA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/de/System.IO.FileSystem.xml", + "ref/dotnet/es/System.IO.FileSystem.xml", + "ref/dotnet/fr/System.IO.FileSystem.xml", + "ref/dotnet/it/System.IO.FileSystem.xml", + "ref/dotnet/ja/System.IO.FileSystem.xml", + "ref/dotnet/ko/System.IO.FileSystem.xml", + "ref/dotnet/ru/System.IO.FileSystem.xml", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.xml", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "1JFc6+hsLnlYgACgluhMi19zFkNruPgWoLDq30z7qMKgs3FZqShvXDZLTQ1Hk+cnenUoUU/8P8yRdmbdQaf4yg==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Z89LYjhXGyFYuJ5ohPTV3telH1sPugfnyzOM2GILpMAXGrG/KCMpFeLLNXQ9jaJXBmS5nT9xoGqt5hsSrscS/w==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/de/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/es/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/fr/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/it/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/ja/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/ko/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/ru/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Watcher.xml", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "System.IO.FileSystem.Watcher.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "cy+sQJW809QnFHIXt5Y/If45u362gwiNqHldnJS70l7VCjyR4Bo3UgZMZl+bowSupWxqXk69cwCQhRUyFu2hVw==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/de/System.Linq.Expressions.xml", + "ref/dotnet/es/System.Linq.Expressions.xml", + "ref/dotnet/fr/System.Linq.Expressions.xml", + "ref/dotnet/it/System.Linq.Expressions.xml", + "ref/dotnet/ja/System.Linq.Expressions.xml", + "ref/dotnet/ko/System.Linq.Expressions.xml", + "ref/dotnet/ru/System.Linq.Expressions.xml", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.xml", + "ref/dotnet/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet/zh-hant/System.Linq.Expressions.xml", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Net.NetworkInformation/4.0.10-beta-23109": { + "sha512": "TkUdQDV2wsRuXEA5eQ00T9ZR0TE9hXMw1Qt2n2Q71KDSRsLLte4HqqpwTL0PuTpW3uHwIUE5CdgczqESA05CbA==", + "files": [ + "lib/DNXCore50/System.Net.NetworkInformation.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Net.NetworkInformation.xml", + "ref/dotnet/es/System.Net.NetworkInformation.xml", + "ref/dotnet/fr/System.Net.NetworkInformation.xml", + "ref/dotnet/it/System.Net.NetworkInformation.xml", + "ref/dotnet/ja/System.Net.NetworkInformation.xml", + "ref/dotnet/ko/System.Net.NetworkInformation.xml", + "ref/dotnet/ru/System.Net.NetworkInformation.xml", + "ref/dotnet/System.Net.NetworkInformation.dll", + "ref/dotnet/System.Net.NetworkInformation.xml", + "ref/dotnet/zh-hans/System.Net.NetworkInformation.xml", + "ref/dotnet/zh-hant/System.Net.NetworkInformation.xml", + "ref/net46/_._", + "System.Net.NetworkInformation.4.0.10-beta-23109.nupkg", + "System.Net.NetworkInformation.4.0.10-beta-23109.nupkg.sha512", + "System.Net.NetworkInformation.nuspec" + ] + }, + "System.Net.Primitives/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "Btf+WQXkAQpm6rF/aeNhr8zXUCAsnZuHLVOzVIvnXS4wA32ZsmOa0iCnAjhVGAz7BNOYsjpvKWAHyxO58k+l3g==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/de/System.Net.Primitives.xml", + "ref/dotnet/es/System.Net.Primitives.xml", + "ref/dotnet/fr/System.Net.Primitives.xml", + "ref/dotnet/it/System.Net.Primitives.xml", + "ref/dotnet/ja/System.Net.Primitives.xml", + "ref/dotnet/ko/System.Net.Primitives.xml", + "ref/dotnet/ru/System.Net.Primitives.xml", + "ref/dotnet/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.xml", + "ref/dotnet/zh-hans/System.Net.Primitives.xml", + "ref/dotnet/zh-hant/System.Net.Primitives.xml", + "ref/net46/_._", + "System.Net.Primitives.4.0.10-beta-23109.nupkg", + "System.Net.Primitives.4.0.10-beta-23109.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.WebSockets/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "oeNoZE8gMn6cz+6cK6K2or4nKR+HUa0lxfgEd5UkFvnr6hwU2islJ+K9oRdm6u3sQVEHfQSAuBKSIBekKuBX2w==", + "files": [ + "lib/DNXCore50/System.Net.WebSockets.dll", + "lib/net46/System.Net.WebSockets.dll", + "ref/dotnet/de/System.Net.WebSockets.xml", + "ref/dotnet/es/System.Net.WebSockets.xml", + "ref/dotnet/fr/System.Net.WebSockets.xml", + "ref/dotnet/it/System.Net.WebSockets.xml", + "ref/dotnet/ja/System.Net.WebSockets.xml", + "ref/dotnet/ko/System.Net.WebSockets.xml", + "ref/dotnet/ru/System.Net.WebSockets.xml", + "ref/dotnet/System.Net.WebSockets.dll", + "ref/dotnet/System.Net.WebSockets.xml", + "ref/dotnet/zh-hans/System.Net.WebSockets.xml", + "ref/dotnet/zh-hant/System.Net.WebSockets.xml", + "ref/net46/System.Net.WebSockets.dll", + "System.Net.WebSockets.4.0.0-beta-23109.nupkg", + "System.Net.WebSockets.4.0.0-beta-23109.nupkg.sha512", + "System.Net.WebSockets.nuspec" + ] + }, + "System.ObjectModel/4.0.0-beta-23109": { + "sha512": "chuCWtLOjJx8LfaDeVB8KqP4NPjj03PUrXxRvkFuSk28hXdJZ6qWFwTICnvZGuvuHqkBFHAuKgFJqvdzp2s9xw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.ObjectModel.xml", + "ref/dotnet/es/System.ObjectModel.xml", + "ref/dotnet/fr/System.ObjectModel.xml", + "ref/dotnet/it/System.ObjectModel.xml", + "ref/dotnet/ja/System.ObjectModel.xml", + "ref/dotnet/ko/System.ObjectModel.xml", + "ref/dotnet/ru/System.ObjectModel.xml", + "ref/dotnet/System.ObjectModel.dll", + "ref/dotnet/System.ObjectModel.xml", + "ref/dotnet/zh-hans/System.ObjectModel.xml", + "ref/dotnet/zh-hant/System.ObjectModel.xml", + "ref/net45/_._", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ObjectModel.4.0.0-beta-23109.nupkg", + "System.ObjectModel.4.0.0-beta-23109.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Networking/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "xJxSwEnJe2lmzuahgRjQJY7WcPFFBp60d4TLY9LejGgBbR1yGiQo094nZPkVYChQTz3TtKayLvZZOdNVpONhKQ==", + "files": [ + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.4.0.0-beta-23109.nupkg", + "System.Private.Networking.4.0.0-beta-23109.nupkg.sha512", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "y6M7TxwDXBD2in5cCf+KzucZyx7YE7SJMcU24atzYnpwP2xFASUYCeI6NRg5bYcw2Do5HKBz+XdE9WiZrwpnFg==", + "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-23109.nupkg", + "System.Private.Uri.4.0.0-beta-23109.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23109": { + "sha512": "aeXO8gjPb46LaP727cXDcCZ2mZoMxguq2UhE25wJoO1Je8Q8D2JFonNk85oVlgXCdEM6XgrtRnsnhvj8PmTBNg==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/de/System.Reflection.xml", + "ref/dotnet/es/System.Reflection.xml", + "ref/dotnet/fr/System.Reflection.xml", + "ref/dotnet/it/System.Reflection.xml", + "ref/dotnet/ja/System.Reflection.xml", + "ref/dotnet/ko/System.Reflection.xml", + "ref/dotnet/ru/System.Reflection.xml", + "ref/dotnet/System.Reflection.dll", + "ref/dotnet/System.Reflection.xml", + "ref/dotnet/zh-hans/System.Reflection.xml", + "ref/dotnet/zh-hant/System.Reflection.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23109.nupkg", + "System.Reflection.4.0.10-beta-23109.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "sha512": "zH69GCp68Ad8KCHev6Qu7DDqg5VzqzoXeJDthGHqB3oAkqBDTwNRVTo2NUY84kOINdQTnYvD0xlEMqE7heOMyg==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/de/System.Reflection.Emit.xml", + "ref/dotnet/es/System.Reflection.Emit.xml", + "ref/dotnet/fr/System.Reflection.Emit.xml", + "ref/dotnet/it/System.Reflection.Emit.xml", + "ref/dotnet/ja/System.Reflection.Emit.xml", + "ref/dotnet/ko/System.Reflection.Emit.xml", + "ref/dotnet/ru/System.Reflection.Emit.xml", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.xml", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "sha512": "tJO27blFXyvYwDLbK7GvgFC94XjeY6MnRitBI4w8LHfEc/gVdRmCC8gzkE8KEmkecnIWIt9VTSJ3p4lGgafKKA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/wp80/_._", + "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/net45/_._", + "ref/wp80/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "sXo3+qJ7TukCF/rDFYKjEog4iVb75dXJztu/lkvhMHgYnviPSbi9zg78FQUFhB6BOvntwnknrgNJhhtl3x9a7A==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Extensions.xml", + "ref/dotnet/es/System.Reflection.Extensions.xml", + "ref/dotnet/fr/System.Reflection.Extensions.xml", + "ref/dotnet/it/System.Reflection.Extensions.xml", + "ref/dotnet/ja/System.Reflection.Extensions.xml", + "ref/dotnet/ko/System.Reflection.Extensions.xml", + "ref/dotnet/ru/System.Reflection.Extensions.xml", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/dotnet/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "R5oBDNgUtSV9KTPCxwHWiTyryX/9mngnPbLWwFOEF5xcNd3Qlu6/3LiauGsIzGtXV8vOpRl9tfyIFy8t4ix4Gw==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Primitives.xml", + "ref/dotnet/es/System.Reflection.Primitives.xml", + "ref/dotnet/fr/System.Reflection.Primitives.xml", + "ref/dotnet/it/System.Reflection.Primitives.xml", + "ref/dotnet/ja/System.Reflection.Primitives.xml", + "ref/dotnet/ko/System.Reflection.Primitives.xml", + "ref/dotnet/ru/System.Reflection.Primitives.xml", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "lTuPMxeoT/Jqb1QtsIuSomLiJpQP3Y4DqqxLPncrMvLrejwdF25QSbhXdx5twgvBDqwSVL8wYtqiOqKe02u7FA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/de/System.Reflection.TypeExtensions.xml", + "ref/dotnet/es/System.Reflection.TypeExtensions.xml", + "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", + "ref/dotnet/it/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "6usAb6nZEPKugl3z5JR/RZrouH5/340n3tM0lhRfxVE/k3B3Sfh/sHSPiAOorrZgGm4cIDDhXTCGJQSWYphu3g==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/de/System.Runtime.xml", + "ref/dotnet/es/System.Runtime.xml", + "ref/dotnet/fr/System.Runtime.xml", + "ref/dotnet/it/System.Runtime.xml", + "ref/dotnet/ja/System.Runtime.xml", + "ref/dotnet/ko/System.Runtime.xml", + "ref/dotnet/ru/System.Runtime.xml", + "ref/dotnet/System.Runtime.dll", + "ref/dotnet/System.Runtime.xml", + "ref/dotnet/zh-hans/System.Runtime.xml", + "ref/dotnet/zh-hant/System.Runtime.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23109.nupkg", + "System.Runtime.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "JkRMtSY5YFGhP9eY7ZFIj40Ha5lGOwSxrk90k0ZAuIFn6qEPNe0NKu/C8laV7Cqy4Lv5IYzkVUGrfOqg3MOG9A==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/de/System.Runtime.Extensions.xml", + "ref/dotnet/es/System.Runtime.Extensions.xml", + "ref/dotnet/fr/System.Runtime.Extensions.xml", + "ref/dotnet/it/System.Runtime.Extensions.xml", + "ref/dotnet/ja/System.Runtime.Extensions.xml", + "ref/dotnet/ko/System.Runtime.Extensions.xml", + "ref/dotnet/ru/System.Runtime.Extensions.xml", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "XfjBv5hxBDVXvgPzBXiMpHprnmd5trdBAG4o7DEi/3GPXIlety4G0sfmlxeiTr7njKr0wF4ERdLIfzPesS5PAw==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "fxRLTR5kbqOZuSeT5ggVBYc6HIEGmEwh+Uw1ijp2qD3yMiMPmxvtI5aP5t0yZHEmwUrB37lGB+oaPpcXLH5Feg==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/de/System.Runtime.InteropServices.xml", + "ref/dotnet/es/System.Runtime.InteropServices.xml", + "ref/dotnet/fr/System.Runtime.InteropServices.xml", + "ref/dotnet/it/System.Runtime.InteropServices.xml", + "ref/dotnet/ja/System.Runtime.InteropServices.xml", + "ref/dotnet/ko/System.Runtime.InteropServices.xml", + "ref/dotnet/ru/System.Runtime.InteropServices.xml", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "l4yWLk7mSm1eUWuZRJaQ5jfPE67GI9DNR6hAKc3Dr3QnwzlzH0zyOqF1wY+2Jo0402LS+std02n2aLvbNNjQFg==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Runtime.Numerics.xml", + "ref/dotnet/es/System.Runtime.Numerics.xml", + "ref/dotnet/fr/System.Runtime.Numerics.xml", + "ref/dotnet/it/System.Runtime.Numerics.xml", + "ref/dotnet/ja/System.Runtime.Numerics.xml", + "ref/dotnet/ko/System.Runtime.Numerics.xml", + "ref/dotnet/ru/System.Runtime.Numerics.xml", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/dotnet/System.Runtime.Numerics.xml", + "ref/dotnet/zh-hans/System.Runtime.Numerics.xml", + "ref/dotnet/zh-hant/System.Runtime.Numerics.xml", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "System.Runtime.Numerics.4.0.0-beta-23109.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Security.Claims/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6oI/9RzVy/6AVHRzuSm9oOOm3O/iS+pWDby0YTuepAtW7aT1VZiYbar0Nzi7wUJLIE+EuUWgGUgVQni0inIUSw==", + "files": [ + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/de/System.Security.Claims.xml", + "ref/dotnet/es/System.Security.Claims.xml", + "ref/dotnet/fr/System.Security.Claims.xml", + "ref/dotnet/it/System.Security.Claims.xml", + "ref/dotnet/ja/System.Security.Claims.xml", + "ref/dotnet/ko/System.Security.Claims.xml", + "ref/dotnet/ru/System.Security.Claims.xml", + "ref/dotnet/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.xml", + "ref/dotnet/zh-hans/System.Security.Claims.xml", + "ref/dotnet/zh-hant/System.Security.Claims.xml", + "ref/net46/System.Security.Claims.dll", + "System.Security.Claims.4.0.0-beta-23109.nupkg", + "System.Security.Claims.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "mEzuexl2Wn+c0RHiPNlsuUecqV1lQ9Z005vcbFHec36zEGEbshbmiiGBZQWE2Gmb9ddINAo6Ob6NnUVAWSpw4A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/de/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/es/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/fr/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/it/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/ja/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/ko/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/ru/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "System.Security.Cryptography.Encoding.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Lewf25aZTItYvFz8RtCFdNAniNQ737gkTPU9IObuzbOeX8MMGHRf9Le4AQ2SdkTTTljjhebGybF5KCKZ784DLA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/de/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/es/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/fr/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/it/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/ja/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/ko/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/ru/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Encryption.xml", + "ref/net46/System.Security.Cryptography.Encryption.dll", + "System.Security.Cryptography.Encryption.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "aW1iD9qY229C8gvnebG/drLk3ed7n7zb7yXNtr7KCE7xFOh+rIbZ7xEEn+yP7zP12iUsdV4NlKTvZva2kklmGg==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/de/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/es/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/fr/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/it/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/ja/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/ko/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/ru/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Hashing.xml", + "ref/net46/System.Security.Cryptography.Hashing.dll", + "System.Security.Cryptography.Hashing.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "ilSnV4VGW2z8nUKRIs/OrpmtgFV5qZoRie6mdPKdk8Xl6dqkl/MiCu7Z5glJ+PxPq6sGo9M9pmDehTKLjekIFw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/de/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/es/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/fr/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/it/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/ja/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/ko/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/ru/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "eBEb851icqj4elt5iPbiO6cnLflOWr0tRRHEq/ekxr1P2zNkI2TntVWC+lu5MOYgRj92XRNt2H+pCootjKruMw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/de/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/es/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/fr/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/it/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/ja/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/ko/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/ru/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "sGincwuZQugP8U3hlzYbRoJ2zKZGZ2dJ/EAQ/pKryCOIlFDur18oXjRvOvTT010Yt7Y/psjCbQlHRmA8EvEKHQ==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/de/System.Security.Cryptography.RSA.xml", + "ref/dotnet/es/System.Security.Cryptography.RSA.xml", + "ref/dotnet/fr/System.Security.Cryptography.RSA.xml", + "ref/dotnet/it/System.Security.Cryptography.RSA.xml", + "ref/dotnet/ja/System.Security.Cryptography.RSA.xml", + "ref/dotnet/ko/System.Security.Cryptography.RSA.xml", + "ref/dotnet/ru/System.Security.Cryptography.RSA.xml", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.RSA.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.RSA.xml", + "ref/net46/System.Security.Cryptography.RSA.dll", + "System.Security.Cryptography.RSA.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "/N8VmWLwPrb17IFAdOdRzJ578wNYl5rIlbcBNQzabO4EVm1S72WOBWlpyKbCFeS1ejO1S+x4RMc99XQ2jLBj/A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/de/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/es/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/it/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "j94G8UrhEtW+RigEzZkayd9fcT9v/J35/V+rGzm6vmRjLE4e12+jwFUqFC9ZowElO4ZqaCoBgxu7uogHRmrKbQ==", + "files": [ + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Security.Principal.xml", + "ref/dotnet/es/System.Security.Principal.xml", + "ref/dotnet/fr/System.Security.Principal.xml", + "ref/dotnet/it/System.Security.Principal.xml", + "ref/dotnet/ja/System.Security.Principal.xml", + "ref/dotnet/ko/System.Security.Principal.xml", + "ref/dotnet/ru/System.Security.Principal.xml", + "ref/dotnet/System.Security.Principal.dll", + "ref/dotnet/System.Security.Principal.xml", + "ref/dotnet/zh-hans/System.Security.Principal.xml", + "ref/dotnet/zh-hant/System.Security.Principal.xml", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Security.Principal.4.0.0-beta-23109.nupkg", + "System.Security.Principal.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "/u7MPH/6bERVU88hsQJFoxva/OnPcS5fUrzj8OWH016zKnUElOVq76GoUdghmN5HCAmRpjqmryvZLt8+b2mrjQ==", + "files": [ + "lib/DNXCore50/System.Security.Principal.Windows.dll", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/dotnet/de/System.Security.Principal.Windows.xml", + "ref/dotnet/es/System.Security.Principal.Windows.xml", + "ref/dotnet/fr/System.Security.Principal.Windows.xml", + "ref/dotnet/it/System.Security.Principal.Windows.xml", + "ref/dotnet/ja/System.Security.Principal.Windows.xml", + "ref/dotnet/ko/System.Security.Principal.Windows.xml", + "ref/dotnet/ru/System.Security.Principal.Windows.xml", + "ref/dotnet/System.Security.Principal.Windows.dll", + "ref/dotnet/System.Security.Principal.Windows.xml", + "ref/dotnet/zh-hans/System.Security.Principal.Windows.xml", + "ref/dotnet/zh-hant/System.Security.Principal.Windows.xml", + "ref/net46/System.Security.Principal.Windows.dll", + "System.Security.Principal.Windows.4.0.0-beta-23109.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Principal.Windows.nuspec" + ] + }, + "System.Security.SecureString/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "ZRmBb18JXF2sfEop6zESpMH+yCPnr3lPfB3o7pyU4hnoMPIzwGJq8T9pIWG0y1x+fB1RtsaXUXPf3T1ACR2T5w==", + "files": [ + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/de/System.Security.SecureString.xml", + "ref/dotnet/es/System.Security.SecureString.xml", + "ref/dotnet/fr/System.Security.SecureString.xml", + "ref/dotnet/it/System.Security.SecureString.xml", + "ref/dotnet/ja/System.Security.SecureString.xml", + "ref/dotnet/ko/System.Security.SecureString.xml", + "ref/dotnet/ru/System.Security.SecureString.xml", + "ref/dotnet/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.xml", + "ref/dotnet/zh-hans/System.Security.SecureString.xml", + "ref/dotnet/zh-hant/System.Security.SecureString.xml", + "ref/net46/System.Security.SecureString.dll", + "System.Security.SecureString.4.0.0-beta-23109.nupkg", + "System.Security.SecureString.4.0.0-beta-23109.nupkg.sha512", + "System.Security.SecureString.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "sha512": "oymPt96KPPXO/Scxow+x8cKczVw0KXfExKTXQlwT+j3sS1j/JuV+rZq2sQ54fqOi2R4d9aFPESsoN830sA6VCw==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/de/System.Text.Encoding.xml", + "ref/dotnet/es/System.Text.Encoding.xml", + "ref/dotnet/fr/System.Text.Encoding.xml", + "ref/dotnet/it/System.Text.Encoding.xml", + "ref/dotnet/ja/System.Text.Encoding.xml", + "ref/dotnet/ko/System.Text.Encoding.xml", + "ref/dotnet/ru/System.Text.Encoding.xml", + "ref/dotnet/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "sha512": "F6GZqICZ654MsqVPCL8h+fvDZJmXnu1I1PYY9686yG+lbcZzs9aavqMUjv1Lu5wOdiTKnmn7LADZYzPD6y1p+w==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/de/System.Text.Encoding.Extensions.xml", + "ref/dotnet/es/System.Text.Encoding.Extensions.xml", + "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", + "ref/dotnet/it/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "F+tfzB34KhZnjS3ActdL57CQVD9oYGhAZm8AREL+KvbJTh1Y8/tlyCyI2xoH6KdJzIPcXC50yu4OkHNbpcutEw==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Text.RegularExpressions.xml", + "ref/dotnet/es/System.Text.RegularExpressions.xml", + "ref/dotnet/fr/System.Text.RegularExpressions.xml", + "ref/dotnet/it/System.Text.RegularExpressions.xml", + "ref/dotnet/ja/System.Text.RegularExpressions.xml", + "ref/dotnet/ko/System.Text.RegularExpressions.xml", + "ref/dotnet/ru/System.Text.RegularExpressions.xml", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/dotnet/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "TSViw+K20yh9DmwzZpvuCUc2m2ju1eVAJ10pTw2gB/aP4kkrX2nGf4A9BkwkxupPXFA2OtO9LbbEqdp4YbBnjQ==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/de/System.Threading.xml", + "ref/dotnet/es/System.Threading.xml", + "ref/dotnet/fr/System.Threading.xml", + "ref/dotnet/it/System.Threading.xml", + "ref/dotnet/ja/System.Threading.xml", + "ref/dotnet/ko/System.Threading.xml", + "ref/dotnet/ru/System.Threading.xml", + "ref/dotnet/System.Threading.dll", + "ref/dotnet/System.Threading.xml", + "ref/dotnet/zh-hans/System.Threading.xml", + "ref/dotnet/zh-hant/System.Threading.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23109.nupkg", + "System.Threading.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "IMVmv9x4lBiy+jz31dU7KT/aTDlKZabAEDFAxQOTv//v1RYu5XZXZLIiTZqyVUKxxHgB0PUnuSDl5VxUDKysfQ==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/de/System.Threading.Overlapped.xml", + "ref/dotnet/es/System.Threading.Overlapped.xml", + "ref/dotnet/fr/System.Threading.Overlapped.xml", + "ref/dotnet/it/System.Threading.Overlapped.xml", + "ref/dotnet/ja/System.Threading.Overlapped.xml", + "ref/dotnet/ko/System.Threading.Overlapped.xml", + "ref/dotnet/ru/System.Threading.Overlapped.xml", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "J7lBqLLy1A85KZUgFz0fS8u6BO+pnWun2OAkrNqcUQbgCiKDC9v92u9q6a6AB9znum+GCdzH3cyEftNtIVNd1Q==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/de/System.Threading.Tasks.xml", + "ref/dotnet/es/System.Threading.Tasks.xml", + "ref/dotnet/fr/System.Threading.Tasks.xml", + "ref/dotnet/it/System.Threading.Tasks.xml", + "ref/dotnet/ja/System.Threading.Tasks.xml", + "ref/dotnet/ko/System.Threading.Tasks.xml", + "ref/dotnet/ru/System.Threading.Tasks.xml", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.xml", + "ref/dotnet/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet/zh-hant/System.Threading.Tasks.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23109": { + "sha512": "pOob5Fz4cRJ/bfBs2+ehmS99VGCN5Ei2mf7bl17STagcDGHUZBAzVLz8Kamq0hwQGX2pCFkuUZH+2Ycdts2PSQ==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/de/System.Threading.Thread.xml", + "ref/dotnet/es/System.Threading.Thread.xml", + "ref/dotnet/fr/System.Threading.Thread.xml", + "ref/dotnet/it/System.Threading.Thread.xml", + "ref/dotnet/ja/System.Threading.Thread.xml", + "ref/dotnet/ko/System.Threading.Thread.xml", + "ref/dotnet/ru/System.Threading.Thread.xml", + "ref/dotnet/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.xml", + "ref/dotnet/zh-hans/System.Threading.Thread.xml", + "ref/dotnet/zh-hant/System.Threading.Thread.xml", + "ref/net46/System.Threading.Thread.dll", + "System.Threading.Thread.4.0.0-beta-23109.nupkg", + "System.Threading.Thread.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23109": { + "sha512": "+PySIYrGo5TYk6/+SUq84cnhaJ/12z1DgguacLOjixDn7e1qVo8g2zSk/APEZFqj3CEE5OvGmYPhWPXgRaAgyw==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/de/System.Threading.ThreadPool.xml", + "ref/dotnet/es/System.Threading.ThreadPool.xml", + "ref/dotnet/fr/System.Threading.ThreadPool.xml", + "ref/dotnet/it/System.Threading.ThreadPool.xml", + "ref/dotnet/ja/System.Threading.ThreadPool.xml", + "ref/dotnet/ko/System.Threading.ThreadPool.xml", + "ref/dotnet/ru/System.Threading.ThreadPool.xml", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.xml", + "ref/dotnet/zh-hans/System.Threading.ThreadPool.xml", + "ref/dotnet/zh-hant/System.Threading.ThreadPool.xml", + "ref/net46/System.Threading.ThreadPool.dll", + "System.Threading.ThreadPool.4.0.10-beta-23109.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.0-beta-23109": { + "sha512": "m0IORsRdO5kQqdA3C1EGLvD3NPaAj+B0FaM0KnAj0Cxg53baGGmYpNwh6mPf4sB8Pl4VBUtVaxlLN18MuyNQKQ==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Threading.Timer.xml", + "ref/dotnet/es/System.Threading.Timer.xml", + "ref/dotnet/fr/System.Threading.Timer.xml", + "ref/dotnet/it/System.Threading.Timer.xml", + "ref/dotnet/ja/System.Threading.Timer.xml", + "ref/dotnet/ko/System.Threading.Timer.xml", + "ref/dotnet/ru/System.Threading.Timer.xml", + "ref/dotnet/System.Threading.Timer.dll", + "ref/dotnet/System.Threading.Timer.xml", + "ref/dotnet/zh-hans/System.Threading.Timer.xml", + "ref/dotnet/zh-hant/System.Threading.Timer.xml", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/win81/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.0-beta-23109.nupkg", + "System.Threading.Timer.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.Server.IIS >= 1.0.0-beta6", + "Microsoft.AspNet.Server.WebListener >= 1.0.0-beta6", + "Microsoft.AspNet.WebSockets.Server >= 1.0.0-beta6", + "Kestrel >= 1.0.0-beta6" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [] + } +} \ No newline at end of file diff --git a/test/Microsoft.AspNet.WebSockets.Client.Test/project.json b/test/Microsoft.AspNet.WebSockets.Client.Test/project.json index c0d28348..6a98f5eb 100644 --- a/test/Microsoft.AspNet.WebSockets.Client.Test/project.json +++ b/test/Microsoft.AspNet.WebSockets.Client.Test/project.json @@ -1,15 +1,15 @@ { "dependencies": { - "Microsoft.AspNet.WebSockets.Protocol": "1.0.0-*", - "Microsoft.AspNet.WebSockets.Client": "1.0.0-*", - "Microsoft.AspNet.WebSockets.Server": "1.0.0-*", - "Kestrel": "1.0.0-*", - "xunit.runner.aspnet": "2.0.0-aspnet-*" + "Microsoft.AspNet.WebSockets.Protocol": "1.0.0-beta6", + "Microsoft.AspNet.WebSockets.Client": "1.0.0-beta6", + "Microsoft.AspNet.WebSockets.Server": "1.0.0-beta6", + "Kestrel": "1.0.0-beta6", + "xunit.runner.aspnet": "2.0.0-aspnet-beta6" }, "frameworks": { - "dnx451": { } + "dnx451": {} }, "commands": { "test": "xunit.runner.aspnet" } -} +} \ No newline at end of file diff --git a/test/Microsoft.AspNet.WebSockets.Client.Test/project.lock.json b/test/Microsoft.AspNet.WebSockets.Client.Test/project.lock.json new file mode 100644 index 00000000..36137134 --- /dev/null +++ b/test/Microsoft.AspNet.WebSockets.Client.Test/project.lock.json @@ -0,0 +1,1247 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Kestrel/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta6", + "Microsoft.AspNet.Server.Kestrel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Kestrel.dll": {} + }, + "runtime": { + "lib/dnx451/Kestrel.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta6", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Http": "1.0.0-beta6", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta6", + "Microsoft.Framework.Configuration": "1.0.0-beta6", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta6", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta6", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta6", + "Microsoft.Net.Http.Headers": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta6", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6", + "Microsoft.Net.Http.Headers": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "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-beta6": { + "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-beta6": { + "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-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta6" + }, + "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-beta6": { + "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-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + }, + "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-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + }, + "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-beta6": { + "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-beta6": { + "dependencies": { + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Runtime": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.TestAdapter": "1.0.0-beta6", + "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": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.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-beta6": { + "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-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.TestHost": "1.0.0-beta6", + "xunit.assert": "2.0.0-rc3-build2880", + "xunit.execution.AspNet": "2.0.0-aspnet-beta6", + "xunit.runner.utility.AspNet": "2.0.0-aspnet-beta6" + }, + "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-beta6": { + "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": { + "Kestrel/1.0.0-beta6": { + "serviceable": true, + "sha512": "RTwIrran9aZVEzu727H1f7TL4ZRfaT7Ei9VG9INV4mqLCLWo42WkxJY3huPvGy6ojwgOwR45ZnXiNt1/IZJP9g==", + "files": [ + "Kestrel.1.0.0-beta6.nupkg", + "Kestrel.1.0.0-beta6.nupkg.sha512", + "Kestrel.nuspec", + "lib/dnx451/Kestrel.dll", + "lib/dnx451/Kestrel.xml", + "lib/dnxcore50/Kestrel.dll", + "lib/dnxcore50/Kestrel.xml", + "repo.json" + ] + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "6SdDa7Fx/38scBkaOGySzkSMQhk58ERdzouVyxJ9FhhXph2MEMgSuqNACCgTOX6+zFl6ZUwJG0DphQ+iYv2jrw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll", + "lib/dnx451/Microsoft.AspNet.FeatureModel.xml", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.xml", + "Microsoft.AspNet.FeatureModel.1.0.0-beta6.nupkg", + "Microsoft.AspNet.FeatureModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.FeatureModel.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "KocyYqntJkcGv4//VyaolXixf/XRInce9xtvbgb7n3+UtKFDU/q0CvSV/8OoLhIoYxTvC61bQcyoCOg6AlSfTg==", + "files": [ + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.xml", + "lib/net45/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/net45/Microsoft.AspNet.FileProviders.Abstractions.xml", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta6": { + "serviceable": true, + "sha512": "jQR2r1ZMD80IG++gPq0YElidsvZUiauH6KImIXVM/TD3NGYNeksm97XbKV2r5hUGrTBYfqItmvWRuTCjW6io1Q==", + "files": [ + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.xml", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.xml", + "lib/net45/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/net45/Microsoft.AspNet.FileProviders.Physical.xml", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta6.nupkg", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Physical.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting/1.0.0-beta6": { + "serviceable": true, + "sha512": "q9MmbmxtnXdtWoJreTESNY/fNq2I2KSLD6XPg3vLnFK2qWvCBvNq29qVi67ft2bGLhjpxQLO0NYah4d1yhzpag==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Hosting.dll", + "lib/dnx451/Microsoft.AspNet.Hosting.xml", + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll", + "lib/dnxcore50/Microsoft.AspNet.Hosting.xml", + "Microsoft.AspNet.Hosting.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Hosting.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Hosting.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "gAqZ7jxzQroxKtbVU0Azwp05jt9DqdSYBnc7touWEms3vgS8AX16NU+l4OAPXKlAyKHsmy8P1JNM9zNbPD/kOA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.xml", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Hosting.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta6": { + "sha512": "iXOxv5XEBy/Hpq6ncoZ08qbrf55xiM1aZWyjiP9oASRqIAuHi9d5zh3ehsLKaiUQCfsfFozkPBoSwv7pRg/ZSQ==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.xml", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Hosting.Server.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http/1.0.0-beta6": { + "serviceable": true, + "sha512": "67oPgXxtKkenyJ6cQv1w5SFX1Iy9E5kGJ/nFLZb8y0NFq0q40VU+TSTaNksyAN/7NCLSdpXdZqLRIplkc/VdUw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.dll", + "lib/dnx451/Microsoft.AspNet.Http.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.xml", + "Microsoft.AspNet.Http.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "yb6WdoTelIHfgNuKzHp5uu4qHB7CyXAs+41PFyskNTkWn4TwCXzoCnpJV08X3n2GdjqMCzeb2U2FFafmeZxAkQ==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.xml", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta6": { + "serviceable": true, + "sha512": "Ad/hoYInYZLVJ0ch0jXCA4SXLo2AykwSrlr5c1l/9V2YCC4WHWwqFEMuS+3vIRMECHWbHuQJBz2HEcdPWrGoyw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll", + "lib/dnx451/Microsoft.AspNet.Http.Extensions.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.xml", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta6": { + "serviceable": true, + "sha512": "x9m0cW55Y5oFBCgD4Yqwfyu14kw0AkNm2UFgrdCpTy6h7GBaV2nc5sSx6SgoP4fwThco5gac29GpH8IBXOUeYA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.Features.dll", + "lib/dnx451/Microsoft.AspNet.Http.Features.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.Features.xml", + "Microsoft.AspNet.Http.Features.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta6": { + "serviceable": true, + "sha512": "L3NJgyFKcE6ZRIaXHytZyeElIn7MtVmJyQp/xKHeGMP8f3xtmQyqzu03tSvw2jPVD3fUvUxyTpbVYk2Vv2C17g==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll", + "lib/dnx451/Microsoft.AspNet.Server.Kestrel.xml", + "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.dll", + "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.xml", + "Microsoft.AspNet.Server.Kestrel.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Server.Kestrel.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Server.Kestrel.nuspec", + "native/darwin/universal/libuv.dylib", + "native/windows/amd64/libuv.dll", + "native/windows/x86/libuv.dll", + "repo.json" + ] + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta6": { + "serviceable": true, + "sha512": "bLN5Nk0K9DB5trMtXUIrvNMxm+VKVPKcUHfM7mGBaKbBSARVvd5KIJTt+8Z9UF1IjjItd4/bV6gRTbo1Fo3/lw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll", + "lib/dnx451/Microsoft.AspNet.WebUtilities.xml", + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll", + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.xml", + "Microsoft.AspNet.WebUtilities.1.0.0-beta6.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta6": { + "serviceable": true, + "sha512": "9DX3AnuzuNl4QZLP/U/zkW03cASmOKJafcAXf1c/DUTJ7nRq9jUyVk9myJYd7+t0nmXXS1majXAHG3oQ/RGfTw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll", + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.xml", + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.dll", + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.xml", + "lib/net45/Microsoft.Framework.Configuration.CommandLine.dll", + "lib/net45/Microsoft.Framework.Configuration.CommandLine.xml", + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.CommandLine.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6": { + "serviceable": true, + "sha512": "wUYZglLlkxL6xpbOHv6TqeJeT3GwpOxNRw3gkWOpM7OVrhAORm1pWnQ4qA+kWs5RDXSEntv47dK95MIypfIWKQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "lib/net45/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/net45/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.EnvironmentVariables.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta6": { + "serviceable": true, + "sha512": "czas9Cge4+tptJ3TCA8TSFZBuXS7CAXvEJu6ssD467uZ2QHZF/1EF4aUnJs9BJ5cTZ8+/baROjXL1jVS+QVDuA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Ini.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Ini.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Ini.xml", + "lib/net45/Microsoft.Framework.Configuration.Ini.dll", + "lib/net45/Microsoft.Framework.Configuration.Ini.xml", + "Microsoft.Framework.Configuration.Ini.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Ini.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Ini.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "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-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "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-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "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-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta6": { + "sha512": "85K5j4jXSZxErwaNUrMMaq2O5sjPsW68fnCdSK8h88MZh04Bj0QAsk4yuRZG0nZlgn7He+k1H5XIWkMSLDXFKQ==", + "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-beta6.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta6": { + "serviceable": true, + "sha512": "mFE984JJush0TlSoLzDNwwHl18aEWons1JuPDTpMYVBOIbNmlQdBFhhKYGQbGWDruadjcaHm7YJL0b546CKwvA==", + "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-beta6.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "w4Cwg6jgPd3XFGOgBGU3GVGVAwUcMglSDTlI23M8uI7yhDRSDbxZ2HPbjTEBMoj+IYdkfunZWFdA67tdk8L8Tg==", + "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-beta6.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta6": { + "sha512": "+y/7JAz5lC3cmxeNe88Bi80jw6gA2f092y7vk8J6GXOWcUV+I3QoBl0p2Hne5T2YDfZALtzuyVGqsXIaM1X93A==", + "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-beta6.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta6": { + "serviceable": true, + "sha512": "g7YYfc144kPoo9y+tiKgiavtAcgPOdfxYpyyGhrtxeOvgjmbSCtbM+QJN4KwGUZ3cX3Lq3mcFAPoD4YbSxHYIA==", + "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-beta6.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta6": { + "serviceable": true, + "sha512": "fxQFy4VpMHRSg8x0awvA10su04Qc26ayl9dDoVpG4VyYD1W03BXGJte2uwtXztHK8tIwaxpdygXgRYuwr3ncyA==", + "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-beta6.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta6": { + "serviceable": true, + "sha512": "bTa7h3eKwZPEJjpho8FbL3MqJT+Z4KTR59dwsZRB4+5mJwZGT5x2ZV1Yvea/MiJNA+RBn1iBCE8jrCcPIG/xGQ==", + "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-beta6.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta6": { + "serviceable": true, + "sha512": "OvCNyGPZq645VdMzHZ8vLdlYIdl7KlZfVrCu+30DfwSCGV36ByJkUPHer3wU688jWFPx2S1OO7f82fJENYwz8Q==", + "files": [ + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll", + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.xml", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.xml", + "lib/net45/Microsoft.Framework.WebEncoders.Core.dll", + "lib/net45/Microsoft.Framework.WebEncoders.Core.xml", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta6.nupkg", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.WebEncoders.Core.nuspec", + "repo.json" + ] + }, + "Microsoft.Net.Http.Headers/1.0.0-beta6": { + "serviceable": true, + "sha512": "PeBHRiu9gSlP31Z1V3WEmIEb+1YJDdNdQY7xsSA98d3GnZqi+7ZERXVNcDDYMI16QViA/+Gq10HtYti8GwDHtQ==", + "files": [ + "lib/dnx451/Microsoft.Net.Http.Headers.dll", + "lib/dnx451/Microsoft.Net.Http.Headers.xml", + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll", + "lib/dnxcore50/Microsoft.Net.Http.Headers.xml", + "lib/net45/Microsoft.Net.Http.Headers.dll", + "lib/net45/Microsoft.Net.Http.Headers.xml", + "Microsoft.Net.Http.Headers.1.0.0-beta6.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-beta6.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec", + "repo.json" + ] + }, + "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" + ] + }, + "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-beta6": { + "sha512": "PsgiD0mC/U97z6hy+sYPXsS3Zu133w+mklU4Cnldw5A51YUTf7Vz2MOoOHs7cYg5RMcJlxe88pxEj7JHjr1FDg==", + "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-beta6.nupkg", + "xunit.execution.AspNet.2.0.0-aspnet-beta6.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-beta6": { + "sha512": "D3t3tPQZLx8NG+C8yOZu9Bga7KCr032OCnpMH2gsROgLo241pxP+QBSSeBAjRFecGTtkBMkgw1JplO4hEqe7CA==", + "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-beta6.nupkg", + "xunit.runner.aspnet.2.0.0-aspnet-beta6.nupkg.sha512", + "xunit.runner.aspnet.nuspec" + ] + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta6": { + "sha512": "nX/ROq8/N+QddDuPZ5qb+WLes4aBOhGj013C6eyDiIlGi5g7I502GJq3f3jsKhIzuuC6u/3n1NE1VnPl8i89Rg==", + "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-beta6.nupkg", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta6.nupkg.sha512", + "xunit.runner.utility.AspNet.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.WebSockets.Protocol >= 1.0.0-beta6", + "Microsoft.AspNet.WebSockets.Client >= 1.0.0-beta6", + "Microsoft.AspNet.WebSockets.Server >= 1.0.0-beta6", + "Kestrel >= 1.0.0-beta6", + "xunit.runner.aspnet >= 2.0.0-aspnet-beta6" + ], + "DNX,Version=v4.5.1": [] + } +} \ No newline at end of file diff --git a/test/Microsoft.AspNet.WebSockets.Protocol.Test/project.json b/test/Microsoft.AspNet.WebSockets.Protocol.Test/project.json index 7db25a7a..070d574f 100644 --- a/test/Microsoft.AspNet.WebSockets.Protocol.Test/project.json +++ b/test/Microsoft.AspNet.WebSockets.Protocol.Test/project.json @@ -1,13 +1,16 @@ { "dependencies": { - "Microsoft.AspNet.WebSockets.Protocol": "1.0.0-*", - "Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-*" }, - "xunit.runner.aspnet": "2.0.0-aspnet-*" + "Microsoft.AspNet.WebSockets.Protocol": "1.0.0-beta6", + "Microsoft.Framework.NotNullAttribute.Sources": { + "type": "build", + "version": "1.0.0-beta6" + }, + "xunit.runner.aspnet": "2.0.0-aspnet-beta6" }, "frameworks": { - "dnx451": { } + "dnx451": {} }, "commands": { "test": "xunit.runner.aspnet" } -} +} \ No newline at end of file diff --git a/test/Microsoft.AspNet.WebSockets.Protocol.Test/project.lock.json b/test/Microsoft.AspNet.WebSockets.Protocol.Test/project.lock.json new file mode 100644 index 00000000..0c1b2253 --- /dev/null +++ b/test/Microsoft.AspNet.WebSockets.Protocol.Test/project.lock.json @@ -0,0 +1,536 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "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-beta6": { + "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-beta6": { + "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-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta6" + }, + "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-beta6": { + "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-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + }, + "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-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + }, + "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-beta6": { + "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-beta6": { + "dependencies": { + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Runtime": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.TestAdapter": "1.0.0-beta6", + "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": {} + } + }, + "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-beta6": { + "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-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.TestHost": "1.0.0-beta6", + "xunit.assert": "2.0.0-rc3-build2880", + "xunit.execution.AspNet": "2.0.0-aspnet-beta6", + "xunit.runner.utility.AspNet": "2.0.0-aspnet-beta6" + }, + "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-beta6": { + "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.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "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-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "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-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "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-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta6": { + "sha512": "85K5j4jXSZxErwaNUrMMaq2O5sjPsW68fnCdSK8h88MZh04Bj0QAsk4yuRZG0nZlgn7He+k1H5XIWkMSLDXFKQ==", + "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-beta6.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta6": { + "serviceable": true, + "sha512": "mFE984JJush0TlSoLzDNwwHl18aEWons1JuPDTpMYVBOIbNmlQdBFhhKYGQbGWDruadjcaHm7YJL0b546CKwvA==", + "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-beta6.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "w4Cwg6jgPd3XFGOgBGU3GVGVAwUcMglSDTlI23M8uI7yhDRSDbxZ2HPbjTEBMoj+IYdkfunZWFdA67tdk8L8Tg==", + "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-beta6.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta6": { + "sha512": "+y/7JAz5lC3cmxeNe88Bi80jw6gA2f092y7vk8J6GXOWcUV+I3QoBl0p2Hne5T2YDfZALtzuyVGqsXIaM1X93A==", + "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-beta6.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta6": { + "serviceable": true, + "sha512": "g7YYfc144kPoo9y+tiKgiavtAcgPOdfxYpyyGhrtxeOvgjmbSCtbM+QJN4KwGUZ3cX3Lq3mcFAPoD4YbSxHYIA==", + "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-beta6.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta6": { + "serviceable": true, + "sha512": "fxQFy4VpMHRSg8x0awvA10su04Qc26ayl9dDoVpG4VyYD1W03BXGJte2uwtXztHK8tIwaxpdygXgRYuwr3ncyA==", + "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-beta6.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta6": { + "serviceable": true, + "sha512": "bTa7h3eKwZPEJjpho8FbL3MqJT+Z4KTR59dwsZRB4+5mJwZGT5x2ZV1Yvea/MiJNA+RBn1iBCE8jrCcPIG/xGQ==", + "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-beta6.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec", + "repo.json" + ] + }, + "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" + ] + }, + "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-beta6": { + "sha512": "PsgiD0mC/U97z6hy+sYPXsS3Zu133w+mklU4Cnldw5A51YUTf7Vz2MOoOHs7cYg5RMcJlxe88pxEj7JHjr1FDg==", + "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-beta6.nupkg", + "xunit.execution.AspNet.2.0.0-aspnet-beta6.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-beta6": { + "sha512": "D3t3tPQZLx8NG+C8yOZu9Bga7KCr032OCnpMH2gsROgLo241pxP+QBSSeBAjRFecGTtkBMkgw1JplO4hEqe7CA==", + "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-beta6.nupkg", + "xunit.runner.aspnet.2.0.0-aspnet-beta6.nupkg.sha512", + "xunit.runner.aspnet.nuspec" + ] + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta6": { + "sha512": "nX/ROq8/N+QddDuPZ5qb+WLes4aBOhGj013C6eyDiIlGi5g7I502GJq3f3jsKhIzuuC6u/3n1NE1VnPl8i89Rg==", + "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-beta6.nupkg", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta6.nupkg.sha512", + "xunit.runner.utility.AspNet.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.WebSockets.Protocol >= 1.0.0-beta6", + "Microsoft.Framework.NotNullAttribute.Sources >= 1.0.0-beta6", + "xunit.runner.aspnet >= 2.0.0-aspnet-beta6" + ], + "DNX,Version=v4.5.1": [] + } +} \ No newline at end of file diff --git a/test/TestClient/project.json b/test/TestClient/project.json index f4c2b013..523478a1 100644 --- a/test/TestClient/project.json +++ b/test/TestClient/project.json @@ -1,9 +1,9 @@ { "dependencies": { - "Microsoft.AspNet.WebSockets.Protocol": "1.0.0-*", - "Microsoft.AspNet.WebSockets.Client": "1.0.0-*" + "Microsoft.AspNet.WebSockets.Protocol": "1.0.0-beta6", + "Microsoft.AspNet.WebSockets.Client": "1.0.0-beta6" }, "frameworks": { - "dnx451": { } + "dnx451": {} } -} +} \ No newline at end of file diff --git a/test/TestClient/project.lock.json b/test/TestClient/project.lock.json new file mode 100644 index 00000000..ef10fcd6 --- /dev/null +++ b/test/TestClient/project.lock.json @@ -0,0 +1,46 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta6": { + "sha512": "85K5j4jXSZxErwaNUrMMaq2O5sjPsW68fnCdSK8h88MZh04Bj0QAsk4yuRZG0nZlgn7He+k1H5XIWkMSLDXFKQ==", + "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-beta6.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "shared/NotNullAttribute.cs" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.WebSockets.Protocol >= 1.0.0-beta6", + "Microsoft.AspNet.WebSockets.Client >= 1.0.0-beta6" + ], + "DNX,Version=v4.5.1": [] + } +} \ No newline at end of file