diff --git a/build.cmd b/build.cmd index ccf195ae..5a69c96e 100644 --- a/build.cmd +++ b/build.cmd @@ -3,8 +3,6 @@ cd %~dp0 SETLOCAL SET CACHED_NUGET=%LocalAppData%\NuGet\NuGet.exe -SET BUILDCMD_KOREBUILD_VERSION="" -SET BUILDCMD_DNX_VERSION="" IF EXIST %CACHED_NUGET% goto copynuget echo Downloading latest version of NuGet.exe... @@ -18,21 +16,21 @@ copy %CACHED_NUGET% .nuget\nuget.exe > nul :restore IF EXIST packages\KoreBuild goto run -IF %BUILDCMD_KOREBUILD_VERSION%=="" ( - .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 -version %BUILDCMD_KOREBUILD_VERSION% -ExcludeVersion -o packages -nocache -pre + .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 -IF %BUILDCMD_DNX_VERSION%=="" ( - 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 install %BUILDCMD_DNX_VERSION% -runtime CLR -arch x86 -a default + CALL packages\KoreBuild\build\dnvm upgrade -runtime CLR -arch x86 ) CALL packages\KoreBuild\build\dnvm install default -runtime CoreCLR -arch x86 :run CALL packages\KoreBuild\build\dnvm use default -runtime CLR -arch x86 -packages\Sake\tools\Sake.exe -I packages\KoreBuild\build -f makefile.shade %* \ No newline at end of file +packages\Sake\tools\Sake.exe -I packages\KoreBuild\build -f makefile.shade %* diff --git a/src/Microsoft.AspNet.WebSockets.Client/project.json b/src/Microsoft.AspNet.WebSockets.Client/project.json index 5e6c3605..125f8e49 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-beta7", "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-beta7" }, "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..54fee0f1 --- /dev/null +++ b/src/Microsoft.AspNet.WebSockets.Client/project.lock.json @@ -0,0 +1,57 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.5": { + "Microsoft.AspNet.WebSockets.Protocol/1.0.0-beta7": { + "type": "project", + "dependencies": { + "Microsoft.Framework.NotNullAttribute.Sources": "1.0.0-beta7" + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta7": { + "type": "package", + "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.AspNet.WebSockets.Protocol/1.0.0-beta7": { + "type": "project", + "path": "../Microsoft.AspNet.WebSockets.Protocol/project.json" + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta7": { + "type": "package", + "sha512": "kQEnnd9EfkktgUUYcMPqhUbK95PO3KWR0/CP+DxfYwpQZLursg9IjExfN5QU93dju1N92cXPhu/AagkQwHYSWA==", + "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-beta7.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "shared/NotNullAttribute.cs" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.WebSockets.Protocol >= 1.0.0-beta7" + ], + ".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 74e06c88..f5d9f369 100644 --- a/src/Microsoft.AspNet.WebSockets.Protocol/project.json +++ b/src/Microsoft.AspNet.WebSockets.Protocol/project.json @@ -1,30 +1,33 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta7", "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-beta7" + } }, "frameworks": { - "net45": { }, + "net45": {}, "dnxcore50": { "dependencies": { - "System.Diagnostics.Contracts": "4.0.1-beta-*", - "System.IO": "4.0.11-beta-*", - "System.Linq": "4.0.1-beta-*", - "System.Net.WebSockets": "4.0.0-beta-*", - "System.Runtime": "4.0.21-beta-*", - "System.Runtime.InteropServices": "4.0.21-beta-*", - "System.Runtime.Extensions": "4.0.11-beta-*", - "System.Security.Cryptography.Algorithms": "4.0.0-beta-*", - "System.Text.Encoding.Extensions": "4.0.11-beta-*", - "System.Threading": "4.0.11-beta-*", - "System.Threading.Tasks": "4.0.11-beta-*", - "System.Threading.Timer": "4.0.1-beta-*" + "System.Diagnostics.Contracts": "4.0.1-beta-23225", + "System.IO": "4.0.11-beta-23225", + "System.Linq": "4.0.1-beta-23225", + "System.Net.WebSockets": "4.0.0-beta-23225", + "System.Runtime": "4.0.21-beta-23225", + "System.Runtime.InteropServices": "4.0.21-beta-23225", + "System.Runtime.Extensions": "4.0.11-beta-23225", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23225", + "System.Text.Encoding.Extensions": "4.0.11-beta-23225", + "System.Threading": "4.0.11-beta-23225", + "System.Threading.Tasks": "4.0.11-beta-23225", + "System.Threading.Timer": "4.0.1-beta-23225" } } } -} +} \ 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..85bd84b7 --- /dev/null +++ b/src/Microsoft.AspNet.WebSockets.Protocol/project.lock.json @@ -0,0 +1,1016 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.5": { + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta7": { + "type": "package", + "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-beta7": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.21-beta-23225" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "System.Collections/4.0.10": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Globalization/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + } + }, + "System.IO/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.Linq/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.WebSockets.dll": {} + } + }, + "System.Private.Uri/4.0.1-beta-23225": { + "type": "package", + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.21-beta-23225": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1-beta-23225" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.21-beta-23225": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Handles": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Text.Encoding": "4.0.0", + "System.Text.Encoding.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Text.Encoding/4.0.10": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Text.Encoding": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Threading/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Timer/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta7": { + "type": "package", + "sha512": "kQEnnd9EfkktgUUYcMPqhUbK95PO3KWR0/CP+DxfYwpQZLursg9IjExfN5QU93dju1N92cXPhu/AagkQwHYSWA==", + "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-beta7.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "Microsoft.Win32.Primitives.4.0.0.nupkg", + "Microsoft.Win32.Primitives.4.0.0.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/de/Microsoft.Win32.Primitives.xml", + "ref/dotnet/es/Microsoft.Win32.Primitives.xml", + "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", + "ref/dotnet/it/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._" + ] + }, + "System.Collections/4.0.10": { + "type": "package", + "serviceable": true, + "sha512": "ux6ilcZZjV/Gp7JEZpe+2V1eTueq6NuoGRM3eZCFuPM25hLVVgCRuea6STW8hvqreIOE59irJk5/ovpA5xQipw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10.nupkg", + "System.Collections.4.0.10.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Diagnostics.Contracts/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "iXXwqLl9I8XD95SmevgGzlpqwY8GRnXJ+FXuHTUlUQuhMdCzPMf8JMOCVRVOcuEXzjBG5+ry7P5DICBnMXUacQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Diagnostics.Contracts.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll", + "System.Diagnostics.Contracts.4.0.1-beta-23225.nupkg", + "System.Diagnostics.Contracts.4.0.1-beta-23225.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10": { + "type": "package", + "serviceable": true, + "sha512": "pi2KthuvI2LWV2c2V+fwReDsDiKpNl040h6DcwFOb59SafsPT/V1fCy0z66OKwysurJkBMmp5j5CBe3Um+ub0g==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10.nupkg", + "System.Diagnostics.Debug.4.0.10.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Globalization/4.0.0": { + "type": "package", + "sha512": "IBJyTo1y7ZtzzoJUA60T1XPvNTyw/wfFmjFoBFtlYfkekIOtD/AzDDIg0YdUa7eNtFEfliED2R7HdppTdU4t5A==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "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/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Globalization.4.0.0.nupkg", + "System.Globalization.4.0.0.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.IO/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "wkZi/602eDK6SCtRK8cpfOQuVHP/wb9QZRIqxVoKAdp6xeMDTnJVrPZbE6AnKY9x5vymR9OwZxNZVmZ+2IzGVQ==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.IO.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.11-beta-23225.nupkg", + "System.IO.4.0.11-beta-23225.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.Linq/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "BY9iGcvY0q0cyzv3XzsC2A9WgRISdoCUQwH9l31a/Rqxl5qn11A2ypaGX/Fr18RRoTCnvUXC7MMkGhSCEtwsbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.1-beta-23225.nupkg", + "System.Linq.4.0.1-beta-23225.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Net.WebSockets/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "rKZMd12mePmT+q703AylszKL2yzgQa7v9cqV6IkYeGOwksfNAe3WgIOgdVXbHf2sXEV+NSyGjHrTM9q0HAU7ag==", + "files": [ + "lib/DNXCore50/System.Net.WebSockets.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.WebSockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Net.WebSockets.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.WebSockets.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Net.WebSockets.4.0.0-beta-23225.nupkg", + "System.Net.WebSockets.4.0.0-beta-23225.nupkg.sha512", + "System.Net.WebSockets.nuspec" + ] + }, + "System.Private.Uri/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "fdKNkf1NIe8FVi8HiPg1NuFb4C1hn1oX/JHBu+S5LoMHorGYxJ6Rwwx5Ig9Flb5vICaeudpsf0Wyzc6israg6g==", + "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.1-beta-23225.nupkg", + "System.Private.Uri.4.0.1-beta-23225.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.0": { + "type": "package", + "sha512": "g96Rn8XuG7y4VfxPj/jnXroRJdQ8L3iN3k3zqsuzk4k3Nq4KMXARYiIO4BLW4GwX06uQpuYwRMcAC/aF117knQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "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/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "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/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Reflection.4.0.0.nupkg", + "System.Reflection.4.0.0.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==", + "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.nupkg", + "System.Reflection.Primitives.4.0.0.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==", + "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.nupkg", + "System.Resources.ResourceManager.4.0.0.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.21-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "3YYoQMbbiX6ayLsynZtnA+x7KIMier2NivCOxNzlfDb/ZmpVFCQ2XyYd33JYAVM7TnfFbFMzKZxD1kC+zo8wYA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Runtime.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.21-beta-23225.nupkg", + "System.Runtime.4.0.21-beta-23225.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "Dgqglr6Xq3FYrJRPOzIEfACJBxAYfrzzuv4i2vVEwS8LhvA0oSBCM4OwlrPQTNOhFL+VKvogcHKs6O53DnAvZw==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.11-beta-23225.nupkg", + "System.Runtime.Extensions.4.0.11-beta-23225.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0.nupkg", + "System.Runtime.Handles.4.0.0.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.21-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "vFlRmA5VYtwNm/1tN+C/xCqOf/yfieg/lbAsI4ddUhQ1/c3voh6OB1cKmzuVe/Qn3BYqjEZP5d4vFiwIsZDvJw==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.21-beta-23225.nupkg", + "System.Runtime.InteropServices.4.0.21-beta-23225.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Security.Cryptography.Algorithms/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "GjeU8uLxWigoEEtfD2aBtPLmskJNnanmUwNSNKdHHzIuGr69hwmSsaVA1IDJSQ1dX5WQY32v1O1MROCfEq/Seg==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Algorithms.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Security.Cryptography.Algorithms.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.Algorithms.4.0.0-beta-23225.nupkg", + "System.Security.Cryptography.Algorithms.4.0.0-beta-23225.nupkg.sha512", + "System.Security.Cryptography.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "acOPCfkrkOFr/NAnA+hIOnY8yQZr94JzJ02heQDIqE0sFKyBITLbgQBoO+gTBVRxGr1o+oiYbFnXY0Q30+SACg==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Security.Cryptography.Primitives.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.Primitives.4.0.0-beta-23225.nupkg", + "System.Security.Cryptography.Primitives.4.0.0-beta-23225.nupkg.sha512", + "System.Security.Cryptography.Primitives.nuspec" + ] + }, + "System.Text.Encoding/4.0.10": { + "type": "package", + "sha512": "fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Text.Encoding.xml", + "ref/dotnet/es/System.Text.Encoding.xml", + "ref/dotnet/fr/System.Text.Encoding.xml", + "ref/dotnet/it/System.Text.Encoding.xml", + "ref/dotnet/ja/System.Text.Encoding.xml", + "ref/dotnet/ko/System.Text.Encoding.xml", + "ref/dotnet/ru/System.Text.Encoding.xml", + "ref/dotnet/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10.nupkg", + "System.Text.Encoding.4.0.10.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "rM8VmuhRseKWeUU81UovPUS8mEAuTucvaSG7BEmEZ3fPLWecL9LKnZTs3OKePlknVZeBeB8swPr2fZ8isHGwSg==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.11-beta-23225.nupkg", + "System.Text.Encoding.Extensions.4.0.11-beta-23225.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Threading/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "B/+Lw3Z8IQCMtVT0/2ywBSnT35DleljjmwYqdtM1+LpBo5pf8WX/6lwZF0XSgXjROjxz5oe1IArTgv0uZ+0aOQ==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Threading.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.11-beta-23225.nupkg", + "System.Threading.4.0.11-beta-23225.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Tasks/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "8NHb4nr8zepyfG64hNmQ94LOwfD3DVU+ij+Kj33VrNOZTiHze246nV935gE00XUaIK9IATklpcQ15Le9aF3ZhQ==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.11-beta-23225.nupkg", + "System.Threading.Tasks.4.0.11-beta-23225.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Timer/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "/9Vpl4IufMAx4Rea4ZlpjtlF744vSraJbYj8yFG3pXTHtH27VYcDUpBScVaM1mmHgOZSh8zyaohhXpzUtIg2/A==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Threading.Timer.dll", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/win81/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.1-beta-23225.nupkg", + "System.Threading.Timer.4.0.1-beta-23225.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.Framework.NotNullAttribute.Sources >= 1.0.0-beta7" + ], + ".NETFramework,Version=v4.5": [], + "DNXCore,Version=v5.0": [ + "System.Diagnostics.Contracts >= 4.0.1-beta-23225", + "System.IO >= 4.0.11-beta-23225", + "System.Linq >= 4.0.1-beta-23225", + "System.Net.WebSockets >= 4.0.0-beta-23225", + "System.Runtime >= 4.0.21-beta-23225", + "System.Runtime.InteropServices >= 4.0.21-beta-23225", + "System.Runtime.Extensions >= 4.0.11-beta-23225", + "System.Security.Cryptography.Algorithms >= 4.0.0-beta-23225", + "System.Text.Encoding.Extensions >= 4.0.11-beta-23225", + "System.Threading >= 4.0.11-beta-23225", + "System.Threading.Tasks >= 4.0.11-beta-23225", + "System.Threading.Timer >= 4.0.1-beta-23225" + ] + } +} \ 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 e2b82ebb..bd64a614 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-beta7", "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-beta7", + "Microsoft.AspNet.WebSockets.Protocol": "1.0.0-beta7" }, "frameworks": { - "dnx451": { }, + "dnx451": {}, "dnxcore50": { "dependencies": { - "System.Runtime": "4.0.21-beta-*" + "System.Runtime": "4.0.21-beta-23225" } } } -} +} \ 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..a4ececa0 --- /dev/null +++ b/src/Microsoft.AspNet.WebSockets.Server/project.lock.json @@ -0,0 +1,2303 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.AspNet.Http/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta7", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta7", + "Microsoft.Net.Http.Headers": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta7", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "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.WebSockets.Protocol/1.0.0-beta7": { + "type": "project", + "dependencies": { + "Microsoft.Framework.NotNullAttribute.Sources": "1.0.0-beta7" + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "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-beta7": { + "type": "package", + "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-beta7": { + "type": "package", + "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.Http/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta7", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta7", + "Microsoft.Net.Http.Headers": "1.0.0-beta7", + "System.Diagnostics.Debug": "4.0.11-beta-23225", + "System.Text.Encoding": "4.0.11-beta-23225" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta7", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta7", + "System.Collections": "4.0.11-beta-23225", + "System.Diagnostics.Tools": "4.0.1-beta-23225", + "System.Globalization": "4.0.11-beta-23225", + "System.Globalization.Extensions": "4.0.1-beta-23225", + "System.Linq": "4.0.1-beta-23225", + "System.Linq.Expressions": "4.0.11-beta-23225", + "System.Net.Primitives": "4.0.11-beta-23225", + "System.Net.WebSockets": "4.0.0-beta-23225", + "System.Reflection.TypeExtensions": "4.0.1-beta-23225", + "System.Runtime": "4.0.21-beta-23225", + "System.Runtime.InteropServices": "4.0.21-beta-23225", + "System.Security.Claims": "4.0.1-beta-23225", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23225", + "System.Security.Principal": "4.0.1-beta-23225", + "System.Threading.Tasks": "4.0.11-beta-23225" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta7": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23225", + "System.Linq": "4.0.1-beta-23225", + "System.Net.Primitives": "4.0.11-beta-23225", + "System.Net.WebSockets": "4.0.0-beta-23225", + "System.Runtime.Extensions": "4.0.11-beta-23225", + "System.Security.Claims": "4.0.1-beta-23225", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23225", + "System.Security.Principal": "4.0.1-beta-23225" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebSockets.Protocol/1.0.0-beta7": { + "type": "project", + "dependencies": { + "Microsoft.Framework.NotNullAttribute.Sources": "1.0.0-beta7", + "System.Diagnostics.Contracts": "4.0.1-beta-23225", + "System.IO": "4.0.11-beta-23225", + "System.Linq": "4.0.1-beta-23225", + "System.Net.WebSockets": "4.0.0-beta-23225", + "System.Runtime": "4.0.21-beta-23225", + "System.Runtime.Extensions": "4.0.11-beta-23225", + "System.Runtime.InteropServices": "4.0.21-beta-23225", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23225", + "System.Text.Encoding.Extensions": "4.0.11-beta-23225", + "System.Threading": "4.0.11-beta-23225", + "System.Threading.Tasks": "4.0.11-beta-23225", + "System.Threading.Timer": "4.0.1-beta-23225" + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta7", + "System.Collections": "4.0.11-beta-23225", + "System.Diagnostics.Debug": "4.0.11-beta-23225", + "System.IO": "4.0.11-beta-23225", + "System.IO.FileSystem": "4.0.1-beta-23225", + "System.Runtime": "4.0.21-beta-23225", + "System.Runtime.Extensions": "4.0.11-beta-23225" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta7": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.21-beta-23225" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta7": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-beta-23225", + "System.Diagnostics.Debug": "4.0.11-beta-23225", + "System.IO": "4.0.11-beta-23225", + "System.Reflection": "4.0.10", + "System.Runtime.Extensions": "4.0.11-beta-23225", + "System.Threading": "4.0.11-beta-23225" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta7": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23225", + "System.Diagnostics.Contracts": "4.0.1-beta-23225", + "System.Globalization": "4.0.11-beta-23225", + "System.Globalization.Extensions": "4.0.1-beta-23225", + "System.Linq": "4.0.1-beta-23225", + "System.Runtime": "4.0.21-beta-23225", + "System.Text.Encoding": "4.0.11-beta-23225" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "System.Collections/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.21-beta-23225" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.Linq": "4.0.0", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Emit": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Primitives/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Private.Networking": "4.0.1-beta-23225" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.10": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Collections": "4.0.10", + "System.Collections.Concurrent": "4.0.0", + "System.Collections.NonGeneric": "4.0.0", + "System.ComponentModel.EventBasedAsync": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.1-beta-23225": { + "type": "package", + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0.0": { + "type": "package", + "compile": { + "lib/contract/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/aspnetcore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.21-beta-23225": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1-beta-23225" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.21-beta-23225": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.IO": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.0", + "System.Security.Principal": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Handles": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Text.Encoding": "4.0.0", + "System.Text.Encoding.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Csp/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23225", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23225", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Csp.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Csp.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Globalization.Calendars": "4.0.0", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Runtime.Numerics": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23225", + "System.Security.Cryptography.Csp": "4.0.0-beta-23225", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23225", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Text.Encoding/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Text.Encoding": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Threading/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Timer/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNet.WebSockets.Protocol/1.0.0-beta7": { + "type": "project", + "path": "../Microsoft.AspNet.WebSockets.Protocol/project.json" + }, + "Microsoft.AspNet.Http/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "oa2l2Z6k4W3Ac3x3T730iBQ7Pmv4ux3KzwEB0rq4+3uIYhi1rgHVRkDizFGkQzIJQyQzNnUgZUX9M6PaQZiMgQ==", + "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-beta7.nupkg", + "Microsoft.AspNet.Http.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "X1sg3BrXFqHIOWZpTWM8pfP4UunNR4xuLaNB3YNQITnOXDQbBYffMDNealnpKTWzpRY9vapQjD4oe452pLGQpQ==", + "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-beta7.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "SVRsWqwp5jdCXxVO8OO3G0zccgLzKQ3QrSMcktn8s+v+Sc1P6U7vlYWFGYS+BBys0P3WbwJ1nBBbEYR407nPoA==", + "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-beta7.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "6Oxkso9GeopSFybRtBvWtMQt/V6GcXJkKChrpLZ2jReL/eSI0hm5TrdAMn0TyRaCEVv13zOp7Gb3UGH3Ayrfhw==", + "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-beta7.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta7": { + "type": "package", + "sha512": "kQEnnd9EfkktgUUYcMPqhUbK95PO3KWR0/CP+DxfYwpQZLursg9IjExfN5QU93dju1N92cXPhu/AagkQwHYSWA==", + "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-beta7.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "CM9QItTmfUvFYM4nMr7h0LPSvtIw6t5dQBfLB2L5fJxvSwJ00n6jmiJ62ZcQNjur9rjGRIpoCLlIpt3S03ykcw==", + "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-beta7.nupkg", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.WebEncoders.Core.nuspec", + "repo.json" + ] + }, + "Microsoft.Net.Http.Headers/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "/W2zzkJ/wNRiooNafeOjzNpMw2aREvEQoBib4p1pky54heAcbrQQAtuoOc4BdcafZxPwiXazZEmndVRdICbscw==", + "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-beta7.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-beta7.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec", + "repo.json" + ] + }, + "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "Microsoft.Win32.Primitives.4.0.0.nupkg", + "Microsoft.Win32.Primitives.4.0.0.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/de/Microsoft.Win32.Primitives.xml", + "ref/dotnet/es/Microsoft.Win32.Primitives.xml", + "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", + "ref/dotnet/it/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._" + ] + }, + "System.Collections/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "5nxF7rLpel65n6081k8h3ptC6qlH+5WVauBCSlxwa6niB6TJeMP+yw8B2bK7IKDrcSv3EsrN7UTkfrqssxS4Eg==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Collections.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.11-beta-23225.nupkg", + "System.Collections.4.0.11-beta-23225.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.0": { + "type": "package", + "sha512": "1f5SWoX7UlFkvUt7A8JoG5lXgZDw4cRAcKG8Eaxa+3Sq6e/UgVWl2YWew1evJv+p+edNNlIIorDfREKcoEDHGw==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "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/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Collections.Concurrent.4.0.0.nupkg", + "System.Collections.Concurrent.4.0.0.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Collections.NonGeneric.xml", + "ref/dotnet/es/System.Collections.NonGeneric.xml", + "ref/dotnet/fr/System.Collections.NonGeneric.xml", + "ref/dotnet/it/System.Collections.NonGeneric.xml", + "ref/dotnet/ja/System.Collections.NonGeneric.xml", + "ref/dotnet/ko/System.Collections.NonGeneric.xml", + "ref/dotnet/ru/System.Collections.NonGeneric.xml", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Collections.NonGeneric.4.0.0.nupkg", + "System.Collections.NonGeneric.4.0.0.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "xAqvacYTl713o1wE9E4raMp6ufoAJwb3cOkRWpeKIURrxgSyJsJZN8Za5mIWRsSIn2wil4FNF64fjmtKtostmA==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.1-beta-23225.nupkg", + "System.ComponentModel.4.0.1-beta-23225.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10": { + "type": "package", + "serviceable": true, + "sha512": "d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==", + "files": [ + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/dotnet/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ComponentModel.EventBasedAsync.4.0.10.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec" + ] + }, + "System.Diagnostics.Contracts/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "iXXwqLl9I8XD95SmevgGzlpqwY8GRnXJ+FXuHTUlUQuhMdCzPMf8JMOCVRVOcuEXzjBG5+ry7P5DICBnMXUacQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Diagnostics.Contracts.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll", + "System.Diagnostics.Contracts.4.0.1-beta-23225.nupkg", + "System.Diagnostics.Contracts.4.0.1-beta-23225.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "tMcqYmhwk7a04TXqsNXawBdZqsEzaGL1TfdJx3meFfPbfw7JDelkuOuxPqrwP6knlKhLJH8ztUsVAIYD7Mi6QQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.11-beta-23225.nupkg", + "System.Diagnostics.Debug.4.0.11-beta-23225.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "j/6iYxVLRNtCsSYZMBC5sZ4Uy9I2JhfiKt8QOmZZ3Vbh/lfcOhM4soACWpZ5rhca8MIHagkV4ExlPA6F2Ef+Ag==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.1-beta-23225.nupkg", + "System.Diagnostics.Tools.4.0.1-beta-23225.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20": { + "type": "package", + "serviceable": true, + "sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Diagnostics.Tracing.xml", + "ref/dotnet/es/System.Diagnostics.Tracing.xml", + "ref/dotnet/fr/System.Diagnostics.Tracing.xml", + "ref/dotnet/it/System.Diagnostics.Tracing.xml", + "ref/dotnet/ja/System.Diagnostics.Tracing.xml", + "ref/dotnet/ko/System.Diagnostics.Tracing.xml", + "ref/dotnet/ru/System.Diagnostics.Tracing.xml", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20.nupkg", + "System.Diagnostics.Tracing.4.0.20.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Globalization/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "EP1QanGQDNlRIaoOgJQY/CkAzBGR8kNfSE30xkvso3vwCu5+nsmGcATeaJf9NgiXn1RwI0QfpX02lqUEgMJxbg==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Globalization.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.11-beta-23225.nupkg", + "System.Globalization.4.0.11-beta-23225.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0": { + "type": "package", + "sha512": "cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Globalization.Calendars.xml", + "ref/dotnet/es/System.Globalization.Calendars.xml", + "ref/dotnet/fr/System.Globalization.Calendars.xml", + "ref/dotnet/it/System.Globalization.Calendars.xml", + "ref/dotnet/ja/System.Globalization.Calendars.xml", + "ref/dotnet/ko/System.Globalization.Calendars.xml", + "ref/dotnet/ru/System.Globalization.Calendars.xml", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hans/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hant/System.Globalization.Calendars.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0.nupkg", + "System.Globalization.Calendars.4.0.0.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "VaIN/ywmghEDYlhG5MxbxVec5pE47xyPqR4F6qf/DAXseBVdTLn0l81n93Cc94QSJi6v+RtasTwHl5ASfqa5zA==", + "files": [ + "lib/dotnet/System.Globalization.Extensions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Globalization.Extensions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Globalization.Extensions.4.0.1-beta-23225.nupkg", + "System.Globalization.Extensions.4.0.1-beta-23225.nupkg.sha512", + "System.Globalization.Extensions.nuspec" + ] + }, + "System.IO/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "wkZi/602eDK6SCtRK8cpfOQuVHP/wb9QZRIqxVoKAdp6xeMDTnJVrPZbE6AnKY9x5vymR9OwZxNZVmZ+2IzGVQ==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.IO.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.11-beta-23225.nupkg", + "System.IO.4.0.11-beta-23225.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.FileSystem/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "gr+pQbKusONE54GQCoD7jVLJ+ylboO+eK5p1ZJ3/ZSWhA2ReXk5jLwrd0p8G4nEwPb3I+9CKlVME/Wx1Ux5iHA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.IO.FileSystem.4.0.1-beta-23225.nupkg", + "System.IO.FileSystem.4.0.1-beta-23225.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "7pJUvYi/Yq3A5nagqCCiOw3+aJp3xXc/Cjr8dnJDnER3/6kX3LEencfqmXUcPl9+7OvRNyPMNhqsLAcMK6K/KA==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.IO.FileSystem.Primitives.4.0.0.nupkg", + "System.IO.FileSystem.Primitives.4.0.0.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.Linq/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "BY9iGcvY0q0cyzv3XzsC2A9WgRISdoCUQwH9l31a/Rqxl5qn11A2ypaGX/Fr18RRoTCnvUXC7MMkGhSCEtwsbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.1-beta-23225.nupkg", + "System.Linq.4.0.1-beta-23225.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "4Jrye8GXUOBGpc0t8QS6Ei5bhp/dCed1oEGDzKI3K0YERyAYKoSAEaGolTEdierMfOnmdIKf1qCxaKmdj6U+1Q==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.11-beta-23225.nupkg", + "System.Linq.Expressions.4.0.11-beta-23225.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Net.Primitives/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "xmbQ1qCeZIJvhX06dtgKwyREzLKNQx30VVbPTqpfdVNlWdpm4iqqXNz6yD2Jq6VDpLezYBKR9IRxcozil77RLA==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Net.Primitives.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Net.Primitives.4.0.11-beta-23225.nupkg", + "System.Net.Primitives.4.0.11-beta-23225.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.WebSockets/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "rKZMd12mePmT+q703AylszKL2yzgQa7v9cqV6IkYeGOwksfNAe3WgIOgdVXbHf2sXEV+NSyGjHrTM9q0HAU7ag==", + "files": [ + "lib/DNXCore50/System.Net.WebSockets.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.WebSockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Net.WebSockets.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.WebSockets.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Net.WebSockets.4.0.0-beta-23225.nupkg", + "System.Net.WebSockets.4.0.0-beta-23225.nupkg.sha512", + "System.Net.WebSockets.nuspec" + ] + }, + "System.ObjectModel/4.0.10": { + "type": "package", + "serviceable": true, + "sha512": "Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.ObjectModel.xml", + "ref/dotnet/es/System.ObjectModel.xml", + "ref/dotnet/fr/System.ObjectModel.xml", + "ref/dotnet/it/System.ObjectModel.xml", + "ref/dotnet/ja/System.ObjectModel.xml", + "ref/dotnet/ko/System.ObjectModel.xml", + "ref/dotnet/ru/System.ObjectModel.xml", + "ref/dotnet/System.ObjectModel.dll", + "ref/dotnet/System.ObjectModel.xml", + "ref/dotnet/zh-hans/System.ObjectModel.xml", + "ref/dotnet/zh-hant/System.ObjectModel.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ObjectModel.4.0.10.nupkg", + "System.ObjectModel.4.0.10.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Networking/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "PcMdwhnkodbZmOj2RGGH/I5LvsIIdC+GJHORHnvdRFLUZNqIJE/0mEfA2BhWj5wiEbp8TlLyj/vEX6CXE8IKPQ==", + "files": [ + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.4.0.1-beta-23225.nupkg", + "System.Private.Networking.4.0.1-beta-23225.nupkg.sha512", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.Uri/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "fdKNkf1NIe8FVi8HiPg1NuFb4C1hn1oX/JHBu+S5LoMHorGYxJ6Rwwx5Ig9Flb5vICaeudpsf0Wyzc6israg6g==", + "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.1-beta-23225.nupkg", + "System.Private.Uri.4.0.1-beta-23225.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10": { + "type": "package", + "sha512": "WZ+4lEE4gqGx6mrqLhSiW4oi6QLPWwdNjzhhTONmhELOrW8Cw9phlO9tltgvRUuQUqYtBiliFwhO5S5fCJElVw==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Reflection.xml", + "ref/dotnet/es/System.Reflection.xml", + "ref/dotnet/fr/System.Reflection.xml", + "ref/dotnet/it/System.Reflection.xml", + "ref/dotnet/ja/System.Reflection.xml", + "ref/dotnet/ko/System.Reflection.xml", + "ref/dotnet/ru/System.Reflection.xml", + "ref/dotnet/System.Reflection.dll", + "ref/dotnet/System.Reflection.xml", + "ref/dotnet/zh-hans/System.Reflection.xml", + "ref/dotnet/zh-hant/System.Reflection.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10.nupkg", + "System.Reflection.4.0.10.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0.0": { + "type": "package", + "sha512": "DWeSx8yao/35ScUksM9r99IPpxAa8KUFskPa1pP5kfsgDLwgg7g5oAVgfoRyQT1D/9NAhJgP7+LfNuUwod8JRA==", + "files": [ + "lib/aspnetcore50/System.Reflection.Emit.dll", + "lib/contract/System.Reflection.Emit.dll", + "System.Reflection.Emit.4.0.0.nupkg", + "System.Reflection.Emit.4.0.0.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "dbYaZWCyFAu1TGYUqR2n+Q+1casSHPR2vVW0WVNkXpZbrd2BXcZ7cpvpu9C98CTHtNmyfMWCLpCclDqly23t6A==", + "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.nupkg", + "System.Reflection.Extensions.4.0.0.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==", + "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.nupkg", + "System.Reflection.Primitives.4.0.0.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "MZ1Ke69DuaQWTJvIhD+hhvF7VMRNnIbQoTHpM6taTEt8pP2yun7AdlspTem6/Wku0wjazYbueleIbZl/AqJz4Q==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.1-beta-23225.nupkg", + "System.Reflection.TypeExtensions.4.0.1-beta-23225.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==", + "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.nupkg", + "System.Resources.ResourceManager.4.0.0.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.21-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "3YYoQMbbiX6ayLsynZtnA+x7KIMier2NivCOxNzlfDb/ZmpVFCQ2XyYd33JYAVM7TnfFbFMzKZxD1kC+zo8wYA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Runtime.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.21-beta-23225.nupkg", + "System.Runtime.4.0.21-beta-23225.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "Dgqglr6Xq3FYrJRPOzIEfACJBxAYfrzzuv4i2vVEwS8LhvA0oSBCM4OwlrPQTNOhFL+VKvogcHKs6O53DnAvZw==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.11-beta-23225.nupkg", + "System.Runtime.Extensions.4.0.11-beta-23225.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0.nupkg", + "System.Runtime.Handles.4.0.0.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.21-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "vFlRmA5VYtwNm/1tN+C/xCqOf/yfieg/lbAsI4ddUhQ1/c3voh6OB1cKmzuVe/Qn3BYqjEZP5d4vFiwIsZDvJw==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.21-beta-23225.nupkg", + "System.Runtime.InteropServices.4.0.21-beta-23225.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Runtime.Numerics.xml", + "ref/dotnet/es/System.Runtime.Numerics.xml", + "ref/dotnet/fr/System.Runtime.Numerics.xml", + "ref/dotnet/it/System.Runtime.Numerics.xml", + "ref/dotnet/ja/System.Runtime.Numerics.xml", + "ref/dotnet/ko/System.Runtime.Numerics.xml", + "ref/dotnet/ru/System.Runtime.Numerics.xml", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/dotnet/System.Runtime.Numerics.xml", + "ref/dotnet/zh-hans/System.Runtime.Numerics.xml", + "ref/dotnet/zh-hant/System.Runtime.Numerics.xml", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "System.Runtime.Numerics.4.0.0.nupkg", + "System.Runtime.Numerics.4.0.0.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Security.Claims/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "6HpwXj/NmPJJcJfPlTq340iQOPPUgMRGY/q4hU2IaD5fEJtV2VBxd4JQ1SKKl5Ez0I/EBeEehnCOveCdO958MA==", + "files": [ + "lib/dotnet/System.Security.Claims.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Security.Claims.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Claims.4.0.1-beta-23225.nupkg", + "System.Security.Claims.4.0.1-beta-23225.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Algorithms/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "GjeU8uLxWigoEEtfD2aBtPLmskJNnanmUwNSNKdHHzIuGr69hwmSsaVA1IDJSQ1dX5WQY32v1O1MROCfEq/Seg==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Algorithms.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Security.Cryptography.Algorithms.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.Algorithms.4.0.0-beta-23225.nupkg", + "System.Security.Cryptography.Algorithms.4.0.0-beta-23225.nupkg.sha512", + "System.Security.Cryptography.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "1jST6Vz6/AjO4yFb0Ebw2TJQwVq3FNoBazRjgXBaCgUpL3uomg0XyzeGFoeL3Yy/GB3KGF2OzthtsNH/ikQfvg==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Csp.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Security.Cryptography.Csp.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.Csp.4.0.0-beta-23225.nupkg", + "System.Security.Cryptography.Csp.4.0.0-beta-23225.nupkg.sha512", + "System.Security.Cryptography.Csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "cnSypPb7Xhng+D/VRZyu+bPvQ4+ShNt6epFmFRfYRPqmRcVHdYxuIOVTPSvbqkIz56IeYW8xOwkuOU7YdRUzbg==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.Encoding.4.0.0-beta-23225.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23225.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "acOPCfkrkOFr/NAnA+hIOnY8yQZr94JzJ02heQDIqE0sFKyBITLbgQBoO+gTBVRxGr1o+oiYbFnXY0Q30+SACg==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Security.Cryptography.Primitives.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.Primitives.4.0.0-beta-23225.nupkg", + "System.Security.Cryptography.Primitives.4.0.0-beta-23225.nupkg.sha512", + "System.Security.Cryptography.Primitives.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "B1IFymfZHmgOprkMBkFQBdU7ctcG4IZe07v6p2HjVJMwWoRULJtpFAosDOhWpi5cNbjW6SvuiJAfxApQ0t99YA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23225.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23225.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "DidXniZHxQUsTpf3R6AoYucXRAs8wUWmiWVvFfSpf8E1LfVNPjHwnZuQIaRaHpFaK6uRekJ07y+gs7xvfNuhoQ==", + "files": [ + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Security.Principal.4.0.1-beta-23225.nupkg", + "System.Security.Principal.4.0.1-beta-23225.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Text.Encoding/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "z86Mk322Z8s3g7pKYB7ZsXcIhfSNuBmziUc5vEgKtrMggpWNcZ6DOhPiqAEJBSfymv2N+h/0xVpzeSVE/iLMHw==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Text.Encoding.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.11-beta-23225.nupkg", + "System.Text.Encoding.4.0.11-beta-23225.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "rM8VmuhRseKWeUU81UovPUS8mEAuTucvaSG7BEmEZ3fPLWecL9LKnZTs3OKePlknVZeBeB8swPr2fZ8isHGwSg==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.11-beta-23225.nupkg", + "System.Text.Encoding.Extensions.4.0.11-beta-23225.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Threading/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "B/+Lw3Z8IQCMtVT0/2ywBSnT35DleljjmwYqdtM1+LpBo5pf8WX/6lwZF0XSgXjROjxz5oe1IArTgv0uZ+0aOQ==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Threading.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.11-beta-23225.nupkg", + "System.Threading.4.0.11-beta-23225.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/de/System.Threading.Overlapped.xml", + "ref/dotnet/es/System.Threading.Overlapped.xml", + "ref/dotnet/fr/System.Threading.Overlapped.xml", + "ref/dotnet/it/System.Threading.Overlapped.xml", + "ref/dotnet/ja/System.Threading.Overlapped.xml", + "ref/dotnet/ko/System.Threading.Overlapped.xml", + "ref/dotnet/ru/System.Threading.Overlapped.xml", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0.nupkg", + "System.Threading.Overlapped.4.0.0.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "8NHb4nr8zepyfG64hNmQ94LOwfD3DVU+ij+Kj33VrNOZTiHze246nV935gE00XUaIK9IATklpcQ15Le9aF3ZhQ==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.11-beta-23225.nupkg", + "System.Threading.Tasks.4.0.11-beta-23225.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Timer/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "/9Vpl4IufMAx4Rea4ZlpjtlF744vSraJbYj8yFG3pXTHtH27VYcDUpBScVaM1mmHgOZSh8zyaohhXpzUtIg2/A==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Threading.Timer.dll", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/win81/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.1-beta-23225.nupkg", + "System.Threading.Timer.4.0.1-beta-23225.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.Http >= 1.0.0-beta7", + "Microsoft.AspNet.WebSockets.Protocol >= 1.0.0-beta7" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [ + "System.Runtime >= 4.0.21-beta-23225" + ] + } +} \ No newline at end of file diff --git a/test/AutobahnTestClient/Project.json b/test/AutobahnTestClient/Project.json index a671b8f9..e79a789c 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-beta7" }, - "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..caf40f1e --- /dev/null +++ b/test/AutobahnTestClient/project.lock.json @@ -0,0 +1,67 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.AspNet.WebSockets.Client/1.0.0-beta7": { + "type": "project", + "dependencies": { + "Microsoft.AspNet.WebSockets.Protocol": "1.0.0-beta7" + } + }, + "Microsoft.AspNet.WebSockets.Protocol/1.0.0-beta7": { + "type": "project", + "dependencies": { + "Microsoft.Framework.NotNullAttribute.Sources": "1.0.0-beta7" + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta7": { + "type": "package", + "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.AspNet.WebSockets.Client/1.0.0-beta7": { + "type": "project", + "path": "../../src/Microsoft.AspNet.WebSockets.Client/project.json" + }, + "Microsoft.AspNet.WebSockets.Protocol/1.0.0-beta7": { + "type": "project", + "path": "../../src/Microsoft.AspNet.WebSockets.Protocol/project.json" + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta7": { + "type": "package", + "sha512": "kQEnnd9EfkktgUUYcMPqhUbK95PO3KWR0/CP+DxfYwpQZLursg9IjExfN5QU93dju1N92cXPhu/AagkQwHYSWA==", + "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-beta7.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "shared/NotNullAttribute.cs" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.WebSockets.Client >= 1.0.0-beta7" + ], + "DNX,Version=v4.5.1": [] + } +} \ No newline at end of file diff --git a/test/AutobahnTestServer/Project.json b/test/AutobahnTestServer/Project.json index 84d418c1..ec05ea73 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-*", - "Microsoft.AspNet.Server.Kestrel": "1.0.0-*" + "Microsoft.AspNet.Server.IIS": "1.0.0-beta7", + "Microsoft.AspNet.Server.WebListener": "1.0.0-beta7", + "Microsoft.AspNet.WebSockets.Server": "1.0.0-beta7", + "Microsoft.AspNet.Server.Kestrel": "1.0.0-beta7" }, "commands": { "web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:12345", "kestrel": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.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..24b24f97 --- /dev/null +++ b/test/AutobahnTestServer/project.lock.json @@ -0,0 +1,4001 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta7" + }, + "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.FileProviders.Abstractions/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta7", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta7", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta7", + "Microsoft.AspNet.Http": "1.0.0-beta7", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta7", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta7", + "Microsoft.Framework.Configuration": "1.0.0-beta7", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta7", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta7", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta7", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta7", + "Microsoft.Framework.Logging": "1.0.0-beta7", + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta7", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta7", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta7", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta7", + "Microsoft.Net.Http.Headers": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta7", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta7", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta7", + "Microsoft.Net.Http.Headers": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta7", + "Microsoft.AspNet.Hosting": "1.0.0-beta7", + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-beta7", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta7", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta7", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package" + }, + "Microsoft.AspNet.Server.IIS/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Loader.IIS": "1.0.0-beta7", + "Microsoft.AspNet.Loader.IIS.Interop": "1.0.0-beta7" + } + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta7", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta7", + "Microsoft.Net.Http.Headers": "1.0.0-beta7", + "Microsoft.Net.Http.Server": "1.0.0-beta7" + }, + "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.WebSockets.Protocol/1.0.0-beta7": { + "type": "project", + "dependencies": { + "Microsoft.Framework.NotNullAttribute.Sources": "1.0.0-beta7" + } + }, + "Microsoft.AspNet.WebSockets.Server/1.0.0-beta7": { + "type": "project", + "dependencies": { + "Microsoft.AspNet.Http": "1.0.0-beta7", + "Microsoft.AspNet.WebSockets.Protocol": "1.0.0-beta7" + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta7" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Dnx.Compilation.Abstractions/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta7" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Dnx.Compilation.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Dnx.Compilation.Abstractions.dll": {} + } + }, + "Microsoft.Dnx.Runtime.Abstractions/1.0.0-beta7": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Dnx.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Dnx.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta7": { + "type": "package", + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta7", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "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-beta7": { + "type": "package", + "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-beta7": { + "type": "package", + "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-beta7": { + "type": "package", + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta7", + "Microsoft.Net.WebSockets": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "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": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta7", + "System.ComponentModel": "4.0.1-beta-23225", + "System.Diagnostics.Debug": "4.0.11-beta-23225", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime.Extensions": "4.0.11-beta-23225", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Text.Encoding.Extensions": "4.0.11-beta-23225" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta7", + "System.IO": "4.0.11-beta-23225" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta7", + "System.Collections": "4.0.11-beta-23225", + "System.Collections.Concurrent": "4.0.11-beta-23225", + "System.IO.FileSystem": "4.0.1-beta-23225", + "System.IO.FileSystem.Primitives": "4.0.1-beta-23225", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23225", + "System.Runtime.Extensions": "4.0.11-beta-23225", + "System.Text.RegularExpressions": "4.0.11-beta-23225", + "System.Threading": "4.0.11-beta-23225" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta7", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta7", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta7", + "Microsoft.AspNet.Http": "1.0.0-beta7", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta7", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta7", + "Microsoft.Framework.Configuration": "1.0.0-beta7", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta7", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta7", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta7", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta7", + "Microsoft.Framework.Logging": "1.0.0-beta7", + "Newtonsoft.Json": "6.0.6", + "System.Console": "4.0.0-beta-23225" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta7", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta7" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta7", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta7" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta7", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta7", + "Microsoft.Net.Http.Headers": "1.0.0-beta7", + "System.Diagnostics.Debug": "4.0.11-beta-23225", + "System.Text.Encoding": "4.0.11-beta-23225" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta7", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta7", + "System.Collections": "4.0.11-beta-23225", + "System.Diagnostics.Tools": "4.0.1-beta-23225", + "System.Globalization": "4.0.11-beta-23225", + "System.Globalization.Extensions": "4.0.1-beta-23225", + "System.Linq": "4.0.1-beta-23225", + "System.Linq.Expressions": "4.0.11-beta-23225", + "System.Net.Primitives": "4.0.11-beta-23225", + "System.Net.WebSockets": "4.0.0-beta-23225", + "System.Reflection.TypeExtensions": "4.0.1-beta-23225", + "System.Runtime": "4.0.21-beta-23225", + "System.Runtime.InteropServices": "4.0.21-beta-23225", + "System.Security.Claims": "4.0.1-beta-23225", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23225", + "System.Security.Principal": "4.0.1-beta-23225", + "System.Threading.Tasks": "4.0.11-beta-23225" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta7", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta7", + "Microsoft.Net.Http.Headers": "1.0.0-beta7", + "System.IO.FileSystem": "4.0.1-beta-23225", + "System.Resources.ResourceManager": "4.0.1-beta-23225", + "System.Runtime": "4.0.21-beta-23225" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta7": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23225", + "System.Linq": "4.0.1-beta-23225", + "System.Net.Primitives": "4.0.11-beta-23225", + "System.Net.WebSockets": "4.0.0-beta-23225", + "System.Runtime.Extensions": "4.0.11-beta-23225", + "System.Security.Claims": "4.0.1-beta-23225", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23225", + "System.Security.Principal": "4.0.1-beta-23225" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.Loader.IIS/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta7", + "Microsoft.AspNet.Hosting": "1.0.0-beta7", + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-beta7", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta7", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta7", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta7", + "Microsoft.Win32.Registry": "4.0.0-beta-23225", + "System.Diagnostics.Process": "4.0.0-beta-23225", + "System.Net.NetworkInformation": "4.0.10-beta-23123", + "System.Reflection.Extensions": "4.0.1-beta-23225", + "System.Security.Principal.Windows": "4.0.0-beta-23225", + "System.Text.Encoding": "4.0.11-beta-23225", + "System.Text.Encoding.Extensions": "4.0.11-beta-23225", + "System.Threading": "4.0.11-beta-23225", + "System.Threading.ThreadPool": "4.0.10-beta-23225" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Loader.IIS.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Loader.IIS.dll": {} + } + }, + "Microsoft.AspNet.Loader.IIS.Interop/1.0.0-beta7": { + "type": "package" + }, + "Microsoft.AspNet.Server.IIS/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Loader.IIS": "1.0.0-beta7", + "Microsoft.AspNet.Loader.IIS.Interop": "1.0.0-beta7" + } + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta7", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta7", + "System.Collections": "4.0.11-beta-23225", + "System.Diagnostics.Debug": "4.0.11-beta-23225", + "System.Diagnostics.TraceSource": "4.0.0-beta-23225", + "System.Diagnostics.Tracing": "4.0.21-beta-23225", + "System.Globalization": "4.0.11-beta-23225", + "System.IO": "4.0.11-beta-23225", + "System.Linq": "4.0.1-beta-23225", + "System.Net.Primitives": "4.0.11-beta-23225", + "System.Runtime.Extensions": "4.0.11-beta-23225", + "System.Runtime.InteropServices": "4.0.21-beta-23225", + "System.Text.Encoding": "4.0.11-beta-23225", + "System.Threading": "4.0.11-beta-23225", + "System.Threading.Tasks": "4.0.11-beta-23225", + "System.Threading.Thread": "4.0.0-beta-23225", + "System.Threading.ThreadPool": "4.0.10-beta-23225" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.dll": {} + } + }, + "Microsoft.AspNet.Server.WebListener/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta7", + "Microsoft.Net.Http.Headers": "1.0.0-beta7", + "Microsoft.Net.Http.Server": "1.0.0-beta7", + "System.Security.Claims": "4.0.1-beta-23225" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Server.WebListener.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Server.WebListener.dll": {} + } + }, + "Microsoft.AspNet.WebSockets.Protocol/1.0.0-beta7": { + "type": "project", + "dependencies": { + "Microsoft.Framework.NotNullAttribute.Sources": "1.0.0-beta7", + "System.Diagnostics.Contracts": "4.0.1-beta-23225", + "System.IO": "4.0.11-beta-23225", + "System.Linq": "4.0.1-beta-23225", + "System.Net.WebSockets": "4.0.0-beta-23225", + "System.Runtime": "4.0.21-beta-23225", + "System.Runtime.Extensions": "4.0.11-beta-23225", + "System.Runtime.InteropServices": "4.0.21-beta-23225", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23225", + "System.Text.Encoding.Extensions": "4.0.11-beta-23225", + "System.Threading": "4.0.11-beta-23225", + "System.Threading.Tasks": "4.0.11-beta-23225", + "System.Threading.Timer": "4.0.1-beta-23225" + } + }, + "Microsoft.AspNet.WebSockets.Server/1.0.0-beta7": { + "type": "project", + "dependencies": { + "Microsoft.AspNet.Http": "1.0.0-beta7", + "Microsoft.AspNet.WebSockets.Protocol": "1.0.0-beta7", + "System.Runtime": "4.0.21-beta-23225" + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta7", + "System.Collections": "4.0.11-beta-23225", + "System.Diagnostics.Debug": "4.0.11-beta-23225", + "System.IO": "4.0.11-beta-23225", + "System.IO.FileSystem": "4.0.1-beta-23225", + "System.Runtime": "4.0.21-beta-23225", + "System.Runtime.Extensions": "4.0.11-beta-23225" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Dnx.Compilation.Abstractions/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta7", + "System.IO.FileSystem": "4.0.1-beta-23225" + }, + "compile": { + "lib/dnxcore50/Microsoft.Dnx.Compilation.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Dnx.Compilation.Abstractions.dll": {} + } + }, + "Microsoft.Dnx.Runtime.Abstractions/1.0.0-beta7": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23225", + "System.ComponentModel": "4.0.1-beta-23225", + "System.IO": "4.0.11-beta-23225", + "System.Linq": "4.0.1-beta-23225", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime": "4.0.21-beta-23225", + "System.Runtime.Extensions": "4.0.11-beta-23225", + "System.Threading.Tasks": "4.0.11-beta-23225" + }, + "compile": { + "lib/dnxcore50/Microsoft.Dnx.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Dnx.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta7": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23225", + "System.Threading": "4.0.11-beta-23225", + "System.Threading.Tasks": "4.0.11-beta-23225" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta7", + "System.Collections": "4.0.11-beta-23225", + "System.Diagnostics.Debug": "4.0.11-beta-23225", + "System.IO": "4.0.11-beta-23225", + "System.IO.FileSystem": "4.0.1-beta-23225", + "System.Resources.ResourceManager": "4.0.1-beta-23225", + "System.Runtime.Extensions": "4.0.11-beta-23225", + "System.Runtime.InteropServices": "4.0.21-beta-23225" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta7": { + "type": "package", + "dependencies": { + "System.Linq": "4.0.1-beta-23225" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta7" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta7" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta7" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Ini.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Ini.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta7", + "System.Collections": "4.0.11-beta-23225", + "System.Collections.Concurrent": "4.0.11-beta-23225", + "System.Threading": "4.0.11-beta-23225", + "System.Threading.Tasks": "4.0.11-beta-23225" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta7": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-beta-23225", + "System.Diagnostics.Debug": "4.0.11-beta-23225", + "System.Globalization": "4.0.11-beta-23225", + "System.Linq": "4.0.1-beta-23225", + "System.Linq.Expressions": "4.0.11-beta-23225", + "System.Reflection": "4.1.0-beta-23225", + "System.Resources.ResourceManager": "4.0.1-beta-23225" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta7", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta7", + "System.Collections": "4.0.11-beta-23225", + "System.Collections.Concurrent": "4.0.11-beta-23225", + "System.ComponentModel": "4.0.1-beta-23225", + "System.Globalization": "4.0.11-beta-23225", + "System.Linq": "4.0.1-beta-23225", + "System.Threading": "4.0.11-beta-23225" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta7": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23225", + "System.Collections.Concurrent": "4.0.11-beta-23225", + "System.Globalization": "4.0.11-beta-23225", + "System.Linq": "4.0.1-beta-23225", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime": "4.0.21-beta-23225", + "System.Runtime.Extensions": "4.0.11-beta-23225", + "System.Runtime.InteropServices": "4.0.21-beta-23225" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta7": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.21-beta-23225" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta7": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-beta-23225", + "System.Diagnostics.Debug": "4.0.11-beta-23225", + "System.IO": "4.0.11-beta-23225", + "System.Reflection": "4.0.10", + "System.Runtime.Extensions": "4.0.11-beta-23225", + "System.Threading": "4.0.11-beta-23225" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta7": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23225", + "System.Diagnostics.Contracts": "4.0.1-beta-23225", + "System.Globalization": "4.0.11-beta-23225", + "System.Globalization.Extensions": "4.0.1-beta-23225", + "System.Linq": "4.0.1-beta-23225", + "System.Runtime": "4.0.21-beta-23225", + "System.Text.Encoding": "4.0.11-beta-23225" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Net.Http.Server/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta7", + "Microsoft.Net.WebSockets": "1.0.0-beta7", + "Microsoft.Win32.Primitives": "4.0.1-beta-23225", + "System.Diagnostics.Debug": "4.0.11-beta-23225", + "System.IO.FileSystem": "4.0.1-beta-23225", + "System.Security.Claims": "4.0.1-beta-23225", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23225", + "System.Security.Principal.Windows": "4.0.0-beta-23225", + "System.Threading.Overlapped": "4.0.1-beta-23225" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Server.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Server.dll": {} + } + }, + "Microsoft.Net.WebSockets/1.0.0-beta7": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23225", + "System.Diagnostics.Contracts": "4.0.1-beta-23225", + "System.Diagnostics.Tools": "4.0.1-beta-23225", + "System.IO": "4.0.11-beta-23225", + "System.Linq": "4.0.1-beta-23225", + "System.Net.Primitives": "4.0.11-beta-23225", + "System.Net.WebSockets": "4.0.0-beta-23225", + "System.Resources.ResourceManager": "4.0.1-beta-23225", + "System.Runtime.Extensions": "4.0.11-beta-23225", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23225", + "System.Text.Encoding.Extensions": "4.0.11-beta-23225", + "System.Threading": "4.0.11-beta-23225", + "System.Threading.Tasks": "4.0.11-beta-23225", + "System.Threading.ThreadPool": "4.0.10-beta-23225", + "System.Threading.Timer": "4.0.1-beta-23225" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.WebSockets.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "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.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.21-beta-23225" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Console/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "Microsoft.Win32.Registry": "4.0.0-beta-23225", + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.SecureString": "4.0.0-beta-23225", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10", + "System.Threading.Thread": "4.0.0-beta-23225", + "System.Threading.ThreadPool": "4.0.10-beta-23225" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.21-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.IO.FileSystem": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.Linq": "4.0.0", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Emit": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Net.NetworkInformation/4.0.10-beta-23123": { + "type": "package", + "dependencies": { + "System.Private.Networking": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Net.NetworkInformation.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.NetworkInformation.dll": {} + } + }, + "System.Net.Primitives/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Private.Networking": "4.0.1-beta-23225" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.10": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Collections": "4.0.10", + "System.Collections.Concurrent": "4.0.0", + "System.Collections.NonGeneric": "4.0.0", + "System.ComponentModel.EventBasedAsync": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.1-beta-23225": { + "type": "package", + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.1.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0.0": { + "type": "package", + "compile": { + "lib/contract/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/aspnetcore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.21-beta-23225": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1-beta-23225" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.21-beta-23225": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.IO": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.0", + "System.Security.Principal": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Handles": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Text.Encoding": "4.0.0", + "System.Text.Encoding.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Csp/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23225", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23225", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Csp.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Csp.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Globalization.Calendars": "4.0.0", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Runtime.Numerics": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23225", + "System.Security.Cryptography.Csp": "4.0.0-beta-23225", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23225", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Diagnostics.Debug": "4.0.0", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.InteropServices": "4.0.0", + "System.Security.Claims": "4.0.0", + "System.Security.Principal": "4.0.0", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Text.Encoding": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.InteropServices": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNet.WebSockets.Protocol/1.0.0-beta7": { + "type": "project", + "path": "../../src/Microsoft.AspNet.WebSockets.Protocol/project.json" + }, + "Microsoft.AspNet.WebSockets.Server/1.0.0-beta7": { + "type": "project", + "path": "../../src/Microsoft.AspNet.WebSockets.Server/project.json" + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "5rrDbGzjV73VssN0bIyalAK4r0OnZyo+n12d1FtiXI/7Le2vBAZGNYdB8jngMS+7aX6sWAEahQ/UP+ANrDoa+g==", + "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-beta7.nupkg", + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.DataProtection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "YBsPU+zEUnTD9p/Qo+rHKUucR8sbwZVQcPnJcSKUUThHTEUCTxN9QHsoJG0EddtSrHDgRBoyzCfbmIVEj2huMA==", + "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-beta7.nupkg", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "3OLk0MgTVonO+xz7xRnizcaRNjG20cfYN6OIlmnOqRKHjmupiSiH+J2ZM3X/LMReaMDM3ovO6lC1JQ3jgyFtBw==", + "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-beta7.nupkg", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Physical.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "/4jM5wmy64e5CIh20hjaymQ8XXcK43Sy6WQNVsaclfiJQS1ANNHIpcsJKnc7jHrLJrLbI2EdG2obk8msxhVeaw==", + "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-beta7.nupkg", + "Microsoft.AspNet.Hosting.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.Hosting.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "9sdLOqf3qxBlSW/p6YID0bUlTyN6i2sXAfoW2VA9lR6hvR8XB/7HC8i09yzAxUbTwIyIsZ/0oQYBuCofGl0BYg==", + "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-beta7.nupkg", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.Hosting.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta7": { + "type": "package", + "sha512": "jhS4jniofH3S4V+mBIa0J9tXOWvAydLRLjGFzJJ2eQzbyAXwbcYixzbBkm1yLz1Z8Mgnhtrr4yeFlZRfKKto2Q==", + "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-beta7.nupkg", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.Hosting.Server.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "oa2l2Z6k4W3Ac3x3T730iBQ7Pmv4ux3KzwEB0rq4+3uIYhi1rgHVRkDizFGkQzIJQyQzNnUgZUX9M6PaQZiMgQ==", + "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-beta7.nupkg", + "Microsoft.AspNet.Http.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "X1sg3BrXFqHIOWZpTWM8pfP4UunNR4xuLaNB3YNQITnOXDQbBYffMDNealnpKTWzpRY9vapQjD4oe452pLGQpQ==", + "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-beta7.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "OVBXfdP8Ex2UnoDg0QclIntH4FB+OevjkK4yFU278SNxbMMXOfmxk96Retez6xYJFg4aq7cV+zY+LA3dch+/kg==", + "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-beta7.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "SVRsWqwp5jdCXxVO8OO3G0zccgLzKQ3QrSMcktn8s+v+Sc1P6U7vlYWFGYS+BBys0P3WbwJ1nBBbEYR407nPoA==", + "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-beta7.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Loader.IIS/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "ArxchXTe/HjZOIvwmdPib6VZf9jR0zFJjHCyq5wwN+wID1IoE3wJZ9lUo3ChnaeInu31V/NcD58bXFbhVDv/pA==", + "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-beta7.nupkg", + "Microsoft.AspNet.Loader.IIS.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.Loader.IIS.nuspec" + ] + }, + "Microsoft.AspNet.Loader.IIS.Interop/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "H85twhbRnyAwpK4aXwiSXWV4bkmJZKhxKvcxwv1jMYlXgBBCmb0SqOKoyhZr+rygQq4lkPIWr2vsVnw/yST1VQ==", + "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-beta7.nupkg", + "Microsoft.AspNet.Loader.IIS.Interop.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.Loader.IIS.Interop.nuspec", + "tools/AspNet.Loader.dll" + ] + }, + "Microsoft.AspNet.Server.IIS/1.0.0-beta7": { + "type": "package", + "sha512": "ZETgGVNPN4IHCvQaqAskpEpuzSEoO4tft9tKOSL23LJcD9t4aiSooJcMUv4WtcpUk5sbOoVgXO8EeM2R1UHR7g==", + "files": [ + "Microsoft.AspNet.Server.IIS.1.0.0-beta7.nupkg", + "Microsoft.AspNet.Server.IIS.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.Server.IIS.nuspec" + ] + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "3sO/pJim533BKReqvrAMyBmYXHdqsEiPnPe/WuPnPQ+FxMSUEKMxVwxpR+OjU01xBsMXT+kapykrGB9h63mOZQ==", + "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-beta7.nupkg", + "Microsoft.AspNet.Server.Kestrel.1.0.0-beta7.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-beta7": { + "type": "package", + "serviceable": true, + "sha512": "BYLRthuG147FgIabcKVaLgOyara2JahsfolPCRYvO5XuQQaeZvNfWEwqokaCIKDiJOAfEOSoKpyS+E8rGWtSzg==", + "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-beta7.nupkg", + "Microsoft.AspNet.Server.WebListener.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.Server.WebListener.nuspec" + ] + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "6Oxkso9GeopSFybRtBvWtMQt/V6GcXJkKChrpLZ2jReL/eSI0hm5TrdAMn0TyRaCEVv13zOp7Gb3UGH3Ayrfhw==", + "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-beta7.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec", + "repo.json" + ] + }, + "Microsoft.Dnx.Compilation.Abstractions/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "yCmxm4XDf4Clz/SM/ImFiFJ6YURYYjzEWGIC+bH5OUSPhEXNoXh1jI+4EwNBOGIq67t2X7mfApgUR7n2U2p9Nw==", + "files": [ + "lib/dnx451/Microsoft.Dnx.Compilation.Abstractions.dll", + "lib/dnx451/Microsoft.Dnx.Compilation.Abstractions.xml", + "lib/dnxcore50/Microsoft.Dnx.Compilation.Abstractions.dll", + "lib/dnxcore50/Microsoft.Dnx.Compilation.Abstractions.xml", + "Microsoft.Dnx.Compilation.Abstractions.1.0.0-beta7.nupkg", + "Microsoft.Dnx.Compilation.Abstractions.1.0.0-beta7.nupkg.sha512", + "Microsoft.Dnx.Compilation.Abstractions.nuspec" + ] + }, + "Microsoft.Dnx.Runtime.Abstractions/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "T/aTQeWKnrC35n69MQmqizwhobfpmGJ0iT8x5R1ifEx3ZFHPIu5OB9Iwc5BRhIrY+/+zwikyQJ1fUSa26NfwxA==", + "files": [ + "lib/dnx451/Microsoft.Dnx.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Dnx.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Dnx.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Dnx.Runtime.Abstractions.xml", + "Microsoft.Dnx.Runtime.Abstractions.1.0.0-beta7.nupkg", + "Microsoft.Dnx.Runtime.Abstractions.1.0.0-beta7.nupkg.sha512", + "Microsoft.Dnx.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "qlhz0DhU5gsRavCCk7sMJmjO0N11Y7vTrcH6/3hM4HYvMG3n6SPF7gxUbWt81GCRLOdpW79lC/+qlTAy6Tm/3Q==", + "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-beta7.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "l2kMGvDGmLrpWwQz90pKHxuCPA4C5Ds3zWT/bNmt6M/PCM5wxEns/orKHH2m9Cx5H08WZy0FVyQMNQmED126cA==", + "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-beta7.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "bLVb0cfwlpIhFmJ2jJzMaOjoG3BGcyP6dtMU1NNzfs3mo1lr2Om5FKWFlYVou3uClM0yNdMtGzu5rQDb2UGxZA==", + "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-beta7.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "PZPhfiuMj1WNxMg0z59Y0EY4XMB0Pp4HPLb1+kxojS4K1q+79/b5WQmGz/5wwfCMxhuOrQ8pySR7Z10TIse7lQ==", + "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-beta7.nupkg", + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.Configuration.CommandLine.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "6A01+6kwuMLt0/1HWBf16GzQLa5mIppoQBCaUZX2UnRWwzKUT5Q6f8snIDFGDKgviUWGxoUobcWRSOznDhzkvA==", + "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-beta7.nupkg", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.Configuration.EnvironmentVariables.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "3tGDv1jWSps/B5wCagKFjY1wRbS8brz0ZhDfOpHJhhldeSVaKyw7wF7FDtuFCFUF3UG7R2fHLNSP4070p7fTwQ==", + "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-beta7.nupkg", + "Microsoft.Framework.Configuration.Ini.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.Configuration.Ini.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "S/EDYxeUSijcSNU0PqmTRIY9NfOsA4YhHzFeH2LJRi44qmUK2puCBUoofbmIPz+jKTkWK7dBo5iqcJjScC2nhA==", + "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-beta7.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "uz/EhU7eGLP1kQw+jRljKGKxwC4Upay4ojKDkzKTZTA3OQTBnMoSsqwL+2mKYsu1rAT3OWyNHSu5DYRh9XUYPQ==", + "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-beta7.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "Os9opQuoB9EJ3pp4Vj5TWwaqAMG4D6WUdhg1WxVV3unc/rfhtN78SBaJXiTV59OUqt5NCI9JyeRJprtldPnNVA==", + "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-beta7.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "Q0kQ4D25MlRbBOU1zbvhKU1L7vuEhPS9iBxVw4SnOGtCo1KhdY6TnWi0d6XNegJHErapRVJQJnFnaQT75RbQ8w==", + "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-beta7.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta7": { + "type": "package", + "sha512": "kQEnnd9EfkktgUUYcMPqhUbK95PO3KWR0/CP+DxfYwpQZLursg9IjExfN5QU93dju1N92cXPhu/AagkQwHYSWA==", + "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-beta7.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "CM9QItTmfUvFYM4nMr7h0LPSvtIw6t5dQBfLB2L5fJxvSwJ00n6jmiJ62ZcQNjur9rjGRIpoCLlIpt3S03ykcw==", + "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-beta7.nupkg", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.WebEncoders.Core.nuspec", + "repo.json" + ] + }, + "Microsoft.Net.Http.Headers/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "/W2zzkJ/wNRiooNafeOjzNpMw2aREvEQoBib4p1pky54heAcbrQQAtuoOc4BdcafZxPwiXazZEmndVRdICbscw==", + "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-beta7.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-beta7.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec", + "repo.json" + ] + }, + "Microsoft.Net.Http.Server/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "IaMiWd7rdZgSnLtIfJOeLki4X8YQBS2a5yd+dbn0amSZN1/81GjGo266aIpULr5PMnwKiVdMEe+lL8seC+EYTw==", + "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-beta7.nupkg", + "Microsoft.Net.Http.Server.1.0.0-beta7.nupkg.sha512", + "Microsoft.Net.Http.Server.nuspec" + ] + }, + "Microsoft.Net.WebSockets/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "DDFEge2rJ9x0EOfApaW6cdaQxHViJmZ1dBDIE5BNBw5GMkVQMEGtr3RdiRV7TxPpdfW9gKo0kEloAdFnrLlmdQ==", + "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-beta7.nupkg", + "Microsoft.Net.WebSockets.1.0.0-beta7.nupkg.sha512", + "Microsoft.Net.WebSockets.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "TWQTvEUCXe1mlQ6OTHOO4AfpsQeaWpfU1PBjNkSAuZNdDlb2uIBRt0ruO1aSqM9jH+hok87RpaWffIyJyOnpCg==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "Microsoft.Win32.Primitives.4.0.1-beta-23225.nupkg", + "Microsoft.Win32.Primitives.4.0.1-beta-23225.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "kOsQFW7mLojbtpeR2/WRYCdnKe42/Mg89SaDl91XIypmxapI6OlPkRDgP9BgfSKeLtDeWO5aIipw+qp1qFx8KQ==", + "files": [ + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "Microsoft.Win32.Registry.4.0.0-beta-23225.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23225.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "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.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "5nxF7rLpel65n6081k8h3ptC6qlH+5WVauBCSlxwa6niB6TJeMP+yw8B2bK7IKDrcSv3EsrN7UTkfrqssxS4Eg==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Collections.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.11-beta-23225.nupkg", + "System.Collections.4.0.11-beta-23225.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "v20w+6uz/rj9kmbly4FDgltPLUtvUhEVxElnpJIcmZ2UEKKM2jNSPGonCdDqdOCWhXiswUPKv0Dxqqe9wwg0Qg==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Collections.Concurrent.4.0.11-beta-23225.nupkg", + "System.Collections.Concurrent.4.0.11-beta-23225.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Collections.NonGeneric.xml", + "ref/dotnet/es/System.Collections.NonGeneric.xml", + "ref/dotnet/fr/System.Collections.NonGeneric.xml", + "ref/dotnet/it/System.Collections.NonGeneric.xml", + "ref/dotnet/ja/System.Collections.NonGeneric.xml", + "ref/dotnet/ko/System.Collections.NonGeneric.xml", + "ref/dotnet/ru/System.Collections.NonGeneric.xml", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Collections.NonGeneric.4.0.0.nupkg", + "System.Collections.NonGeneric.4.0.0.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "xAqvacYTl713o1wE9E4raMp6ufoAJwb3cOkRWpeKIURrxgSyJsJZN8Za5mIWRsSIn2wil4FNF64fjmtKtostmA==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.1-beta-23225.nupkg", + "System.ComponentModel.4.0.1-beta-23225.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10": { + "type": "package", + "serviceable": true, + "sha512": "d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==", + "files": [ + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/dotnet/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ComponentModel.EventBasedAsync.4.0.10.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec" + ] + }, + "System.Console/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "zjjI63CYWqCUAzSCei5oz/A7FASxw4T3noBOMc+N5HaXYX6HoDp8E9Mhk7xLFoV4eflQnezkvmLaIReTR70Ydg==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Console.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Console.4.0.0-beta-23225.nupkg", + "System.Console.4.0.0-beta-23225.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Diagnostics.Contracts/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "iXXwqLl9I8XD95SmevgGzlpqwY8GRnXJ+FXuHTUlUQuhMdCzPMf8JMOCVRVOcuEXzjBG5+ry7P5DICBnMXUacQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Diagnostics.Contracts.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll", + "System.Diagnostics.Contracts.4.0.1-beta-23225.nupkg", + "System.Diagnostics.Contracts.4.0.1-beta-23225.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "tMcqYmhwk7a04TXqsNXawBdZqsEzaGL1TfdJx3meFfPbfw7JDelkuOuxPqrwP6knlKhLJH8ztUsVAIYD7Mi6QQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.11-beta-23225.nupkg", + "System.Diagnostics.Debug.4.0.11-beta-23225.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Process/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "yBIP0ts5Msh3QoiaseqPrc6Sh4e3t3iR9Spd7aVrfJZqUtq0cX96txwL+K/1R594IgN53I2hKpmLhHdWVRk1qA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Process.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.Process.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Diagnostics.Process.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.Process.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Diagnostics.Process.4.0.0-beta-23225.nupkg", + "System.Diagnostics.Process.4.0.0-beta-23225.nupkg.sha512", + "System.Diagnostics.Process.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "j/6iYxVLRNtCsSYZMBC5sZ4Uy9I2JhfiKt8QOmZZ3Vbh/lfcOhM4soACWpZ5rhca8MIHagkV4ExlPA6F2Ef+Ag==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.1-beta-23225.nupkg", + "System.Diagnostics.Tools.4.0.1-beta-23225.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "YxtO5PTJ2+g5/aSZpwRg5pti3TyR6pSRfkccazIU17v/+mLwaPnCYmfhm+lbjTwBUlZ/plIt2ngI8gpa/goLEg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.TraceSource.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.TraceSource.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Diagnostics.TraceSource.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.TraceSource.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Diagnostics.TraceSource.4.0.0-beta-23225.nupkg", + "System.Diagnostics.TraceSource.4.0.0-beta-23225.nupkg.sha512", + "System.Diagnostics.TraceSource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.21-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "oc889y6dJNHLlsVOn9mvyWL9SHUCOyJS3mtiVsNhn9x3FZfkjj6FR/b1yBYvy5+HKz5tpnxtaX4Yc60+8VCrSw==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.21-beta-23225.nupkg", + "System.Diagnostics.Tracing.4.0.21-beta-23225.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Globalization/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "EP1QanGQDNlRIaoOgJQY/CkAzBGR8kNfSE30xkvso3vwCu5+nsmGcATeaJf9NgiXn1RwI0QfpX02lqUEgMJxbg==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Globalization.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.11-beta-23225.nupkg", + "System.Globalization.4.0.11-beta-23225.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0": { + "type": "package", + "sha512": "cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Globalization.Calendars.xml", + "ref/dotnet/es/System.Globalization.Calendars.xml", + "ref/dotnet/fr/System.Globalization.Calendars.xml", + "ref/dotnet/it/System.Globalization.Calendars.xml", + "ref/dotnet/ja/System.Globalization.Calendars.xml", + "ref/dotnet/ko/System.Globalization.Calendars.xml", + "ref/dotnet/ru/System.Globalization.Calendars.xml", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hans/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hant/System.Globalization.Calendars.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0.nupkg", + "System.Globalization.Calendars.4.0.0.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "VaIN/ywmghEDYlhG5MxbxVec5pE47xyPqR4F6qf/DAXseBVdTLn0l81n93Cc94QSJi6v+RtasTwHl5ASfqa5zA==", + "files": [ + "lib/dotnet/System.Globalization.Extensions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Globalization.Extensions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Globalization.Extensions.4.0.1-beta-23225.nupkg", + "System.Globalization.Extensions.4.0.1-beta-23225.nupkg.sha512", + "System.Globalization.Extensions.nuspec" + ] + }, + "System.IO/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "wkZi/602eDK6SCtRK8cpfOQuVHP/wb9QZRIqxVoKAdp6xeMDTnJVrPZbE6AnKY9x5vymR9OwZxNZVmZ+2IzGVQ==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.IO.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.11-beta-23225.nupkg", + "System.IO.4.0.11-beta-23225.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.FileSystem/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "gr+pQbKusONE54GQCoD7jVLJ+ylboO+eK5p1ZJ3/ZSWhA2ReXk5jLwrd0p8G4nEwPb3I+9CKlVME/Wx1Ux5iHA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.IO.FileSystem.4.0.1-beta-23225.nupkg", + "System.IO.FileSystem.4.0.1-beta-23225.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "VV5HQkQchfkegt8hAWMXzd/BycU+rd3KhCofLh2yKMMuRpfOFilnD8MqnSKMulQ4MP9pnJ2wSzW/pKhmZFqV6Q==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.IO.FileSystem.Primitives.4.0.1-beta-23225.nupkg", + "System.IO.FileSystem.Primitives.4.0.1-beta-23225.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "7eMv5Ado4MBwEY1StUJ/lAwLtet+KcXExdMzc31aZu4KMnXMP/UXfGw+jC0vvPpVWcNDFl30AUuP75NhGMTC4A==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.IO.FileSystem.Watcher.4.0.0-beta-23225.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23225.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec" + ] + }, + "System.Linq/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "BY9iGcvY0q0cyzv3XzsC2A9WgRISdoCUQwH9l31a/Rqxl5qn11A2ypaGX/Fr18RRoTCnvUXC7MMkGhSCEtwsbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.1-beta-23225.nupkg", + "System.Linq.4.0.1-beta-23225.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "4Jrye8GXUOBGpc0t8QS6Ei5bhp/dCed1oEGDzKI3K0YERyAYKoSAEaGolTEdierMfOnmdIKf1qCxaKmdj6U+1Q==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.11-beta-23225.nupkg", + "System.Linq.Expressions.4.0.11-beta-23225.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Net.NetworkInformation/4.0.10-beta-23123": { + "type": "package", + "sha512": "NkKpsUm2MLoxT+YlSwexidAw2jGFIJuc6i4H9pT3nU3TQj7MZVursD/ohWj3nyBxthy7i00XLWkRZAwGao/zsg==", + "files": [ + "lib/DNXCore50/System.Net.NetworkInformation.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "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/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Net.NetworkInformation.4.0.10-beta-23123.nupkg", + "System.Net.NetworkInformation.4.0.10-beta-23123.nupkg.sha512", + "System.Net.NetworkInformation.nuspec" + ] + }, + "System.Net.Primitives/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "xmbQ1qCeZIJvhX06dtgKwyREzLKNQx30VVbPTqpfdVNlWdpm4iqqXNz6yD2Jq6VDpLezYBKR9IRxcozil77RLA==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Net.Primitives.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Net.Primitives.4.0.11-beta-23225.nupkg", + "System.Net.Primitives.4.0.11-beta-23225.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.WebSockets/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "rKZMd12mePmT+q703AylszKL2yzgQa7v9cqV6IkYeGOwksfNAe3WgIOgdVXbHf2sXEV+NSyGjHrTM9q0HAU7ag==", + "files": [ + "lib/DNXCore50/System.Net.WebSockets.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.WebSockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Net.WebSockets.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.WebSockets.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Net.WebSockets.4.0.0-beta-23225.nupkg", + "System.Net.WebSockets.4.0.0-beta-23225.nupkg.sha512", + "System.Net.WebSockets.nuspec" + ] + }, + "System.ObjectModel/4.0.10": { + "type": "package", + "serviceable": true, + "sha512": "Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.ObjectModel.xml", + "ref/dotnet/es/System.ObjectModel.xml", + "ref/dotnet/fr/System.ObjectModel.xml", + "ref/dotnet/it/System.ObjectModel.xml", + "ref/dotnet/ja/System.ObjectModel.xml", + "ref/dotnet/ko/System.ObjectModel.xml", + "ref/dotnet/ru/System.ObjectModel.xml", + "ref/dotnet/System.ObjectModel.dll", + "ref/dotnet/System.ObjectModel.xml", + "ref/dotnet/zh-hans/System.ObjectModel.xml", + "ref/dotnet/zh-hant/System.ObjectModel.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ObjectModel.4.0.10.nupkg", + "System.ObjectModel.4.0.10.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Networking/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "PcMdwhnkodbZmOj2RGGH/I5LvsIIdC+GJHORHnvdRFLUZNqIJE/0mEfA2BhWj5wiEbp8TlLyj/vEX6CXE8IKPQ==", + "files": [ + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.4.0.1-beta-23225.nupkg", + "System.Private.Networking.4.0.1-beta-23225.nupkg.sha512", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.Uri/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "fdKNkf1NIe8FVi8HiPg1NuFb4C1hn1oX/JHBu+S5LoMHorGYxJ6Rwwx5Ig9Flb5vICaeudpsf0Wyzc6israg6g==", + "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.1-beta-23225.nupkg", + "System.Private.Uri.4.0.1-beta-23225.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.1.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "WbLtaCxoe5XdqEyZuGpemSQ8YBJ8cj11zx+yxOxJfHbNrmu7oMQ29+J50swaqg3soUc3BVBMqfIhb/7gocDHQA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Reflection.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.1.0-beta-23225.nupkg", + "System.Reflection.4.1.0-beta-23225.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0.0": { + "type": "package", + "sha512": "DWeSx8yao/35ScUksM9r99IPpxAa8KUFskPa1pP5kfsgDLwgg7g5oAVgfoRyQT1D/9NAhJgP7+LfNuUwod8JRA==", + "files": [ + "lib/aspnetcore50/System.Reflection.Emit.dll", + "lib/contract/System.Reflection.Emit.dll", + "System.Reflection.Emit.4.0.0.nupkg", + "System.Reflection.Emit.4.0.0.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "aH5KBXgAEkai4ihTW3ycH2J8yNBp2qVh4S6zVWrItIv9yzujMUrQe+daTITa6WCaIjR65RyGalUnIV2CjM9XwA==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.1-beta-23225.nupkg", + "System.Reflection.Extensions.4.0.1-beta-23225.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==", + "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.nupkg", + "System.Reflection.Primitives.4.0.0.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "MZ1Ke69DuaQWTJvIhD+hhvF7VMRNnIbQoTHpM6taTEt8pP2yun7AdlspTem6/Wku0wjazYbueleIbZl/AqJz4Q==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.1-beta-23225.nupkg", + "System.Reflection.TypeExtensions.4.0.1-beta-23225.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "7ioHnWtsxL1KuzWr0a4OxyymR9Q/HGjDFX2cy7Sl1iG/1y/5Td7CkVsoDEYbgEJbelrKCsWNME2RcjF845fNEQ==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.1-beta-23225.nupkg", + "System.Resources.ResourceManager.4.0.1-beta-23225.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.21-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "3YYoQMbbiX6ayLsynZtnA+x7KIMier2NivCOxNzlfDb/ZmpVFCQ2XyYd33JYAVM7TnfFbFMzKZxD1kC+zo8wYA==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Runtime.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.21-beta-23225.nupkg", + "System.Runtime.4.0.21-beta-23225.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "Dgqglr6Xq3FYrJRPOzIEfACJBxAYfrzzuv4i2vVEwS8LhvA0oSBCM4OwlrPQTNOhFL+VKvogcHKs6O53DnAvZw==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.11-beta-23225.nupkg", + "System.Runtime.Extensions.4.0.11-beta-23225.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0.nupkg", + "System.Runtime.Handles.4.0.0.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.21-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "vFlRmA5VYtwNm/1tN+C/xCqOf/yfieg/lbAsI4ddUhQ1/c3voh6OB1cKmzuVe/Qn3BYqjEZP5d4vFiwIsZDvJw==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.21-beta-23225.nupkg", + "System.Runtime.InteropServices.4.0.21-beta-23225.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Runtime.Numerics.xml", + "ref/dotnet/es/System.Runtime.Numerics.xml", + "ref/dotnet/fr/System.Runtime.Numerics.xml", + "ref/dotnet/it/System.Runtime.Numerics.xml", + "ref/dotnet/ja/System.Runtime.Numerics.xml", + "ref/dotnet/ko/System.Runtime.Numerics.xml", + "ref/dotnet/ru/System.Runtime.Numerics.xml", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/dotnet/System.Runtime.Numerics.xml", + "ref/dotnet/zh-hans/System.Runtime.Numerics.xml", + "ref/dotnet/zh-hant/System.Runtime.Numerics.xml", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "System.Runtime.Numerics.4.0.0.nupkg", + "System.Runtime.Numerics.4.0.0.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Security.Claims/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "6HpwXj/NmPJJcJfPlTq340iQOPPUgMRGY/q4hU2IaD5fEJtV2VBxd4JQ1SKKl5Ez0I/EBeEehnCOveCdO958MA==", + "files": [ + "lib/dotnet/System.Security.Claims.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Security.Claims.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Claims.4.0.1-beta-23225.nupkg", + "System.Security.Claims.4.0.1-beta-23225.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Algorithms/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "GjeU8uLxWigoEEtfD2aBtPLmskJNnanmUwNSNKdHHzIuGr69hwmSsaVA1IDJSQ1dX5WQY32v1O1MROCfEq/Seg==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Algorithms.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Security.Cryptography.Algorithms.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.Algorithms.4.0.0-beta-23225.nupkg", + "System.Security.Cryptography.Algorithms.4.0.0-beta-23225.nupkg.sha512", + "System.Security.Cryptography.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "1jST6Vz6/AjO4yFb0Ebw2TJQwVq3FNoBazRjgXBaCgUpL3uomg0XyzeGFoeL3Yy/GB3KGF2OzthtsNH/ikQfvg==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Csp.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Security.Cryptography.Csp.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.Csp.4.0.0-beta-23225.nupkg", + "System.Security.Cryptography.Csp.4.0.0-beta-23225.nupkg.sha512", + "System.Security.Cryptography.Csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "cnSypPb7Xhng+D/VRZyu+bPvQ4+ShNt6epFmFRfYRPqmRcVHdYxuIOVTPSvbqkIz56IeYW8xOwkuOU7YdRUzbg==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.Encoding.4.0.0-beta-23225.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23225.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "acOPCfkrkOFr/NAnA+hIOnY8yQZr94JzJ02heQDIqE0sFKyBITLbgQBoO+gTBVRxGr1o+oiYbFnXY0Q30+SACg==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Security.Cryptography.Primitives.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.Primitives.4.0.0-beta-23225.nupkg", + "System.Security.Cryptography.Primitives.4.0.0-beta-23225.nupkg.sha512", + "System.Security.Cryptography.Primitives.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "B1IFymfZHmgOprkMBkFQBdU7ctcG4IZe07v6p2HjVJMwWoRULJtpFAosDOhWpi5cNbjW6SvuiJAfxApQ0t99YA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23225.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23225.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "DidXniZHxQUsTpf3R6AoYucXRAs8wUWmiWVvFfSpf8E1LfVNPjHwnZuQIaRaHpFaK6uRekJ07y+gs7xvfNuhoQ==", + "files": [ + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Security.Principal.4.0.1-beta-23225.nupkg", + "System.Security.Principal.4.0.1-beta-23225.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "wnV9/UuJ6Vt6RMlp72RtNbzQaqspeHypl7D3TNeLg/Xy+63tJASbVXfNZ9V3Q+TZ9KjJJDFSIpv6e1w6uLJJCA==", + "files": [ + "lib/DNXCore50/System.Security.Principal.Windows.dll", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/dotnet/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "System.Security.Principal.Windows.4.0.0-beta-23225.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23225.nupkg.sha512", + "System.Security.Principal.Windows.nuspec" + ] + }, + "System.Security.SecureString/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "fWZiVly2v05MLJFbtJBwThJmSQAh1slsEUqVxjy/K58RWHN8ar8BNz/1h318eHNd5vcTA7155awMNNMzY/Cbag==", + "files": [ + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.SecureString.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Security.SecureString.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.SecureString.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.SecureString.4.0.0-beta-23225.nupkg", + "System.Security.SecureString.4.0.0-beta-23225.nupkg.sha512", + "System.Security.SecureString.nuspec" + ] + }, + "System.Text.Encoding/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "z86Mk322Z8s3g7pKYB7ZsXcIhfSNuBmziUc5vEgKtrMggpWNcZ6DOhPiqAEJBSfymv2N+h/0xVpzeSVE/iLMHw==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Text.Encoding.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.11-beta-23225.nupkg", + "System.Text.Encoding.4.0.11-beta-23225.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "rM8VmuhRseKWeUU81UovPUS8mEAuTucvaSG7BEmEZ3fPLWecL9LKnZTs3OKePlknVZeBeB8swPr2fZ8isHGwSg==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.11-beta-23225.nupkg", + "System.Text.Encoding.Extensions.4.0.11-beta-23225.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "RM1e/6hkwXjPN9wJytxqnEaaAknR63g1g3yrwPvun8VAZPixjIjo3tO5Y7KnW9k4GSKwkFmUJnUxBwse6VMTMA==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Text.RegularExpressions.4.0.11-beta-23225.nupkg", + "System.Text.RegularExpressions.4.0.11-beta-23225.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "B/+Lw3Z8IQCMtVT0/2ywBSnT35DleljjmwYqdtM1+LpBo5pf8WX/6lwZF0XSgXjROjxz5oe1IArTgv0uZ+0aOQ==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Threading.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.11-beta-23225.nupkg", + "System.Threading.4.0.11-beta-23225.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "RV3QnaZs+mvukC6STkvwpyVps8r8tco9qh85BBChapX0AgiIgarGbDlPLeuAfPm584Qh8efKYMiqFkaSI08kZg==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.1-beta-23225.nupkg", + "System.Threading.Overlapped.4.0.1-beta-23225.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "8NHb4nr8zepyfG64hNmQ94LOwfD3DVU+ij+Kj33VrNOZTiHze246nV935gE00XUaIK9IATklpcQ15Le9aF3ZhQ==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.11-beta-23225.nupkg", + "System.Threading.Tasks.4.0.11-beta-23225.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "bT6etm8UPPzO1J1Hf3PsafbG8UN8B0/ku0v8b0/q75X6EIQFnxajuKKe8CXtrjGEDQZv+hPnyZMqvp42rXo0yA==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.Thread.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Threading.Thread.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.Thread.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Threading.Thread.4.0.0-beta-23225.nupkg", + "System.Threading.Thread.4.0.0-beta-23225.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "QX+0t6MbaSJ+NedX9HhT8inVFkuaCM3OQioPw6+Ma6SVS9kJoWY4K8H280wssZSjVB7+tv5qUqTYtJ/wodvSTg==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.ThreadPool.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.ThreadPool.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Threading.ThreadPool.4.0.10-beta-23225.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23225.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "/9Vpl4IufMAx4Rea4ZlpjtlF744vSraJbYj8yFG3pXTHtH27VYcDUpBScVaM1mmHgOZSh8zyaohhXpzUtIg2/A==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Threading.Timer.dll", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/win81/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.1-beta-23225.nupkg", + "System.Threading.Timer.4.0.1-beta-23225.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.Server.IIS >= 1.0.0-beta7", + "Microsoft.AspNet.Server.WebListener >= 1.0.0-beta7", + "Microsoft.AspNet.WebSockets.Server >= 1.0.0-beta7", + "Microsoft.AspNet.Server.Kestrel >= 1.0.0-beta7" + ], + "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 3ae8fee1..060b0759 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-*", - "Microsoft.AspNet.Server.Kestrel": "1.0.0-*", - "xunit.runner.aspnet": "2.0.0-aspnet-*" + "Microsoft.AspNet.WebSockets.Protocol": "1.0.0-beta7", + "Microsoft.AspNet.WebSockets.Client": "1.0.0-beta7", + "Microsoft.AspNet.WebSockets.Server": "1.0.0-beta7", + "Microsoft.AspNet.Server.Kestrel": "1.0.0-beta7", + "xunit.runner.aspnet": "2.0.0-aspnet-beta7" }, "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..8cc64486 --- /dev/null +++ b/test/Microsoft.AspNet.WebSockets.Client.Test/project.lock.json @@ -0,0 +1,1418 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta7", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta7", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta7", + "Microsoft.AspNet.Http": "1.0.0-beta7", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta7", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta7", + "Microsoft.Framework.Configuration": "1.0.0-beta7", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta7", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta7", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta7", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta7", + "Microsoft.Framework.Logging": "1.0.0-beta7", + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta7", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta7", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta7", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta7", + "Microsoft.Net.Http.Headers": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta7", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta7", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta7", + "Microsoft.Net.Http.Headers": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta7", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta7" + }, + "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.WebSockets.Client/1.0.0-beta7": { + "type": "project", + "dependencies": { + "Microsoft.AspNet.WebSockets.Protocol": "1.0.0-beta7" + } + }, + "Microsoft.AspNet.WebSockets.Protocol/1.0.0-beta7": { + "type": "project", + "dependencies": { + "Microsoft.Framework.NotNullAttribute.Sources": "1.0.0-beta7" + } + }, + "Microsoft.AspNet.WebSockets.Server/1.0.0-beta7": { + "type": "project", + "dependencies": { + "Microsoft.AspNet.Http": "1.0.0-beta7", + "Microsoft.AspNet.WebSockets.Protocol": "1.0.0-beta7" + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta7" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0-beta1-20150812-01": { + "type": "package", + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.1.0-beta1-20150812-01": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.1.0-beta1-20150812-01]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.1.0-alpha-00009" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.1.0-beta1-20150812-01": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.1.0-beta1-20150812-01]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Dnx.Compilation.Abstractions/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta7" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Dnx.Compilation.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Dnx.Compilation.Abstractions.dll": {} + } + }, + "Microsoft.Dnx.Loader/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta7" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Dnx.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Dnx.Loader.dll": {} + } + }, + "Microsoft.Dnx.Runtime/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.1.0-beta1-20150812-01", + "Microsoft.Dnx.Loader": "1.0.0-beta7", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta7" + }, + "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.Dnx.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Dnx.Runtime.dll": {} + } + }, + "Microsoft.Dnx.Runtime.Abstractions/1.0.0-beta7": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Dnx.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Dnx.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Dnx.TestAdapter/1.0.0-beta7": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Dnx.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Dnx.TestAdapter.dll": {} + } + }, + "Microsoft.Dnx.TestHost/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-beta7", + "Microsoft.Dnx.Runtime": "1.0.0-beta7", + "Microsoft.Dnx.TestAdapter": "1.0.0-beta7", + "Microsoft.Framework.Logging": "1.0.0-beta7", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Dnx.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Dnx.TestHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta7": { + "type": "package", + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta7", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "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-beta7": { + "type": "package", + "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-beta7": { + "type": "package", + "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-beta7": { + "type": "package", + "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": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Reflection.Metadata/1.1.0-alpha-00009": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "1.1.37-beta-23024" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "type": "package", + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.0.0-rc3-build2880": { + "type": "package", + "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-beta7": { + "type": "package", + "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": { + "type": "package", + "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": {}, + "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.runner.aspnet/2.0.0-aspnet-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta7", + "Microsoft.Dnx.TestHost": "1.0.0-beta7", + "xunit.assert": "2.0.0-rc3-build2880", + "xunit.execution.AspNet": "2.0.0-aspnet-beta7", + "xunit.runner.utility.AspNet": "2.0.0-aspnet-beta7" + }, + "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-beta7": { + "type": "package", + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.Reflection", + "System.Runtime" + ], + "compile": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNet.WebSockets.Client/1.0.0-beta7": { + "type": "project", + "path": "../../src/Microsoft.AspNet.WebSockets.Client/project.json" + }, + "Microsoft.AspNet.WebSockets.Protocol/1.0.0-beta7": { + "type": "project", + "path": "../../src/Microsoft.AspNet.WebSockets.Protocol/project.json" + }, + "Microsoft.AspNet.WebSockets.Server/1.0.0-beta7": { + "type": "project", + "path": "../../src/Microsoft.AspNet.WebSockets.Server/project.json" + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "YBsPU+zEUnTD9p/Qo+rHKUucR8sbwZVQcPnJcSKUUThHTEUCTxN9QHsoJG0EddtSrHDgRBoyzCfbmIVEj2huMA==", + "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-beta7.nupkg", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "3OLk0MgTVonO+xz7xRnizcaRNjG20cfYN6OIlmnOqRKHjmupiSiH+J2ZM3X/LMReaMDM3ovO6lC1JQ3jgyFtBw==", + "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-beta7.nupkg", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Physical.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "/4jM5wmy64e5CIh20hjaymQ8XXcK43Sy6WQNVsaclfiJQS1ANNHIpcsJKnc7jHrLJrLbI2EdG2obk8msxhVeaw==", + "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-beta7.nupkg", + "Microsoft.AspNet.Hosting.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.Hosting.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "9sdLOqf3qxBlSW/p6YID0bUlTyN6i2sXAfoW2VA9lR6hvR8XB/7HC8i09yzAxUbTwIyIsZ/0oQYBuCofGl0BYg==", + "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-beta7.nupkg", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.Hosting.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta7": { + "type": "package", + "sha512": "jhS4jniofH3S4V+mBIa0J9tXOWvAydLRLjGFzJJ2eQzbyAXwbcYixzbBkm1yLz1Z8Mgnhtrr4yeFlZRfKKto2Q==", + "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-beta7.nupkg", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.Hosting.Server.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "oa2l2Z6k4W3Ac3x3T730iBQ7Pmv4ux3KzwEB0rq4+3uIYhi1rgHVRkDizFGkQzIJQyQzNnUgZUX9M6PaQZiMgQ==", + "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-beta7.nupkg", + "Microsoft.AspNet.Http.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "X1sg3BrXFqHIOWZpTWM8pfP4UunNR4xuLaNB3YNQITnOXDQbBYffMDNealnpKTWzpRY9vapQjD4oe452pLGQpQ==", + "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-beta7.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "OVBXfdP8Ex2UnoDg0QclIntH4FB+OevjkK4yFU278SNxbMMXOfmxk96Retez6xYJFg4aq7cV+zY+LA3dch+/kg==", + "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-beta7.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "SVRsWqwp5jdCXxVO8OO3G0zccgLzKQ3QrSMcktn8s+v+Sc1P6U7vlYWFGYS+BBys0P3WbwJ1nBBbEYR407nPoA==", + "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-beta7.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "3sO/pJim533BKReqvrAMyBmYXHdqsEiPnPe/WuPnPQ+FxMSUEKMxVwxpR+OjU01xBsMXT+kapykrGB9h63mOZQ==", + "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-beta7.nupkg", + "Microsoft.AspNet.Server.Kestrel.1.0.0-beta7.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-beta7": { + "type": "package", + "serviceable": true, + "sha512": "6Oxkso9GeopSFybRtBvWtMQt/V6GcXJkKChrpLZ2jReL/eSI0hm5TrdAMn0TyRaCEVv13zOp7Gb3UGH3Ayrfhw==", + "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-beta7.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-beta7.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec", + "repo.json" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0-beta1-20150812-01": { + "type": "package", + "sha512": "mGKPHMowSaS6frF/ze8eM/gJqZr5A1TniBTU7MI41Cg9zeKgrgwZltCJ6JjDvYnVtfkHlTWM8oHIaL7q5yxpgg==", + "files": [ + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "Microsoft.CodeAnalysis.Analyzers.1.1.0-beta1-20150812-01.nupkg", + "Microsoft.CodeAnalysis.Analyzers.1.1.0-beta1-20150812-01.nupkg.sha512", + "Microsoft.CodeAnalysis.Analyzers.nuspec", + "ThirdPartyNotices.rtf", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.1.0-beta1-20150812-01": { + "type": "package", + "sha512": "0fKn7s4ZxdHPJvlQ0VAmtpWh8lsijHbr3AsSxTtvY0+2Yci3g8vn+Na24664978YLMbMJx+jshw/ymyqRCTePg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.1.0-beta1-20150812-01.nupkg", + "Microsoft.CodeAnalysis.Common.1.1.0-beta1-20150812-01.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.1.0-beta1-20150812-01": { + "type": "package", + "sha512": "IPwDPTdOWRbgAvnFp0my3p6CO2STL+Ejx4xnwf2VzRWdxbpujSQqUS3LLWVSKvr9EeRKT66eYf6T9NlEkviEMw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.1.0-beta1-20150812-01.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.1.0-beta1-20150812-01.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.Dnx.Compilation.Abstractions/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "yCmxm4XDf4Clz/SM/ImFiFJ6YURYYjzEWGIC+bH5OUSPhEXNoXh1jI+4EwNBOGIq67t2X7mfApgUR7n2U2p9Nw==", + "files": [ + "lib/dnx451/Microsoft.Dnx.Compilation.Abstractions.dll", + "lib/dnx451/Microsoft.Dnx.Compilation.Abstractions.xml", + "lib/dnxcore50/Microsoft.Dnx.Compilation.Abstractions.dll", + "lib/dnxcore50/Microsoft.Dnx.Compilation.Abstractions.xml", + "Microsoft.Dnx.Compilation.Abstractions.1.0.0-beta7.nupkg", + "Microsoft.Dnx.Compilation.Abstractions.1.0.0-beta7.nupkg.sha512", + "Microsoft.Dnx.Compilation.Abstractions.nuspec" + ] + }, + "Microsoft.Dnx.Loader/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "3uBfq0K7nUNVqFmKfVYrmBNki8pHvFlIUX4zGcPJXlFIxHzhjvrVxdOH5YHs3p2AR2yNL2c/QK862j8WDZKCpw==", + "files": [ + "lib/dnx451/Microsoft.Dnx.Loader.dll", + "lib/dnx451/Microsoft.Dnx.Loader.xml", + "lib/dnxcore50/Microsoft.Dnx.Loader.dll", + "lib/dnxcore50/Microsoft.Dnx.Loader.xml", + "Microsoft.Dnx.Loader.1.0.0-beta7.nupkg", + "Microsoft.Dnx.Loader.1.0.0-beta7.nupkg.sha512", + "Microsoft.Dnx.Loader.nuspec" + ] + }, + "Microsoft.Dnx.Runtime/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "LL62dfqsHQf9pw/Ssj+vxzcZVI6tQmHr5wilWOYBz2sIrG6439RAspCeUsJQFrjg9UVxQlMZdkPI40NMhxboWA==", + "files": [ + "lib/dnx451/Microsoft.Dnx.Runtime.dll", + "lib/dnx451/Microsoft.Dnx.Runtime.xml", + "lib/dnxcore50/Microsoft.Dnx.Runtime.dll", + "lib/dnxcore50/Microsoft.Dnx.Runtime.xml", + "Microsoft.Dnx.Runtime.1.0.0-beta7.nupkg", + "Microsoft.Dnx.Runtime.1.0.0-beta7.nupkg.sha512", + "Microsoft.Dnx.Runtime.nuspec" + ] + }, + "Microsoft.Dnx.Runtime.Abstractions/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "T/aTQeWKnrC35n69MQmqizwhobfpmGJ0iT8x5R1ifEx3ZFHPIu5OB9Iwc5BRhIrY+/+zwikyQJ1fUSa26NfwxA==", + "files": [ + "lib/dnx451/Microsoft.Dnx.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Dnx.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Dnx.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Dnx.Runtime.Abstractions.xml", + "Microsoft.Dnx.Runtime.Abstractions.1.0.0-beta7.nupkg", + "Microsoft.Dnx.Runtime.Abstractions.1.0.0-beta7.nupkg.sha512", + "Microsoft.Dnx.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Dnx.TestAdapter/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "vq3meMgpy+ZUVBk9mqFjgP64034zU7a3Axd8MqtV+oHlgc7O6Pvj5JCQBqiz2V8FnpdDHnPqQdF+TXjoWapQQQ==", + "files": [ + "lib/dnx451/Microsoft.Dnx.TestAdapter.dll", + "lib/dnx451/Microsoft.Dnx.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Dnx.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Dnx.TestAdapter.xml", + "Microsoft.Dnx.TestAdapter.1.0.0-beta7.nupkg", + "Microsoft.Dnx.TestAdapter.1.0.0-beta7.nupkg.sha512", + "Microsoft.Dnx.TestAdapter.nuspec", + "repo.json" + ] + }, + "Microsoft.Dnx.TestHost/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "y1M3OhJzlNK9yXGZ00VFAij9Q20t2C3tnuVkjRMDO4hXaou/Yzn33yUB1kMenqoLwXCdIDzzclCIJ0+LDDbW9g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Dnx.TestHost.dll", + "lib/dnx451/Microsoft.Dnx.TestHost.xml", + "lib/dnxcore50/Microsoft.Dnx.TestHost.dll", + "lib/dnxcore50/Microsoft.Dnx.TestHost.xml", + "Microsoft.Dnx.TestHost.1.0.0-beta7.nupkg", + "Microsoft.Dnx.TestHost.1.0.0-beta7.nupkg.sha512", + "Microsoft.Dnx.TestHost.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "qlhz0DhU5gsRavCCk7sMJmjO0N11Y7vTrcH6/3hM4HYvMG3n6SPF7gxUbWt81GCRLOdpW79lC/+qlTAy6Tm/3Q==", + "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-beta7.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "l2kMGvDGmLrpWwQz90pKHxuCPA4C5Ds3zWT/bNmt6M/PCM5wxEns/orKHH2m9Cx5H08WZy0FVyQMNQmED126cA==", + "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-beta7.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "bLVb0cfwlpIhFmJ2jJzMaOjoG3BGcyP6dtMU1NNzfs3mo1lr2Om5FKWFlYVou3uClM0yNdMtGzu5rQDb2UGxZA==", + "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-beta7.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "PZPhfiuMj1WNxMg0z59Y0EY4XMB0Pp4HPLb1+kxojS4K1q+79/b5WQmGz/5wwfCMxhuOrQ8pySR7Z10TIse7lQ==", + "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-beta7.nupkg", + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.Configuration.CommandLine.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "6A01+6kwuMLt0/1HWBf16GzQLa5mIppoQBCaUZX2UnRWwzKUT5Q6f8snIDFGDKgviUWGxoUobcWRSOznDhzkvA==", + "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-beta7.nupkg", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.Configuration.EnvironmentVariables.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "3tGDv1jWSps/B5wCagKFjY1wRbS8brz0ZhDfOpHJhhldeSVaKyw7wF7FDtuFCFUF3UG7R2fHLNSP4070p7fTwQ==", + "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-beta7.nupkg", + "Microsoft.Framework.Configuration.Ini.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.Configuration.Ini.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "S/EDYxeUSijcSNU0PqmTRIY9NfOsA4YhHzFeH2LJRi44qmUK2puCBUoofbmIPz+jKTkWK7dBo5iqcJjScC2nhA==", + "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-beta7.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "uz/EhU7eGLP1kQw+jRljKGKxwC4Upay4ojKDkzKTZTA3OQTBnMoSsqwL+2mKYsu1rAT3OWyNHSu5DYRh9XUYPQ==", + "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-beta7.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "Os9opQuoB9EJ3pp4Vj5TWwaqAMG4D6WUdhg1WxVV3unc/rfhtN78SBaJXiTV59OUqt5NCI9JyeRJprtldPnNVA==", + "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-beta7.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "Q0kQ4D25MlRbBOU1zbvhKU1L7vuEhPS9iBxVw4SnOGtCo1KhdY6TnWi0d6XNegJHErapRVJQJnFnaQT75RbQ8w==", + "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-beta7.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta7": { + "type": "package", + "sha512": "kQEnnd9EfkktgUUYcMPqhUbK95PO3KWR0/CP+DxfYwpQZLursg9IjExfN5QU93dju1N92cXPhu/AagkQwHYSWA==", + "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-beta7.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "CM9QItTmfUvFYM4nMr7h0LPSvtIw6t5dQBfLB2L5fJxvSwJ00n6jmiJ62ZcQNjur9rjGRIpoCLlIpt3S03ykcw==", + "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-beta7.nupkg", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.WebEncoders.Core.nuspec", + "repo.json" + ] + }, + "Microsoft.Net.Http.Headers/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "/W2zzkJ/wNRiooNafeOjzNpMw2aREvEQoBib4p1pky54heAcbrQQAtuoOc4BdcafZxPwiXazZEmndVRdICbscw==", + "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-beta7.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-beta7.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec", + "repo.json" + ] + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "System.Collections.Immutable/1.1.36": { + "type": "package", + "serviceable": true, + "sha512": "MOlivTIeAIQPPMUPWIIoMCvZczjFRLYUWSYwqi1szu8QPyeIbsaPeI+hpXe1DzTxNwnRnmfYaoToi6kXIfSPNg==", + "files": [ + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "License-Stable.rtf", + "System.Collections.Immutable.1.1.36.nupkg", + "System.Collections.Immutable.1.1.36.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Reflection.Metadata/1.1.0-alpha-00009": { + "type": "package", + "serviceable": true, + "sha512": "KiUpXjNsXH27WwbtS5szL8qagPTlIzxrwPAAatLsPqlgkZtCQuA+Ss1XqbTUJxv1KweaNh/q5jGFdUFV0HILRw==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.pdb", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "System.Reflection.Metadata.1.1.0-alpha-00009.nupkg", + "System.Reflection.Metadata.1.1.0-alpha-00009.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "type": "package", + "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": { + "type": "package", + "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-beta7": { + "type": "package", + "sha512": "ckqwjwqM98GJyLxEezaSDjzK1fhvXUWN2x6GZ14YlNUjxnmI49GdAQ3U0CUcRAPTXRJxIrx7/ox4YPselJ8p2w==", + "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-beta7.nupkg", + "xunit.execution.AspNet.2.0.0-aspnet-beta7.nupkg.sha512", + "xunit.execution.AspNet.nuspec" + ] + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "type": "package", + "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-beta7": { + "type": "package", + "sha512": "HhZtN2LzcHwgS92+UXXrmyjoTHdabKrHz6RD7SAL9Rjq0w8nEg/lKYZ20lZYc9SWor5rlV0LHcT7YiM0qglVYQ==", + "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-beta7.nupkg", + "xunit.runner.aspnet.2.0.0-aspnet-beta7.nupkg.sha512", + "xunit.runner.aspnet.nuspec" + ] + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta7": { + "type": "package", + "sha512": "QSpg8/Vt9dVeDlHkP+pgBhUktbnfQra8FYg3VJzSG6bqw+xJVrYivtITjDmv1dO5IsxJdRp0c6RMEyo03y/yoQ==", + "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-beta7.nupkg", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta7.nupkg.sha512", + "xunit.runner.utility.AspNet.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.WebSockets.Protocol >= 1.0.0-beta7", + "Microsoft.AspNet.WebSockets.Client >= 1.0.0-beta7", + "Microsoft.AspNet.WebSockets.Server >= 1.0.0-beta7", + "Microsoft.AspNet.Server.Kestrel >= 1.0.0-beta7", + "xunit.runner.aspnet >= 2.0.0-aspnet-beta7" + ], + "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..6ecc67a1 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-beta7", + "Microsoft.Framework.NotNullAttribute.Sources": { + "type": "build", + "version": "1.0.0-beta7" + }, + "xunit.runner.aspnet": "2.0.0-aspnet-beta7" }, "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..e16a87cd --- /dev/null +++ b/test/Microsoft.AspNet.WebSockets.Protocol.Test/project.lock.json @@ -0,0 +1,706 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.AspNet.WebSockets.Protocol/1.0.0-beta7": { + "type": "project", + "dependencies": { + "Microsoft.Framework.NotNullAttribute.Sources": "1.0.0-beta7" + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0-beta1-20150812-01": { + "type": "package", + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.1.0-beta1-20150812-01": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.1.0-beta1-20150812-01]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.1.0-alpha-00009" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.1.0-beta1-20150812-01": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.1.0-beta1-20150812-01]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Dnx.Compilation.Abstractions/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta7" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Dnx.Compilation.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Dnx.Compilation.Abstractions.dll": {} + } + }, + "Microsoft.Dnx.Loader/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta7" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Dnx.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Dnx.Loader.dll": {} + } + }, + "Microsoft.Dnx.Runtime/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.1.0-beta1-20150812-01", + "Microsoft.Dnx.Loader": "1.0.0-beta7", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta7" + }, + "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.Dnx.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Dnx.Runtime.dll": {} + } + }, + "Microsoft.Dnx.Runtime.Abstractions/1.0.0-beta7": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Dnx.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Dnx.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Dnx.TestAdapter/1.0.0-beta7": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Dnx.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Dnx.TestAdapter.dll": {} + } + }, + "Microsoft.Dnx.TestHost/1.0.0-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-beta7", + "Microsoft.Dnx.Runtime": "1.0.0-beta7", + "Microsoft.Dnx.TestAdapter": "1.0.0-beta7", + "Microsoft.Framework.Logging": "1.0.0-beta7", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Dnx.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Dnx.TestHost.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta7": { + "type": "package", + "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-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta7", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta7" + }, + "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-beta7": { + "type": "package", + "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-beta7": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Reflection.Metadata/1.1.0-alpha-00009": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "1.1.37-beta-23024" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "type": "package", + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.0.0-rc3-build2880": { + "type": "package", + "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-beta7": { + "type": "package", + "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": { + "type": "package", + "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": {}, + "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.runner.aspnet/2.0.0-aspnet-beta7": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta7", + "Microsoft.Dnx.TestHost": "1.0.0-beta7", + "xunit.assert": "2.0.0-rc3-build2880", + "xunit.execution.AspNet": "2.0.0-aspnet-beta7", + "xunit.runner.utility.AspNet": "2.0.0-aspnet-beta7" + }, + "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-beta7": { + "type": "package", + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.Reflection", + "System.Runtime" + ], + "compile": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNet.WebSockets.Protocol/1.0.0-beta7": { + "type": "project", + "path": "../../src/Microsoft.AspNet.WebSockets.Protocol/project.json" + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0-beta1-20150812-01": { + "type": "package", + "sha512": "mGKPHMowSaS6frF/ze8eM/gJqZr5A1TniBTU7MI41Cg9zeKgrgwZltCJ6JjDvYnVtfkHlTWM8oHIaL7q5yxpgg==", + "files": [ + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "Microsoft.CodeAnalysis.Analyzers.1.1.0-beta1-20150812-01.nupkg", + "Microsoft.CodeAnalysis.Analyzers.1.1.0-beta1-20150812-01.nupkg.sha512", + "Microsoft.CodeAnalysis.Analyzers.nuspec", + "ThirdPartyNotices.rtf", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.1.0-beta1-20150812-01": { + "type": "package", + "sha512": "0fKn7s4ZxdHPJvlQ0VAmtpWh8lsijHbr3AsSxTtvY0+2Yci3g8vn+Na24664978YLMbMJx+jshw/ymyqRCTePg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.1.0-beta1-20150812-01.nupkg", + "Microsoft.CodeAnalysis.Common.1.1.0-beta1-20150812-01.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.1.0-beta1-20150812-01": { + "type": "package", + "sha512": "IPwDPTdOWRbgAvnFp0my3p6CO2STL+Ejx4xnwf2VzRWdxbpujSQqUS3LLWVSKvr9EeRKT66eYf6T9NlEkviEMw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.1.0-beta1-20150812-01.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.1.0-beta1-20150812-01.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.Dnx.Compilation.Abstractions/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "yCmxm4XDf4Clz/SM/ImFiFJ6YURYYjzEWGIC+bH5OUSPhEXNoXh1jI+4EwNBOGIq67t2X7mfApgUR7n2U2p9Nw==", + "files": [ + "lib/dnx451/Microsoft.Dnx.Compilation.Abstractions.dll", + "lib/dnx451/Microsoft.Dnx.Compilation.Abstractions.xml", + "lib/dnxcore50/Microsoft.Dnx.Compilation.Abstractions.dll", + "lib/dnxcore50/Microsoft.Dnx.Compilation.Abstractions.xml", + "Microsoft.Dnx.Compilation.Abstractions.1.0.0-beta7.nupkg", + "Microsoft.Dnx.Compilation.Abstractions.1.0.0-beta7.nupkg.sha512", + "Microsoft.Dnx.Compilation.Abstractions.nuspec" + ] + }, + "Microsoft.Dnx.Loader/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "3uBfq0K7nUNVqFmKfVYrmBNki8pHvFlIUX4zGcPJXlFIxHzhjvrVxdOH5YHs3p2AR2yNL2c/QK862j8WDZKCpw==", + "files": [ + "lib/dnx451/Microsoft.Dnx.Loader.dll", + "lib/dnx451/Microsoft.Dnx.Loader.xml", + "lib/dnxcore50/Microsoft.Dnx.Loader.dll", + "lib/dnxcore50/Microsoft.Dnx.Loader.xml", + "Microsoft.Dnx.Loader.1.0.0-beta7.nupkg", + "Microsoft.Dnx.Loader.1.0.0-beta7.nupkg.sha512", + "Microsoft.Dnx.Loader.nuspec" + ] + }, + "Microsoft.Dnx.Runtime/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "LL62dfqsHQf9pw/Ssj+vxzcZVI6tQmHr5wilWOYBz2sIrG6439RAspCeUsJQFrjg9UVxQlMZdkPI40NMhxboWA==", + "files": [ + "lib/dnx451/Microsoft.Dnx.Runtime.dll", + "lib/dnx451/Microsoft.Dnx.Runtime.xml", + "lib/dnxcore50/Microsoft.Dnx.Runtime.dll", + "lib/dnxcore50/Microsoft.Dnx.Runtime.xml", + "Microsoft.Dnx.Runtime.1.0.0-beta7.nupkg", + "Microsoft.Dnx.Runtime.1.0.0-beta7.nupkg.sha512", + "Microsoft.Dnx.Runtime.nuspec" + ] + }, + "Microsoft.Dnx.Runtime.Abstractions/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "T/aTQeWKnrC35n69MQmqizwhobfpmGJ0iT8x5R1ifEx3ZFHPIu5OB9Iwc5BRhIrY+/+zwikyQJ1fUSa26NfwxA==", + "files": [ + "lib/dnx451/Microsoft.Dnx.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Dnx.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Dnx.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Dnx.Runtime.Abstractions.xml", + "Microsoft.Dnx.Runtime.Abstractions.1.0.0-beta7.nupkg", + "Microsoft.Dnx.Runtime.Abstractions.1.0.0-beta7.nupkg.sha512", + "Microsoft.Dnx.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Dnx.TestAdapter/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "vq3meMgpy+ZUVBk9mqFjgP64034zU7a3Axd8MqtV+oHlgc7O6Pvj5JCQBqiz2V8FnpdDHnPqQdF+TXjoWapQQQ==", + "files": [ + "lib/dnx451/Microsoft.Dnx.TestAdapter.dll", + "lib/dnx451/Microsoft.Dnx.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Dnx.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Dnx.TestAdapter.xml", + "Microsoft.Dnx.TestAdapter.1.0.0-beta7.nupkg", + "Microsoft.Dnx.TestAdapter.1.0.0-beta7.nupkg.sha512", + "Microsoft.Dnx.TestAdapter.nuspec", + "repo.json" + ] + }, + "Microsoft.Dnx.TestHost/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "y1M3OhJzlNK9yXGZ00VFAij9Q20t2C3tnuVkjRMDO4hXaou/Yzn33yUB1kMenqoLwXCdIDzzclCIJ0+LDDbW9g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Dnx.TestHost.dll", + "lib/dnx451/Microsoft.Dnx.TestHost.xml", + "lib/dnxcore50/Microsoft.Dnx.TestHost.dll", + "lib/dnxcore50/Microsoft.Dnx.TestHost.xml", + "Microsoft.Dnx.TestHost.1.0.0-beta7.nupkg", + "Microsoft.Dnx.TestHost.1.0.0-beta7.nupkg.sha512", + "Microsoft.Dnx.TestHost.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "uz/EhU7eGLP1kQw+jRljKGKxwC4Upay4ojKDkzKTZTA3OQTBnMoSsqwL+2mKYsu1rAT3OWyNHSu5DYRh9XUYPQ==", + "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-beta7.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "Os9opQuoB9EJ3pp4Vj5TWwaqAMG4D6WUdhg1WxVV3unc/rfhtN78SBaJXiTV59OUqt5NCI9JyeRJprtldPnNVA==", + "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-beta7.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta7": { + "type": "package", + "serviceable": true, + "sha512": "Q0kQ4D25MlRbBOU1zbvhKU1L7vuEhPS9iBxVw4SnOGtCo1KhdY6TnWi0d6XNegJHErapRVJQJnFnaQT75RbQ8w==", + "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-beta7.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta7": { + "type": "package", + "sha512": "kQEnnd9EfkktgUUYcMPqhUbK95PO3KWR0/CP+DxfYwpQZLursg9IjExfN5QU93dju1N92cXPhu/AagkQwHYSWA==", + "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-beta7.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "shared/NotNullAttribute.cs" + ] + }, + "Newtonsoft.Json/6.0.6": { + "type": "package", + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "System.Collections.Immutable/1.1.36": { + "type": "package", + "serviceable": true, + "sha512": "MOlivTIeAIQPPMUPWIIoMCvZczjFRLYUWSYwqi1szu8QPyeIbsaPeI+hpXe1DzTxNwnRnmfYaoToi6kXIfSPNg==", + "files": [ + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "License-Stable.rtf", + "System.Collections.Immutable.1.1.36.nupkg", + "System.Collections.Immutable.1.1.36.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Reflection.Metadata/1.1.0-alpha-00009": { + "type": "package", + "serviceable": true, + "sha512": "KiUpXjNsXH27WwbtS5szL8qagPTlIzxrwPAAatLsPqlgkZtCQuA+Ss1XqbTUJxv1KweaNh/q5jGFdUFV0HILRw==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.pdb", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "System.Reflection.Metadata.1.1.0-alpha-00009.nupkg", + "System.Reflection.Metadata.1.1.0-alpha-00009.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "type": "package", + "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": { + "type": "package", + "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-beta7": { + "type": "package", + "sha512": "ckqwjwqM98GJyLxEezaSDjzK1fhvXUWN2x6GZ14YlNUjxnmI49GdAQ3U0CUcRAPTXRJxIrx7/ox4YPselJ8p2w==", + "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-beta7.nupkg", + "xunit.execution.AspNet.2.0.0-aspnet-beta7.nupkg.sha512", + "xunit.execution.AspNet.nuspec" + ] + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "type": "package", + "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-beta7": { + "type": "package", + "sha512": "HhZtN2LzcHwgS92+UXXrmyjoTHdabKrHz6RD7SAL9Rjq0w8nEg/lKYZ20lZYc9SWor5rlV0LHcT7YiM0qglVYQ==", + "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-beta7.nupkg", + "xunit.runner.aspnet.2.0.0-aspnet-beta7.nupkg.sha512", + "xunit.runner.aspnet.nuspec" + ] + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta7": { + "type": "package", + "sha512": "QSpg8/Vt9dVeDlHkP+pgBhUktbnfQra8FYg3VJzSG6bqw+xJVrYivtITjDmv1dO5IsxJdRp0c6RMEyo03y/yoQ==", + "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-beta7.nupkg", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta7.nupkg.sha512", + "xunit.runner.utility.AspNet.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.WebSockets.Protocol >= 1.0.0-beta7", + "Microsoft.Framework.NotNullAttribute.Sources >= 1.0.0-beta7", + "xunit.runner.aspnet >= 2.0.0-aspnet-beta7" + ], + "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..f0d092b8 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-beta7", + "Microsoft.AspNet.WebSockets.Client": "1.0.0-beta7" }, "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..10ed1d4d --- /dev/null +++ b/test/TestClient/project.lock.json @@ -0,0 +1,68 @@ +{ + "locked": true, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.AspNet.WebSockets.Client/1.0.0-beta7": { + "type": "project", + "dependencies": { + "Microsoft.AspNet.WebSockets.Protocol": "1.0.0-beta7" + } + }, + "Microsoft.AspNet.WebSockets.Protocol/1.0.0-beta7": { + "type": "project", + "dependencies": { + "Microsoft.Framework.NotNullAttribute.Sources": "1.0.0-beta7" + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta7": { + "type": "package", + "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.AspNet.WebSockets.Client/1.0.0-beta7": { + "type": "project", + "path": "../../src/Microsoft.AspNet.WebSockets.Client/project.json" + }, + "Microsoft.AspNet.WebSockets.Protocol/1.0.0-beta7": { + "type": "project", + "path": "../../src/Microsoft.AspNet.WebSockets.Protocol/project.json" + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta7": { + "type": "package", + "sha512": "kQEnnd9EfkktgUUYcMPqhUbK95PO3KWR0/CP+DxfYwpQZLursg9IjExfN5QU93dju1N92cXPhu/AagkQwHYSWA==", + "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-beta7.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta7.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "shared/NotNullAttribute.cs" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.WebSockets.Protocol >= 1.0.0-beta7", + "Microsoft.AspNet.WebSockets.Client >= 1.0.0-beta7" + ], + "DNX,Version=v4.5.1": [] + } +} \ No newline at end of file