diff --git a/build.cmd b/build.cmd index 41025afb2..7fa30d27a 100644 --- a/build.cmd +++ b/build.cmd @@ -16,11 +16,19 @@ copy %CACHED_NUGET% .nuget\nuget.exe > nul :restore IF EXIST packages\KoreBuild goto run -.nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre +IF DEFINED BUILDCMD_RELEASE ( + .nuget\NuGet.exe install KoreBuild -version 0.2.1-%BUILDCMD_RELEASE% -ExcludeVersion -o packages -nocache -pre +) ELSE ( + .nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre +) .nuget\NuGet.exe install Sake -version 0.2 -o packages -ExcludeVersion IF "%SKIP_DNX_INSTALL%"=="1" goto run -CALL packages\KoreBuild\build\dnvm upgrade -runtime CLR -arch x86 +IF DEFINED BUILDCMD_RELEASE ( + CALL packages\KoreBuild\build\dnvm install 1.0.0-%BUILDCMD_RELEASE% -runtime CLR -arch x86 -a default +) ELSE ( + CALL packages\KoreBuild\build\dnvm upgrade -runtime CLR -arch x86 +) CALL packages\KoreBuild\build\dnvm install default -runtime CoreCLR -arch x86 :run diff --git a/samples/CookieSample/project.json b/samples/CookieSample/project.json index e69eed0e2..cb047c79e 100644 --- a/samples/CookieSample/project.json +++ b/samples/CookieSample/project.json @@ -1,11 +1,11 @@ { "dependencies": { - "Microsoft.AspNet.Authentication.Cookies": "1.0.0-*", - "Microsoft.AspNet.DataProtection": "1.0.0-*", - "Microsoft.AspNet.Server.WebListener": "1.0.0-*", - "Microsoft.AspNet.Server.IIS": "1.0.0-*", - "Microsoft.Framework.Logging.Console": "1.0.0-*", - "Kestrel": "1.0.0-*" + "Microsoft.AspNet.Authentication.Cookies": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Server.WebListener": "1.0.0-beta5", + "Microsoft.AspNet.Server.IIS": "1.0.0-beta5", + "Microsoft.Framework.Logging.Console": "1.0.0-beta5", + "Kestrel": "1.0.0-beta5" }, "commands": { "web": "Microsoft.AspNet.Hosting server=Microsoft.AspNet.Server.WebListener server.urls=http://localhost:12345", diff --git a/samples/CookieSample/project.lock.json b/samples/CookieSample/project.lock.json new file mode 100644 index 000000000..daea99794 --- /dev/null +++ b/samples/CookieSample/project.lock.json @@ -0,0 +1,3830 @@ +{ + "locked": true, + "version": -9996, + "targets": { + "DNX,Version=v4.5.1": { + "Kestrel/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta5", + "Microsoft.AspNet.Server.Kestrel": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Kestrel.dll": {} + }, + "runtime": { + "lib/dnx451/Kestrel.dll": {} + } + }, + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Authentication.Cookies/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.Cookies.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.Cookies.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "System.IO", + "System.Security", + "System.Xml", + "System.Xml.Linq", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta5", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Configuration": "1.0.0-beta5", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta5", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.Loader.IIS/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Hosting": "1.0.0-beta5", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Loader.IIS.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Loader.IIS.dll": {} + } + }, + "Microsoft.AspNet.Loader.IIS.Interop/1.0.0-beta5": {}, + "Microsoft.AspNet.Server.IIS/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Loader.IIS.Interop": "1.0.0-beta5", + "Microsoft.AspNet.Loader.IIS": "1.0.0-beta5" + } + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll": {} + } + }, + "Microsoft.AspNet.Server.WebListener/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Net.Http.Server": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Server.WebListener.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Server.WebListener.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "System.Collections.Concurrent", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Console/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Console.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Console.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Net.Http.Server/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Net.WebSockets": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Server.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Server.dll": {} + } + }, + "Microsoft.Net.WebSockets/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/net45/Microsoft.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Net.WebSockets.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Kestrel/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta5", + "Microsoft.AspNet.Server.Kestrel": "1.0.0-beta5", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Kestrel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Kestrel.dll": {} + } + }, + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Authentication.Cookies/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.Cookies.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.Cookies.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption.Aes": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta5", + "System.IO": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta5", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Configuration": "1.0.0-beta5", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta5", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6", + "System.Console": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta5" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.Loader.IIS/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Hosting": "1.0.0-beta5", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.Diagnostics.Process": "4.0.0-beta-23019", + "System.Net.NetworkInformation": "4.0.10-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Loader.IIS.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Loader.IIS.dll": {} + } + }, + "Microsoft.AspNet.Loader.IIS.Interop/1.0.0-beta5": {}, + "Microsoft.AspNet.Server.IIS/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Loader.IIS.Interop": "1.0.0-beta5", + "Microsoft.AspNet.Loader.IIS": "1.0.0-beta5" + } + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.dll": {} + } + }, + "Microsoft.AspNet.Server.WebListener/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Net.Http.Server": "1.0.0-beta5", + "System.Security.Claims": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Server.WebListener.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Server.WebListener.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Linq": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Ini.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Ini.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Console/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "System.Runtime": "4.0.20-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Console.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Console.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Contracts": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Net.Http.Server/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Net.WebSockets": "1.0.0-beta5", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Server.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Server.dll": {} + } + }, + "Microsoft.Net.WebSockets/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Contracts": "4.0.0-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Timer": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.WebSockets.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Net.NetworkInformation/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.NetworkInformation.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.NetworkInformation.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + } + } + }, + "libraries": { + "Kestrel/1.0.0-beta5": { + "serviceable": true, + "sha512": "rFC89oqyntN0Z/ACBjYKaogIom3eW6YI8fFFw9ou2KWSSpDY1PCua4D/PDx4N2oYBhgFjBX4GyJmRZ/1L3n9Pw==", + "files": [ + "Kestrel.1.0.0-beta5.nupkg", + "Kestrel.1.0.0-beta5.nupkg.sha512", + "Kestrel.nuspec", + "lib/dnx451/Kestrel.dll", + "lib/dnx451/Kestrel.xml", + "lib/dnxcore50/Kestrel.dll", + "lib/dnxcore50/Kestrel.xml" + ] + }, + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "serviceable": true, + "sha512": "0aGfwSmbVHhNIQSp6dXqz6sLYD07U9Dgnw8rm/wnQDkLFfJ9iPQKBBTk/Oh/6wGwaSg9Ko7mzXTwILE42HZdZA==", + "files": [ + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.xml" + ] + }, + "Microsoft.AspNet.Authentication.Cookies/1.0.0-beta5": { + "serviceable": true, + "sha512": "slpGZOh7Gp8YFE9cdlzce67LFUAspBAp6WfjzhH270Ck/D8lzY83DiDLe2IQOhgH+MxlYi+r4bb7PvOhmoSM7g==", + "files": [ + "Microsoft.AspNet.Authentication.Cookies.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.Cookies.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.Cookies.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.Cookies.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.Cookies.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Cookies.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Cookies.xml" + ] + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "serviceable": true, + "sha512": "nhCP9Q0TSA3F31w+SXoXh5X9zbGRpyGZrkBhid++k673Mxg1uzkDNa18Z0edF7Yiua2ZHZeA/GPkPUG0pzER/A==", + "files": [ + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Cryptography.Internal.nuspec", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.xml" + ] + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "serviceable": true, + "sha512": "f8oqJIyHUbmsIkgEq+A7QQOKr60s4GoewR2I+ItHGuHdwV6ICuNnu4yKSx7v0k/uh51T49ECcrrMApUepuV2mg==", + "files": [ + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.nuspec", + "lib/dnx451/Microsoft.AspNet.DataProtection.dll", + "lib/dnx451/Microsoft.AspNet.DataProtection.xml", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.xml", + "lib/net451/Microsoft.AspNet.DataProtection.dll", + "lib/net451/Microsoft.AspNet.DataProtection.xml" + ] + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ow8W+rMtA0rsiCtvHtUs+f5wrzMj0rtoSjl+vTgtGNQ0Ib+3tsGbKgA9+l5kzGKG6RUebnCK+vXKP/zCXDZOvw==", + "files": [ + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.Abstractions.nuspec", + "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.FeatureModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "M6ltNGrh4gHU+DiMbV074ZDwDQAIYx1SEOlltX7XzKbiDztYuTAtXiv8M/wkjZBeVdkszkE0NPOlMb/pbfww6g==", + "files": [ + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg", + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.FeatureModel.nuspec", + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll", + "lib/dnx451/Microsoft.AspNet.FeatureModel.xml", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.xml" + ] + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Az9I0ufHV2uLCmLtle7amzWUrOVkpbOma36HIH6NKuOSDdKtCdn83Ycd3SMXQb0dSA6LgDrJQJypbdAEKq45Eg==", + "files": [ + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Abstractions.nuspec", + "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.Physical/1.0.0-beta5": { + "serviceable": true, + "sha512": "kjyV734jm7qapKPlr5jmUnlPvjBWTeVY8w9l66MvczxgmUxMqkfO76o7ttFAnlXZg7Pt08Mf4GLx4vMLDJ2IIg==", + "files": [ + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta5.nupkg", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Physical.nuspec", + "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.Hosting/1.0.0-beta5": { + "serviceable": true, + "sha512": "sUkpWUOM16vhFoHiKNvhU01rV3b2vdCDrBj+orvoZrNozVV1qvEU+/tESW3xBG+nOFeWOB5P/vpYJsLIqvFJ3w==", + "files": [ + "Microsoft.AspNet.Hosting.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Hosting.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Hosting.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "SxPZMIOQrLgpxMT7W5ezkvpvVGocDREAkMMCsb8tfbeFrqsS6ONgjz3Q8HDPLq/sLkfPXvhi9Pu85yDTKW45lg==", + "files": [ + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Hosting.Abstractions.nuspec", + "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.Server.Abstractions/1.0.0-beta5": { + "sha512": "Z9zKH1kFlhGAZ6hO1s4IYeAN2fZeoIgUO7Rt4HWp4EBf4w2caBCrSWUlqEmVO26ZF+rfQpagvZNlBjL0B80V3A==", + "files": [ + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Hosting.Server.Abstractions.nuspec", + "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.Http/1.0.0-beta5": { + "serviceable": true, + "sha512": "Smn8m/xaNcNK4GKTZ5lfkHL4OqKCyxrt5m+1i3Dpe5wjUHR+Z9qGVjcuT/ZTJLfSZBelpP0yKZHFqcgUCMujFw==", + "files": [ + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "vNdZzaCID7R1k93o+N6LQ9d3Lx49bAoSAwslnzhcKXvbSvbHjZ1DRFDngrHIlY/ckcls0MH+j2qePUtuCTb8NQ==", + "files": [ + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec", + "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.Extensions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ai6Q0oPVzBQwpbeMcS585MZEjsYRAmjd+V6zSqutFb0u9IwxLV0ALr9dNT6Fg3/Wf+LSuBxeCfk5FZ5BjfuYqA==", + "files": [ + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec", + "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.Features/1.0.0-beta5": { + "serviceable": true, + "sha512": "jZi6dVWXrN3cABLWjm0Dgh7CIm0VppzDPpUUuOgIIfnr9E4QcG87Xq7s25JIFsXHkInmPH2DSUn5cp6PA9QrIw==", + "files": [ + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "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.Loader.IIS/1.0.0-beta5": { + "serviceable": true, + "sha512": "fHM/Za9DJ7crDNM41xy1exoROTMM/tidUnLPWMOU2clTUyAPZ+1aUKZScUHn3lw+t9YjkjcAdltr+EUm8Prb/w==", + "files": [ + "Microsoft.AspNet.Loader.IIS.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Loader.IIS.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Loader.IIS.nuspec", + "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.Interop/1.0.0-beta5": { + "serviceable": true, + "sha512": "m5R/fod2cvu4XucoLLPgDspTqOQ/1wsSJ6k2Oiwa9BrMRdp2flR1DseM3wPycf1MVYpA/t6mO4eGe8phRMVWFw==", + "files": [ + "Microsoft.AspNet.Loader.IIS.Interop.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Loader.IIS.Interop.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Loader.IIS.Interop.nuspec", + "InteropAssemblies/amd64/Microsoft.AspNet.Loader.IIS.Interop.dll", + "InteropAssemblies/x86/Microsoft.AspNet.Loader.IIS.Interop.dll", + "tools/AspNet.Loader.dll" + ] + }, + "Microsoft.AspNet.Server.IIS/1.0.0-beta5": { + "sha512": "8j+azyegksHKmGAPRoXGzGNQ4l57FWqczVS3yAOpMQnhde1xojWhrRe9xhCc9uU0aCp2DwlHtHSLxEfPd5DILw==", + "files": [ + "Microsoft.AspNet.Server.IIS.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Server.IIS.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Server.IIS.nuspec" + ] + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta5": { + "serviceable": true, + "sha512": "JDebwt15z3QyFAQEqEiYNDUu9mDymOTfFip5KC4+0ou5YHi6AGlcT5mxQD+YuIkcI9/0Ck9mFWOL0tKEgwjCSQ==", + "files": [ + "Microsoft.AspNet.Server.Kestrel.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Server.Kestrel.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Server.Kestrel.nuspec", + "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", + "native/darwin/universal/libuv.dylib", + "native/windows/amd64/libuv.dll", + "native/windows/x86/libuv.dll" + ] + }, + "Microsoft.AspNet.Server.WebListener/1.0.0-beta5": { + "serviceable": true, + "sha512": "5wJEiGFsjV1FudzrVQfJ/Pmbk7KS6718Iy9u0572MAg6JdCMpodzEvquCw9udXN2vzVy61SMps4KZfurBfAqFQ==", + "files": [ + "Microsoft.AspNet.Server.WebListener.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Server.WebListener.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Server.WebListener.nuspec", + "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.WebUtilities/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ieb9JeaI57V2HRWyFsQE+Ioo7jRE7gp8QgmHAgCuc58RfUUvKf3BdmjMMqw+0DfOQMf4VL9xWpj0yQ/bMA1VDA==", + "files": [ + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec", + "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.Framework.Caching.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "qPWM85eWgzWYtt8QMydu4c4uaAO65QXieuxiPZ/QGlIiLKx2sZv8gsc8yFbu4IfM7SPfrixypckD/gIVv67Wdw==", + "files": [ + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "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.Configuration/1.0.0-beta5": { + "serviceable": true, + "sha512": "UBw3f+fKi4/WHWIz3oTKF5UiLjmfvTiDgU9oCjYYApqKUMIji4VPbgsoqCzEzgXPHpLHDGkBal6Ux0Gcgu15Ig==", + "files": [ + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "dW5gHHlvvNnrFFSGtfOFhKClSi9Eb4WFPVdrrIbZYq2gIVw2Dde740p68H3+v9Fr511sk4yPCkGZ0wqXm1GObw==", + "files": [ + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "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.Binder/1.0.0-beta5": { + "serviceable": true, + "sha512": "xSWVoCC0gtn9h12O/M2Eie6eXehJ0P2ovvGkZU5ZWNh8ycTyisyKrkhAmtObcF0dDdPJO9HXUHbRT5ady9fb8Q==", + "files": [ + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml" + ] + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta5": { + "serviceable": true, + "sha512": "yVOjzNMYtfAaOE0cG5vTDkNvZ4lI6y30F5m9/9IjTkEtsYb1wa8wA4nppiquWKE3Hui0rCOGwQsGibh+s/krew==", + "files": [ + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.CommandLine.nuspec", + "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.EnvironmentVariables/1.0.0-beta5": { + "serviceable": true, + "sha512": "Tfm9RDrFJI2xhQy2glkmJnC8gMY9991gMyNGO/Ndt2SFlCXMZFJpVxlbrdJoL7K1hWfRqHkUnPWddxKtVFyIcA==", + "files": [ + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.EnvironmentVariables.nuspec", + "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.Ini/1.0.0-beta5": { + "serviceable": true, + "sha512": "wcqJbcZzrVxp9TJ5skkWn/amgebKiRElPIxP9cWe3ww7igJh9VuCjRyuRjZlMIl8z6Ezqhs0JpaCXz/Da/ieAQ==", + "files": [ + "Microsoft.Framework.Configuration.Ini.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Ini.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Ini.nuspec", + "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.DependencyInjection/1.0.0-beta5": { + "serviceable": true, + "sha512": "Jau27ULONglLGNu4FAwk7XjC3JXB4LsSWb8QsSlCotiJmOXHG7x+MEVz0nAgmFFkN2VGjFjK0Klnz0z9aDaBaw==", + "files": [ + "Microsoft.Framework.DependencyInjection.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "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.Logging/1.0.0-beta5": { + "serviceable": true, + "sha512": "YbfHijwmKd3PsNSJ6iYRARwSeCPwkZKY9s3qb+jNFqom2QnD9PDq9q0yIZZBWZMJ3EAsRIZa92FYuKnNKPfX9g==", + "files": [ + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "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.Console/1.0.0-beta5": { + "serviceable": true, + "sha512": "GeFovyJI1r0xSKWuLEDLiMbQiPLzXMoEVV4leOh4KSj0TfddtKM/16EmAz/u9q4kfmjeEu1tJpMXPXY8GcCKJg==", + "files": [ + "Microsoft.Framework.Logging.Console.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Console.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Console.nuspec", + "lib/dnx451/Microsoft.Framework.Logging.Console.dll", + "lib/dnx451/Microsoft.Framework.Logging.Console.xml", + "lib/dotnet/Microsoft.Framework.Logging.Console.dll", + "lib/dotnet/Microsoft.Framework.Logging.Console.xml", + "lib/net45/Microsoft.Framework.Logging.Console.dll", + "lib/net45/Microsoft.Framework.Logging.Console.xml" + ] + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "sha512": "hgETnks4ovIE4ySkFs6mQ+QN195kOIM+3IxgIqQFYtuF9tfNdw1/xkkwm9ip7vUifJlNC4O5d9o7CJ2ou46GyA==", + "files": [ + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "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", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "oK4jCjvQfz1NGBUf73euKqPDhC4aSJ3fkpOrozrOxVL85ToF+QyrD4yWclNCkf0/WnEUjXh6eWsfiEqI9zgODg==", + "files": [ + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml" + ] + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "serviceable": true, + "sha512": "y/2QI2ruRp1Wc3qgIDxQex7ExueFgwd9M5Jw/xJA+tIRuwLlmyDvegDpcBQwqWIanG3pd2Tm5sjcPSTqPLcTyQ==", + "files": [ + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.nuspec", + "lib/dnx451/Microsoft.Framework.WebEncoders.dll", + "lib/dnx451/Microsoft.Framework.WebEncoders.xml", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.xml", + "lib/net45/Microsoft.Framework.WebEncoders.dll", + "lib/net45/Microsoft.Framework.WebEncoders.xml" + ] + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "serviceable": true, + "sha512": "KIwD5E5o4osx5NnSrqppt3W8TDdel2S1mnsdXGZn1N61enxic4v5Al51RPvcbGAPoVPQhru3fFao7FdxmfWGnQ==", + "files": [ + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.Core.nuspec", + "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.Net.Http.Headers/1.0.0-beta5": { + "serviceable": true, + "sha512": "ewp5ueEWtXW+fnzn0QMhTV78gDOHoO/EYgzay6nYzAP92AgaP1r13lTkh1VDpbHaCxm9GWweUkojIWZ196iQUQ==", + "files": [ + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec", + "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.Server/1.0.0-beta5": { + "serviceable": true, + "sha512": "U7qFSAMeZRIs9tR//2rnXdHnb9OI/+v1WxU1Ql/HSMQ2o/+6DV3YMOxmoe4yDi9PwFav6CiclCD9Odp99s3oMQ==", + "files": [ + "Microsoft.Net.Http.Server.1.0.0-beta5.nupkg", + "Microsoft.Net.Http.Server.1.0.0-beta5.nupkg.sha512", + "Microsoft.Net.Http.Server.nuspec", + "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/net45/Microsoft.Net.Http.Server.dll", + "lib/net45/Microsoft.Net.Http.Server.xml" + ] + }, + "Microsoft.Net.WebSockets/1.0.0-beta5": { + "serviceable": true, + "sha512": "q2w6//6WLVteA99pdYZZuSdALASwIjKjH8mOIJEpqSt2lStDi3O+ppiEqLfrlr0Am2ACYFar8Sz5J87PM53Q9A==", + "files": [ + "Microsoft.Net.WebSockets.1.0.0-beta5.nupkg", + "Microsoft.Net.WebSockets.1.0.0-beta5.nupkg.sha512", + "Microsoft.Net.WebSockets.nuspec", + "lib/dnxcore50/Microsoft.Net.WebSockets.dll", + "lib/dnxcore50/Microsoft.Net.WebSockets.xml", + "lib/net45/Microsoft.Net.WebSockets.dll", + "lib/net45/Microsoft.Net.WebSockets.xml" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "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", + "tools/install.ps1" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec", + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec", + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "sha512": "ijnoxLU+SrSf1AItfZOwtnzyx7yEi+WJtKa3d2X93Xf5YHlRsL4RwMZ10M9gLE8E+Rpi3ZJM5wAXi6OFSprDtw==", + "files": [ + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.NonGeneric.nuspec", + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/net46/System.Collections.NonGeneric.dll" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec", + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec", + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec", + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll" + ] + }, + "System.Diagnostics.Contracts/4.0.0-beta-23019": { + "sha512": "wi3eWkfN0kZYCHgIaOqRDfJoyl8P8oQLcxZ47ElLDTtOEW0TfGl0wVeqllMg7nMMzR7C1ordTWycpV34yQ7g4Q==", + "files": [ + "System.Diagnostics.Contracts.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Contracts.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec", + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Contracts.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec", + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" + ] + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "sha512": "1vuXv89pElI0JeDhnXokMyy9VkLpkDFa+oU3selb5uhHfzVswH1etFBumZ0VKKvTOAnm8AS/3ZDXAVlRjywq3A==", + "files": [ + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Process.nuspec", + "lib/DNXCore50/System.Diagnostics.Process.dll", + "lib/net46/System.Diagnostics.Process.dll", + "ref/dotnet/System.Diagnostics.Process.dll", + "ref/net46/System.Diagnostics.Process.dll" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "sha512": "GB0ki4TLNwFKcT7ZesteTERlZmBytRitEbdD6O1zVwDaeqqY+FZb2/+CH2Q5U1rN7qY9YmM70PxtyPG1t31zkg==", + "files": [ + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Tools.nuspec", + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll" + ] + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "sha512": "MZxMo9Skg9oZrJYwGpRfeOfrTfHxmTPWhj8XIXdIryfArzwG1FjZgzOrkWWcON0PdV9OywZYGly09nUCs/JdhA==", + "files": [ + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.TraceSource.nuspec", + "lib/DNXCore50/System.Diagnostics.TraceSource.dll", + "lib/net46/System.Diagnostics.TraceSource.dll", + "ref/dotnet/System.Diagnostics.TraceSource.dll", + "ref/net46/System.Diagnostics.TraceSource.dll" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec", + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec", + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec", + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll" + ] + }, + "System.Globalization.Extensions/4.0.0-beta-23019": { + "sha512": "k3KrctgKowl9Yv8eFbBIrnU/lL5+uUeaoCSJllwXA1XbQaGCLKVIYsMewgwV66UzkDfMU/65d6XhIcGucx9IAg==", + "files": [ + "System.Globalization.Extensions.4.0.0-beta-23019.nupkg", + "System.Globalization.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Extensions.nuspec", + "lib/dotnet/System.Globalization.Extensions.dll", + "lib/net46/System.Globalization.Extensions.dll", + "ref/dotnet/System.Globalization.Extensions.dll", + "ref/net46/System.Globalization.Extensions.dll" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec", + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec", + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec", + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "sha512": "+xsD0H46/EB88848d9cHel2WVbUWlM/Y/k+tuY5lp2jXSwV8zMJ6F3TjMqeUZwWtUUavw+AN7D0a4ZoGVs/Rcw==", + "files": [ + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec", + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/net46/System.IO.FileSystem.Watcher.dll" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec", + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "sha512": "YjnsUzXsXx8BdqaXQ2U/hrz4CWdlAfcoYccqO3BSKCpPZPFEbKizEiHR9KJGcqf9gQ4lzRkhlM3xiMIjX27mUQ==", + "files": [ + "runtime.json", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg.sha512", + "System.Linq.Expressions.nuspec", + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll" + ] + }, + "System.Net.NetworkInformation/4.0.10-beta-23019": { + "sha512": "+sHpVzEZInqCuvMETuD45ZkH0OLkO4SwdJa9NsZRKbv8gWTn4DN1zPXP69bc45Xs1vO7dG/Wu/3tbOM+0g6XVQ==", + "files": [ + "System.Net.NetworkInformation.4.0.10-beta-23019.nupkg", + "System.Net.NetworkInformation.4.0.10-beta-23019.nupkg.sha512", + "System.Net.NetworkInformation.nuspec", + "lib/DNXCore50/System.Net.NetworkInformation.dll", + "lib/net46/_._", + "ref/dotnet/System.Net.NetworkInformation.dll", + "ref/net46/_._" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec", + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._" + ] + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "sha512": "9waIolEiBpjdMWLtTqQxYjpPplVpTlZEzof6C/6/vitUP7DuJrI7wJltEO5ARMPBqyT2Ohke0h1ZpLiRkZQkCw==", + "files": [ + "System.Net.WebSockets.4.0.0-beta-23019.nupkg", + "System.Net.WebSockets.4.0.0-beta-23019.nupkg.sha512", + "System.Net.WebSockets.nuspec", + "lib/DNXCore50/System.Net.WebSockets.dll", + "lib/net46/System.Net.WebSockets.dll", + "ref/dotnet/System.Net.WebSockets.dll", + "ref/net46/System.Net.WebSockets.dll" + ] + }, + "System.ObjectModel/4.0.0-beta-23019": { + "sha512": "shmwP3YgLhSx8+njPPb82OULH+SteCr8fZ6XaQK8dfuB3UCqqUfITYPW1zknMotwsnBZpVPdXFWmwvTE0XTCGA==", + "files": [ + "License.rtf", + "System.ObjectModel.4.0.0-beta-23019.nupkg", + "System.ObjectModel.4.0.0-beta-23019.nupkg.sha512", + "System.ObjectModel.nuspec", + "lib/net45/_._", + "lib/win8/_._", + "ref/dotnet/System.ObjectModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/win8/_._" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec", + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec", + "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.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec", + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "sha512": "FAp9TewUfCxaydPyY5Glv2/3KdxD5vpZ4qgx26OWV6xtytGinnXpHsxownQKKe7WkeqlRjy7s7cRgjTKZ50AQA==", + "files": [ + "System.Reflection.Emit.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.nuspec", + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "sha512": "5OsJjj6G9WY8aV3EWfI03dJoqH0RvILtP2GJ16JQf90pV0kVmgGsFQSqh+lcnnexh4CEje7DDxF748o/8KamWA==", + "files": [ + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec", + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec", + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec", + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "sha512": "5/WcPvsdnw0d8rwwsCgQKoo9oXFQA1gMHtyNcYjelDjaaYC/dYoU7Eo0JdP+0PMgy9FnBOHVjRHOTcJ2HIjefA==", + "files": [ + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec", + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec", + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec", + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec", + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec", + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec", + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec", + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._" + ] + }, + "System.Security.Claims/4.0.0-beta-23019": { + "sha512": "kKseHxGh5pWjM43MZWtub/ZyBWUV3RHNSJuUtTzapeQD2qND6pGGNekMXcxmEZOxrKwFEBAeTlcgmWo/2e6/SQ==", + "files": [ + "System.Security.Claims.4.0.0-beta-23019.nupkg", + "System.Security.Claims.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Claims.nuspec", + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll" + ] + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23019": { + "sha512": "X3lDbzONEsSurqDDApxmA/ybdViY5F1XAWoGV+B8ZlDKOsSiEbBwsPt8MShROlCkPZezUyRpLzg2b8Jd+anIRQ==", + "files": [ + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.Aes.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll", + "lib/net46/System.Security.Cryptography.Encryption.Aes.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll", + "ref/net46/System.Security.Cryptography.Encryption.Aes.dll" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec", + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll" + ] + }, + "System.Security.Principal/4.0.0-beta-23019": { + "sha512": "2zkK0eJOfso/Jo+77NVXDoJRggzL0jM0ayeXz+vD8pK9pIRnhpWJVbaGmT7MPBWW9KbPwtbJyXejpUS2rBflUQ==", + "files": [ + "System.Security.Principal.4.0.0-beta-23019.nupkg", + "System.Security.Principal.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.nuspec", + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "sha512": "FYvKKTbncuJCMnc1TmccsJlGSjIQrUJPymt2R3o5uSV1plyGD9V3san/rpq2IO4kDbHjGrQjEtZlbehwUucB5Q==", + "files": [ + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.Windows.nuspec", + "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.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec", + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec", + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec", + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "sha512": "7gCVMRey2Nji6WDKleSigGBJuy4gMKXGeVqauROuFoTygHNtFYaUTeToGMy7Obsi+tzgnyEYfd+9uY3Ifc/SjA==", + "files": [ + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.RegularExpressions.nuspec", + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/net46/_._" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec", + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec", + "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.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec", + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll" + ] + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "sha512": "ECx+zZlXCfhkpZ0PUVrzp5UB6zRdzi94LsQhm7DtUS/uB17I3sYh0RsnMu/5jTULByQ1Ju4K/JTbM28InXO/PQ==", + "files": [ + "System.Threading.Thread.4.0.0-beta-23019.nupkg", + "System.Threading.Thread.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Thread.nuspec", + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.dll", + "ref/net46/System.Threading.Thread.dll" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec", + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll" + ] + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "sha512": "nGA/Vt5zC8zGQ8r9mSdRTWzVMXh1YgJH9XH8x5OQZVLh0hn6CSC32RrmUrmKLpxKd64B9mbKoubeLUqXlf/m8g==", + "files": [ + "System.Threading.Timer.4.0.0-beta-23019.nupkg", + "System.Threading.Timer.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Timer.nuspec", + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "ref/dotnet/System.Threading.Timer.dll", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/win81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec", + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._" + ] + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "sha512": "pyyzY5FFoZziGVDFyO5VLM094cX7jNN+01EsSJEFreje5uzSz6aKwIPgTe/l2CFiXYFoUNr0O6D3GEc8jPmbPg==", + "files": [ + "System.Xml.XDocument.4.0.10-beta-23019.nupkg", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec", + "lib/dotnet/System.Xml.XDocument.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net46/_._" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.Authentication.Cookies >= 1.0.0-beta5", + "Microsoft.AspNet.DataProtection >= 1.0.0-beta5", + "Microsoft.AspNet.Server.WebListener >= 1.0.0-beta5", + "Microsoft.AspNet.Server.IIS >= 1.0.0-beta5", + "Microsoft.Framework.Logging.Console >= 1.0.0-beta5", + "Kestrel >= 1.0.0-beta5" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [] + } +} \ No newline at end of file diff --git a/samples/CookieSessionSample/project.json b/samples/CookieSessionSample/project.json index 0f481e611..aaf0a994d 100644 --- a/samples/CookieSessionSample/project.json +++ b/samples/CookieSessionSample/project.json @@ -1,12 +1,12 @@ { "dependencies": { - "Microsoft.AspNet.Authentication.Cookies": "1.0.0-*", - "Microsoft.AspNet.DataProtection": "1.0.0-*", - "Microsoft.AspNet.Server.IIS": "1.0.0-*", - "Microsoft.AspNet.Server.WebListener": "1.0.0-*", - "Microsoft.Framework.Caching.Memory": "1.0.0-*", - "Microsoft.Framework.Logging.Console": "1.0.0-*", - "Kestrel": "1.0.0-*" + "Microsoft.AspNet.Authentication.Cookies": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Server.IIS": "1.0.0-beta5", + "Microsoft.AspNet.Server.WebListener": "1.0.0-beta5", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta5", + "Microsoft.Framework.Logging.Console": "1.0.0-beta5", + "Kestrel": "1.0.0-beta5" }, "commands": { "web": "Microsoft.AspNet.Hosting server=Microsoft.AspNet.Server.WebListener server.urls=http://localhost:12345", diff --git a/samples/CookieSessionSample/project.lock.json b/samples/CookieSessionSample/project.lock.json new file mode 100644 index 000000000..5632832db --- /dev/null +++ b/samples/CookieSessionSample/project.lock.json @@ -0,0 +1,3881 @@ +{ + "locked": true, + "version": -9996, + "targets": { + "DNX,Version=v4.5.1": { + "Kestrel/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta5", + "Microsoft.AspNet.Server.Kestrel": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Kestrel.dll": {} + }, + "runtime": { + "lib/dnx451/Kestrel.dll": {} + } + }, + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Authentication.Cookies/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.Cookies.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.Cookies.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "System.IO", + "System.Security", + "System.Xml", + "System.Xml.Linq", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta5", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Configuration": "1.0.0-beta5", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta5", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.Loader.IIS/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Hosting": "1.0.0-beta5", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Loader.IIS.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Loader.IIS.dll": {} + } + }, + "Microsoft.AspNet.Loader.IIS.Interop/1.0.0-beta5": {}, + "Microsoft.AspNet.Server.IIS/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Loader.IIS.Interop": "1.0.0-beta5", + "Microsoft.AspNet.Loader.IIS": "1.0.0-beta5" + } + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll": {} + } + }, + "Microsoft.AspNet.Server.WebListener/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Net.Http.Server": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Server.WebListener.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Server.WebListener.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "System.Collections.Concurrent", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Console/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Console.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Console.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Net.Http.Server/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Net.WebSockets": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Server.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Server.dll": {} + } + }, + "Microsoft.Net.WebSockets/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/net45/Microsoft.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Net.WebSockets.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Kestrel/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta5", + "Microsoft.AspNet.Server.Kestrel": "1.0.0-beta5", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Kestrel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Kestrel.dll": {} + } + }, + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Authentication.Cookies/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.Cookies.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.Cookies.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption.Aes": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta5", + "System.IO": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta5", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Configuration": "1.0.0-beta5", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta5", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6", + "System.Console": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta5" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.Loader.IIS/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Hosting": "1.0.0-beta5", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.Diagnostics.Process": "4.0.0-beta-23019", + "System.Net.NetworkInformation": "4.0.10-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Loader.IIS.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Loader.IIS.dll": {} + } + }, + "Microsoft.AspNet.Loader.IIS.Interop/1.0.0-beta5": {}, + "Microsoft.AspNet.Server.IIS/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Loader.IIS.Interop": "1.0.0-beta5", + "Microsoft.AspNet.Loader.IIS": "1.0.0-beta5" + } + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.dll": {} + } + }, + "Microsoft.AspNet.Server.WebListener/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Net.Http.Server": "1.0.0-beta5", + "System.Security.Claims": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Server.WebListener.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Server.WebListener.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "System.Linq": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Linq": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Ini.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Ini.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Console/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "System.Runtime": "4.0.20-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Console.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Console.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Contracts": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Net.Http.Server/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Net.WebSockets": "1.0.0-beta5", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Server.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Server.dll": {} + } + }, + "Microsoft.Net.WebSockets/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Contracts": "4.0.0-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Timer": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.WebSockets.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Net.NetworkInformation/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.NetworkInformation.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.NetworkInformation.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + } + } + }, + "libraries": { + "Kestrel/1.0.0-beta5": { + "serviceable": true, + "sha512": "rFC89oqyntN0Z/ACBjYKaogIom3eW6YI8fFFw9ou2KWSSpDY1PCua4D/PDx4N2oYBhgFjBX4GyJmRZ/1L3n9Pw==", + "files": [ + "Kestrel.1.0.0-beta5.nupkg", + "Kestrel.1.0.0-beta5.nupkg.sha512", + "Kestrel.nuspec", + "lib/dnx451/Kestrel.dll", + "lib/dnx451/Kestrel.xml", + "lib/dnxcore50/Kestrel.dll", + "lib/dnxcore50/Kestrel.xml" + ] + }, + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "serviceable": true, + "sha512": "0aGfwSmbVHhNIQSp6dXqz6sLYD07U9Dgnw8rm/wnQDkLFfJ9iPQKBBTk/Oh/6wGwaSg9Ko7mzXTwILE42HZdZA==", + "files": [ + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.xml" + ] + }, + "Microsoft.AspNet.Authentication.Cookies/1.0.0-beta5": { + "serviceable": true, + "sha512": "slpGZOh7Gp8YFE9cdlzce67LFUAspBAp6WfjzhH270Ck/D8lzY83DiDLe2IQOhgH+MxlYi+r4bb7PvOhmoSM7g==", + "files": [ + "Microsoft.AspNet.Authentication.Cookies.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.Cookies.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.Cookies.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.Cookies.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.Cookies.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Cookies.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Cookies.xml" + ] + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "serviceable": true, + "sha512": "nhCP9Q0TSA3F31w+SXoXh5X9zbGRpyGZrkBhid++k673Mxg1uzkDNa18Z0edF7Yiua2ZHZeA/GPkPUG0pzER/A==", + "files": [ + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Cryptography.Internal.nuspec", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.xml" + ] + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "serviceable": true, + "sha512": "f8oqJIyHUbmsIkgEq+A7QQOKr60s4GoewR2I+ItHGuHdwV6ICuNnu4yKSx7v0k/uh51T49ECcrrMApUepuV2mg==", + "files": [ + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.nuspec", + "lib/dnx451/Microsoft.AspNet.DataProtection.dll", + "lib/dnx451/Microsoft.AspNet.DataProtection.xml", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.xml", + "lib/net451/Microsoft.AspNet.DataProtection.dll", + "lib/net451/Microsoft.AspNet.DataProtection.xml" + ] + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ow8W+rMtA0rsiCtvHtUs+f5wrzMj0rtoSjl+vTgtGNQ0Ib+3tsGbKgA9+l5kzGKG6RUebnCK+vXKP/zCXDZOvw==", + "files": [ + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.Abstractions.nuspec", + "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.FeatureModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "M6ltNGrh4gHU+DiMbV074ZDwDQAIYx1SEOlltX7XzKbiDztYuTAtXiv8M/wkjZBeVdkszkE0NPOlMb/pbfww6g==", + "files": [ + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg", + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.FeatureModel.nuspec", + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll", + "lib/dnx451/Microsoft.AspNet.FeatureModel.xml", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.xml" + ] + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Az9I0ufHV2uLCmLtle7amzWUrOVkpbOma36HIH6NKuOSDdKtCdn83Ycd3SMXQb0dSA6LgDrJQJypbdAEKq45Eg==", + "files": [ + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Abstractions.nuspec", + "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.Physical/1.0.0-beta5": { + "serviceable": true, + "sha512": "kjyV734jm7qapKPlr5jmUnlPvjBWTeVY8w9l66MvczxgmUxMqkfO76o7ttFAnlXZg7Pt08Mf4GLx4vMLDJ2IIg==", + "files": [ + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta5.nupkg", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Physical.nuspec", + "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.Hosting/1.0.0-beta5": { + "serviceable": true, + "sha512": "sUkpWUOM16vhFoHiKNvhU01rV3b2vdCDrBj+orvoZrNozVV1qvEU+/tESW3xBG+nOFeWOB5P/vpYJsLIqvFJ3w==", + "files": [ + "Microsoft.AspNet.Hosting.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Hosting.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Hosting.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "SxPZMIOQrLgpxMT7W5ezkvpvVGocDREAkMMCsb8tfbeFrqsS6ONgjz3Q8HDPLq/sLkfPXvhi9Pu85yDTKW45lg==", + "files": [ + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Hosting.Abstractions.nuspec", + "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.Server.Abstractions/1.0.0-beta5": { + "sha512": "Z9zKH1kFlhGAZ6hO1s4IYeAN2fZeoIgUO7Rt4HWp4EBf4w2caBCrSWUlqEmVO26ZF+rfQpagvZNlBjL0B80V3A==", + "files": [ + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Hosting.Server.Abstractions.nuspec", + "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.Http/1.0.0-beta5": { + "serviceable": true, + "sha512": "Smn8m/xaNcNK4GKTZ5lfkHL4OqKCyxrt5m+1i3Dpe5wjUHR+Z9qGVjcuT/ZTJLfSZBelpP0yKZHFqcgUCMujFw==", + "files": [ + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "vNdZzaCID7R1k93o+N6LQ9d3Lx49bAoSAwslnzhcKXvbSvbHjZ1DRFDngrHIlY/ckcls0MH+j2qePUtuCTb8NQ==", + "files": [ + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec", + "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.Extensions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ai6Q0oPVzBQwpbeMcS585MZEjsYRAmjd+V6zSqutFb0u9IwxLV0ALr9dNT6Fg3/Wf+LSuBxeCfk5FZ5BjfuYqA==", + "files": [ + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec", + "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.Features/1.0.0-beta5": { + "serviceable": true, + "sha512": "jZi6dVWXrN3cABLWjm0Dgh7CIm0VppzDPpUUuOgIIfnr9E4QcG87Xq7s25JIFsXHkInmPH2DSUn5cp6PA9QrIw==", + "files": [ + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "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.Loader.IIS/1.0.0-beta5": { + "serviceable": true, + "sha512": "fHM/Za9DJ7crDNM41xy1exoROTMM/tidUnLPWMOU2clTUyAPZ+1aUKZScUHn3lw+t9YjkjcAdltr+EUm8Prb/w==", + "files": [ + "Microsoft.AspNet.Loader.IIS.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Loader.IIS.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Loader.IIS.nuspec", + "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.Interop/1.0.0-beta5": { + "serviceable": true, + "sha512": "m5R/fod2cvu4XucoLLPgDspTqOQ/1wsSJ6k2Oiwa9BrMRdp2flR1DseM3wPycf1MVYpA/t6mO4eGe8phRMVWFw==", + "files": [ + "Microsoft.AspNet.Loader.IIS.Interop.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Loader.IIS.Interop.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Loader.IIS.Interop.nuspec", + "InteropAssemblies/amd64/Microsoft.AspNet.Loader.IIS.Interop.dll", + "InteropAssemblies/x86/Microsoft.AspNet.Loader.IIS.Interop.dll", + "tools/AspNet.Loader.dll" + ] + }, + "Microsoft.AspNet.Server.IIS/1.0.0-beta5": { + "sha512": "8j+azyegksHKmGAPRoXGzGNQ4l57FWqczVS3yAOpMQnhde1xojWhrRe9xhCc9uU0aCp2DwlHtHSLxEfPd5DILw==", + "files": [ + "Microsoft.AspNet.Server.IIS.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Server.IIS.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Server.IIS.nuspec" + ] + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta5": { + "serviceable": true, + "sha512": "JDebwt15z3QyFAQEqEiYNDUu9mDymOTfFip5KC4+0ou5YHi6AGlcT5mxQD+YuIkcI9/0Ck9mFWOL0tKEgwjCSQ==", + "files": [ + "Microsoft.AspNet.Server.Kestrel.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Server.Kestrel.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Server.Kestrel.nuspec", + "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", + "native/darwin/universal/libuv.dylib", + "native/windows/amd64/libuv.dll", + "native/windows/x86/libuv.dll" + ] + }, + "Microsoft.AspNet.Server.WebListener/1.0.0-beta5": { + "serviceable": true, + "sha512": "5wJEiGFsjV1FudzrVQfJ/Pmbk7KS6718Iy9u0572MAg6JdCMpodzEvquCw9udXN2vzVy61SMps4KZfurBfAqFQ==", + "files": [ + "Microsoft.AspNet.Server.WebListener.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Server.WebListener.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Server.WebListener.nuspec", + "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.WebUtilities/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ieb9JeaI57V2HRWyFsQE+Ioo7jRE7gp8QgmHAgCuc58RfUUvKf3BdmjMMqw+0DfOQMf4VL9xWpj0yQ/bMA1VDA==", + "files": [ + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec", + "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.Framework.Caching.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "qPWM85eWgzWYtt8QMydu4c4uaAO65QXieuxiPZ/QGlIiLKx2sZv8gsc8yFbu4IfM7SPfrixypckD/gIVv67Wdw==", + "files": [ + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "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.Memory/1.0.0-beta5": { + "serviceable": true, + "sha512": "QeILldH75f/GJeXlWFpwYqd21WyMocCIuQx/m16dzLGddf3aLTJ995cjBHGWkQspc2pHp56Ca17HgaYbcpCc5A==", + "files": [ + "Microsoft.Framework.Caching.Memory.1.0.0-beta5.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "serviceable": true, + "sha512": "UBw3f+fKi4/WHWIz3oTKF5UiLjmfvTiDgU9oCjYYApqKUMIji4VPbgsoqCzEzgXPHpLHDGkBal6Ux0Gcgu15Ig==", + "files": [ + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "dW5gHHlvvNnrFFSGtfOFhKClSi9Eb4WFPVdrrIbZYq2gIVw2Dde740p68H3+v9Fr511sk4yPCkGZ0wqXm1GObw==", + "files": [ + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "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.Binder/1.0.0-beta5": { + "serviceable": true, + "sha512": "xSWVoCC0gtn9h12O/M2Eie6eXehJ0P2ovvGkZU5ZWNh8ycTyisyKrkhAmtObcF0dDdPJO9HXUHbRT5ady9fb8Q==", + "files": [ + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml" + ] + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta5": { + "serviceable": true, + "sha512": "yVOjzNMYtfAaOE0cG5vTDkNvZ4lI6y30F5m9/9IjTkEtsYb1wa8wA4nppiquWKE3Hui0rCOGwQsGibh+s/krew==", + "files": [ + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.CommandLine.nuspec", + "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.EnvironmentVariables/1.0.0-beta5": { + "serviceable": true, + "sha512": "Tfm9RDrFJI2xhQy2glkmJnC8gMY9991gMyNGO/Ndt2SFlCXMZFJpVxlbrdJoL7K1hWfRqHkUnPWddxKtVFyIcA==", + "files": [ + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.EnvironmentVariables.nuspec", + "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.Ini/1.0.0-beta5": { + "serviceable": true, + "sha512": "wcqJbcZzrVxp9TJ5skkWn/amgebKiRElPIxP9cWe3ww7igJh9VuCjRyuRjZlMIl8z6Ezqhs0JpaCXz/Da/ieAQ==", + "files": [ + "Microsoft.Framework.Configuration.Ini.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Ini.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Ini.nuspec", + "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.DependencyInjection/1.0.0-beta5": { + "serviceable": true, + "sha512": "Jau27ULONglLGNu4FAwk7XjC3JXB4LsSWb8QsSlCotiJmOXHG7x+MEVz0nAgmFFkN2VGjFjK0Klnz0z9aDaBaw==", + "files": [ + "Microsoft.Framework.DependencyInjection.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "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.Logging/1.0.0-beta5": { + "serviceable": true, + "sha512": "YbfHijwmKd3PsNSJ6iYRARwSeCPwkZKY9s3qb+jNFqom2QnD9PDq9q0yIZZBWZMJ3EAsRIZa92FYuKnNKPfX9g==", + "files": [ + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "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.Console/1.0.0-beta5": { + "serviceable": true, + "sha512": "GeFovyJI1r0xSKWuLEDLiMbQiPLzXMoEVV4leOh4KSj0TfddtKM/16EmAz/u9q4kfmjeEu1tJpMXPXY8GcCKJg==", + "files": [ + "Microsoft.Framework.Logging.Console.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Console.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Console.nuspec", + "lib/dnx451/Microsoft.Framework.Logging.Console.dll", + "lib/dnx451/Microsoft.Framework.Logging.Console.xml", + "lib/dotnet/Microsoft.Framework.Logging.Console.dll", + "lib/dotnet/Microsoft.Framework.Logging.Console.xml", + "lib/net45/Microsoft.Framework.Logging.Console.dll", + "lib/net45/Microsoft.Framework.Logging.Console.xml" + ] + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "sha512": "hgETnks4ovIE4ySkFs6mQ+QN195kOIM+3IxgIqQFYtuF9tfNdw1/xkkwm9ip7vUifJlNC4O5d9o7CJ2ou46GyA==", + "files": [ + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "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", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "oK4jCjvQfz1NGBUf73euKqPDhC4aSJ3fkpOrozrOxVL85ToF+QyrD4yWclNCkf0/WnEUjXh6eWsfiEqI9zgODg==", + "files": [ + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml" + ] + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "serviceable": true, + "sha512": "y/2QI2ruRp1Wc3qgIDxQex7ExueFgwd9M5Jw/xJA+tIRuwLlmyDvegDpcBQwqWIanG3pd2Tm5sjcPSTqPLcTyQ==", + "files": [ + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.nuspec", + "lib/dnx451/Microsoft.Framework.WebEncoders.dll", + "lib/dnx451/Microsoft.Framework.WebEncoders.xml", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.xml", + "lib/net45/Microsoft.Framework.WebEncoders.dll", + "lib/net45/Microsoft.Framework.WebEncoders.xml" + ] + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "serviceable": true, + "sha512": "KIwD5E5o4osx5NnSrqppt3W8TDdel2S1mnsdXGZn1N61enxic4v5Al51RPvcbGAPoVPQhru3fFao7FdxmfWGnQ==", + "files": [ + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.Core.nuspec", + "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.Net.Http.Headers/1.0.0-beta5": { + "serviceable": true, + "sha512": "ewp5ueEWtXW+fnzn0QMhTV78gDOHoO/EYgzay6nYzAP92AgaP1r13lTkh1VDpbHaCxm9GWweUkojIWZ196iQUQ==", + "files": [ + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec", + "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.Server/1.0.0-beta5": { + "serviceable": true, + "sha512": "U7qFSAMeZRIs9tR//2rnXdHnb9OI/+v1WxU1Ql/HSMQ2o/+6DV3YMOxmoe4yDi9PwFav6CiclCD9Odp99s3oMQ==", + "files": [ + "Microsoft.Net.Http.Server.1.0.0-beta5.nupkg", + "Microsoft.Net.Http.Server.1.0.0-beta5.nupkg.sha512", + "Microsoft.Net.Http.Server.nuspec", + "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/net45/Microsoft.Net.Http.Server.dll", + "lib/net45/Microsoft.Net.Http.Server.xml" + ] + }, + "Microsoft.Net.WebSockets/1.0.0-beta5": { + "serviceable": true, + "sha512": "q2w6//6WLVteA99pdYZZuSdALASwIjKjH8mOIJEpqSt2lStDi3O+ppiEqLfrlr0Am2ACYFar8Sz5J87PM53Q9A==", + "files": [ + "Microsoft.Net.WebSockets.1.0.0-beta5.nupkg", + "Microsoft.Net.WebSockets.1.0.0-beta5.nupkg.sha512", + "Microsoft.Net.WebSockets.nuspec", + "lib/dnxcore50/Microsoft.Net.WebSockets.dll", + "lib/dnxcore50/Microsoft.Net.WebSockets.xml", + "lib/net45/Microsoft.Net.WebSockets.dll", + "lib/net45/Microsoft.Net.WebSockets.xml" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "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", + "tools/install.ps1" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec", + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec", + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "sha512": "ijnoxLU+SrSf1AItfZOwtnzyx7yEi+WJtKa3d2X93Xf5YHlRsL4RwMZ10M9gLE8E+Rpi3ZJM5wAXi6OFSprDtw==", + "files": [ + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.NonGeneric.nuspec", + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/net46/System.Collections.NonGeneric.dll" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec", + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec", + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec", + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll" + ] + }, + "System.Diagnostics.Contracts/4.0.0-beta-23019": { + "sha512": "wi3eWkfN0kZYCHgIaOqRDfJoyl8P8oQLcxZ47ElLDTtOEW0TfGl0wVeqllMg7nMMzR7C1ordTWycpV34yQ7g4Q==", + "files": [ + "System.Diagnostics.Contracts.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Contracts.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec", + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Contracts.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec", + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" + ] + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "sha512": "1vuXv89pElI0JeDhnXokMyy9VkLpkDFa+oU3selb5uhHfzVswH1etFBumZ0VKKvTOAnm8AS/3ZDXAVlRjywq3A==", + "files": [ + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Process.nuspec", + "lib/DNXCore50/System.Diagnostics.Process.dll", + "lib/net46/System.Diagnostics.Process.dll", + "ref/dotnet/System.Diagnostics.Process.dll", + "ref/net46/System.Diagnostics.Process.dll" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "sha512": "GB0ki4TLNwFKcT7ZesteTERlZmBytRitEbdD6O1zVwDaeqqY+FZb2/+CH2Q5U1rN7qY9YmM70PxtyPG1t31zkg==", + "files": [ + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Tools.nuspec", + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll" + ] + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "sha512": "MZxMo9Skg9oZrJYwGpRfeOfrTfHxmTPWhj8XIXdIryfArzwG1FjZgzOrkWWcON0PdV9OywZYGly09nUCs/JdhA==", + "files": [ + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.TraceSource.nuspec", + "lib/DNXCore50/System.Diagnostics.TraceSource.dll", + "lib/net46/System.Diagnostics.TraceSource.dll", + "ref/dotnet/System.Diagnostics.TraceSource.dll", + "ref/net46/System.Diagnostics.TraceSource.dll" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec", + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec", + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec", + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll" + ] + }, + "System.Globalization.Extensions/4.0.0-beta-23019": { + "sha512": "k3KrctgKowl9Yv8eFbBIrnU/lL5+uUeaoCSJllwXA1XbQaGCLKVIYsMewgwV66UzkDfMU/65d6XhIcGucx9IAg==", + "files": [ + "System.Globalization.Extensions.4.0.0-beta-23019.nupkg", + "System.Globalization.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Extensions.nuspec", + "lib/dotnet/System.Globalization.Extensions.dll", + "lib/net46/System.Globalization.Extensions.dll", + "ref/dotnet/System.Globalization.Extensions.dll", + "ref/net46/System.Globalization.Extensions.dll" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec", + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec", + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec", + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "sha512": "+xsD0H46/EB88848d9cHel2WVbUWlM/Y/k+tuY5lp2jXSwV8zMJ6F3TjMqeUZwWtUUavw+AN7D0a4ZoGVs/Rcw==", + "files": [ + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec", + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/net46/System.IO.FileSystem.Watcher.dll" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec", + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "sha512": "YjnsUzXsXx8BdqaXQ2U/hrz4CWdlAfcoYccqO3BSKCpPZPFEbKizEiHR9KJGcqf9gQ4lzRkhlM3xiMIjX27mUQ==", + "files": [ + "runtime.json", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg.sha512", + "System.Linq.Expressions.nuspec", + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll" + ] + }, + "System.Net.NetworkInformation/4.0.10-beta-23019": { + "sha512": "+sHpVzEZInqCuvMETuD45ZkH0OLkO4SwdJa9NsZRKbv8gWTn4DN1zPXP69bc45Xs1vO7dG/Wu/3tbOM+0g6XVQ==", + "files": [ + "System.Net.NetworkInformation.4.0.10-beta-23019.nupkg", + "System.Net.NetworkInformation.4.0.10-beta-23019.nupkg.sha512", + "System.Net.NetworkInformation.nuspec", + "lib/DNXCore50/System.Net.NetworkInformation.dll", + "lib/net46/_._", + "ref/dotnet/System.Net.NetworkInformation.dll", + "ref/net46/_._" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec", + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._" + ] + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "sha512": "9waIolEiBpjdMWLtTqQxYjpPplVpTlZEzof6C/6/vitUP7DuJrI7wJltEO5ARMPBqyT2Ohke0h1ZpLiRkZQkCw==", + "files": [ + "System.Net.WebSockets.4.0.0-beta-23019.nupkg", + "System.Net.WebSockets.4.0.0-beta-23019.nupkg.sha512", + "System.Net.WebSockets.nuspec", + "lib/DNXCore50/System.Net.WebSockets.dll", + "lib/net46/System.Net.WebSockets.dll", + "ref/dotnet/System.Net.WebSockets.dll", + "ref/net46/System.Net.WebSockets.dll" + ] + }, + "System.ObjectModel/4.0.0-beta-23019": { + "sha512": "shmwP3YgLhSx8+njPPb82OULH+SteCr8fZ6XaQK8dfuB3UCqqUfITYPW1zknMotwsnBZpVPdXFWmwvTE0XTCGA==", + "files": [ + "License.rtf", + "System.ObjectModel.4.0.0-beta-23019.nupkg", + "System.ObjectModel.4.0.0-beta-23019.nupkg.sha512", + "System.ObjectModel.nuspec", + "lib/net45/_._", + "lib/win8/_._", + "ref/dotnet/System.ObjectModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/win8/_._" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec", + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec", + "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.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec", + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "sha512": "FAp9TewUfCxaydPyY5Glv2/3KdxD5vpZ4qgx26OWV6xtytGinnXpHsxownQKKe7WkeqlRjy7s7cRgjTKZ50AQA==", + "files": [ + "System.Reflection.Emit.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.nuspec", + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "sha512": "5OsJjj6G9WY8aV3EWfI03dJoqH0RvILtP2GJ16JQf90pV0kVmgGsFQSqh+lcnnexh4CEje7DDxF748o/8KamWA==", + "files": [ + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec", + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec", + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec", + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "sha512": "5/WcPvsdnw0d8rwwsCgQKoo9oXFQA1gMHtyNcYjelDjaaYC/dYoU7Eo0JdP+0PMgy9FnBOHVjRHOTcJ2HIjefA==", + "files": [ + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec", + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec", + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec", + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec", + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec", + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec", + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec", + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._" + ] + }, + "System.Security.Claims/4.0.0-beta-23019": { + "sha512": "kKseHxGh5pWjM43MZWtub/ZyBWUV3RHNSJuUtTzapeQD2qND6pGGNekMXcxmEZOxrKwFEBAeTlcgmWo/2e6/SQ==", + "files": [ + "System.Security.Claims.4.0.0-beta-23019.nupkg", + "System.Security.Claims.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Claims.nuspec", + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll" + ] + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23019": { + "sha512": "X3lDbzONEsSurqDDApxmA/ybdViY5F1XAWoGV+B8ZlDKOsSiEbBwsPt8MShROlCkPZezUyRpLzg2b8Jd+anIRQ==", + "files": [ + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.Aes.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll", + "lib/net46/System.Security.Cryptography.Encryption.Aes.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll", + "ref/net46/System.Security.Cryptography.Encryption.Aes.dll" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec", + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll" + ] + }, + "System.Security.Principal/4.0.0-beta-23019": { + "sha512": "2zkK0eJOfso/Jo+77NVXDoJRggzL0jM0ayeXz+vD8pK9pIRnhpWJVbaGmT7MPBWW9KbPwtbJyXejpUS2rBflUQ==", + "files": [ + "System.Security.Principal.4.0.0-beta-23019.nupkg", + "System.Security.Principal.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.nuspec", + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "sha512": "FYvKKTbncuJCMnc1TmccsJlGSjIQrUJPymt2R3o5uSV1plyGD9V3san/rpq2IO4kDbHjGrQjEtZlbehwUucB5Q==", + "files": [ + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.Windows.nuspec", + "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.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec", + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec", + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec", + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "sha512": "7gCVMRey2Nji6WDKleSigGBJuy4gMKXGeVqauROuFoTygHNtFYaUTeToGMy7Obsi+tzgnyEYfd+9uY3Ifc/SjA==", + "files": [ + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.RegularExpressions.nuspec", + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/net46/_._" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec", + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec", + "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.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec", + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll" + ] + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "sha512": "ECx+zZlXCfhkpZ0PUVrzp5UB6zRdzi94LsQhm7DtUS/uB17I3sYh0RsnMu/5jTULByQ1Ju4K/JTbM28InXO/PQ==", + "files": [ + "System.Threading.Thread.4.0.0-beta-23019.nupkg", + "System.Threading.Thread.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Thread.nuspec", + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.dll", + "ref/net46/System.Threading.Thread.dll" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec", + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll" + ] + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "sha512": "nGA/Vt5zC8zGQ8r9mSdRTWzVMXh1YgJH9XH8x5OQZVLh0hn6CSC32RrmUrmKLpxKd64B9mbKoubeLUqXlf/m8g==", + "files": [ + "System.Threading.Timer.4.0.0-beta-23019.nupkg", + "System.Threading.Timer.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Timer.nuspec", + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "ref/dotnet/System.Threading.Timer.dll", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/win81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec", + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._" + ] + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "sha512": "pyyzY5FFoZziGVDFyO5VLM094cX7jNN+01EsSJEFreje5uzSz6aKwIPgTe/l2CFiXYFoUNr0O6D3GEc8jPmbPg==", + "files": [ + "System.Xml.XDocument.4.0.10-beta-23019.nupkg", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec", + "lib/dotnet/System.Xml.XDocument.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net46/_._" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.Authentication.Cookies >= 1.0.0-beta5", + "Microsoft.AspNet.DataProtection >= 1.0.0-beta5", + "Microsoft.AspNet.Server.IIS >= 1.0.0-beta5", + "Microsoft.AspNet.Server.WebListener >= 1.0.0-beta5", + "Microsoft.Framework.Caching.Memory >= 1.0.0-beta5", + "Microsoft.Framework.Logging.Console >= 1.0.0-beta5", + "Kestrel >= 1.0.0-beta5" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [] + } +} \ No newline at end of file diff --git a/samples/OpenIdConnectSample/project.json b/samples/OpenIdConnectSample/project.json index 815ad8a33..3f2efb5cf 100644 --- a/samples/OpenIdConnectSample/project.json +++ b/samples/OpenIdConnectSample/project.json @@ -1,12 +1,12 @@ { "dependencies": { - "Microsoft.AspNet.Authentication.Cookies": "1.0.0-*", - "Microsoft.AspNet.Authentication.OpenIdConnect": "1.0.0-*", - "Microsoft.AspNet.DataProtection": "1.0.0-*", - "Microsoft.AspNet.Server.IIS": "1.0.0-*", - "Microsoft.AspNet.Server.WebListener": "1.0.0-*", - "Microsoft.Framework.Logging.Console": "1.0.0-*", - "Kestrel": "1.0.0-*" + "Microsoft.AspNet.Authentication.Cookies": "1.0.0-beta5", + "Microsoft.AspNet.Authentication.OpenIdConnect": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Server.IIS": "1.0.0-beta5", + "Microsoft.AspNet.Server.WebListener": "1.0.0-beta5", + "Microsoft.Framework.Logging.Console": "1.0.0-beta5", + "Kestrel": "1.0.0-beta5" }, "frameworks": { "dnx451": { }, diff --git a/samples/OpenIdConnectSample/project.lock.json b/samples/OpenIdConnectSample/project.lock.json new file mode 100644 index 000000000..78eb6ccaf --- /dev/null +++ b/samples/OpenIdConnectSample/project.lock.json @@ -0,0 +1,4120 @@ +{ + "locked": true, + "version": -9996, + "targets": { + "DNX,Version=v4.5.1": { + "Kestrel/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta5", + "Microsoft.AspNet.Server.Kestrel": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Kestrel.dll": {} + }, + "runtime": { + "lib/dnx451/Kestrel.dll": {} + } + }, + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Authentication.Cookies/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.Cookies.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.Cookies.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "System.IO", + "System.Security", + "System.Xml", + "System.Xml.Linq", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta5", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Configuration": "1.0.0-beta5", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta5", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.Loader.IIS/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Hosting": "1.0.0-beta5", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Loader.IIS.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Loader.IIS.dll": {} + } + }, + "Microsoft.AspNet.Loader.IIS.Interop/1.0.0-beta5": {}, + "Microsoft.AspNet.Server.IIS/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Loader.IIS.Interop": "1.0.0-beta5", + "Microsoft.AspNet.Loader.IIS": "1.0.0-beta5" + } + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll": {} + } + }, + "Microsoft.AspNet.Server.WebListener/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Net.Http.Server": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Server.WebListener.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Server.WebListener.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "System.Collections.Concurrent", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Console/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Console.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Console.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.IdentityModel.Logging/1.0.0-beta5-206011020": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.IdentityModel.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.IdentityModel.Logging.dll": {} + } + }, + "Microsoft.IdentityModel.Protocol.Extensions/2.0.0-beta5-206011020": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "System.IdentityModel.Tokens": "5.0.0-beta5-206011020", + "Microsoft.IdentityModel.Logging": "1.0.0-beta5-206011020" + }, + "frameworkAssemblies": [ + "System.Net.Http", + "System.IO", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.IdentityModel.Protocol.Extensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.IdentityModel.Protocol.Extensions.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Net.Http.Server/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Net.WebSockets": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Server.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Server.dll": {} + } + }, + "Microsoft.Net.WebSockets/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/net45/Microsoft.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Net.WebSockets.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.IdentityModel.Tokens/5.0.0-beta5-206011020": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "Microsoft.IdentityModel.Logging": "1.0.0-beta5-206011020" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/System.IdentityModel.Tokens.dll": {} + }, + "runtime": { + "lib/dnx451/System.IdentityModel.Tokens.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Kestrel/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta5", + "Microsoft.AspNet.Server.Kestrel": "1.0.0-beta5", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Kestrel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Kestrel.dll": {} + } + }, + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Authentication.Cookies/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.Cookies.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.Cookies.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption.Aes": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta5", + "System.IO": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta5", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Configuration": "1.0.0-beta5", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta5", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6", + "System.Console": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta5" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.Loader.IIS/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Hosting": "1.0.0-beta5", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.Diagnostics.Process": "4.0.0-beta-23019", + "System.Net.NetworkInformation": "4.0.10-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Loader.IIS.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Loader.IIS.dll": {} + } + }, + "Microsoft.AspNet.Loader.IIS.Interop/1.0.0-beta5": {}, + "Microsoft.AspNet.Server.IIS/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Loader.IIS.Interop": "1.0.0-beta5", + "Microsoft.AspNet.Loader.IIS": "1.0.0-beta5" + } + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.dll": {} + } + }, + "Microsoft.AspNet.Server.WebListener/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Net.Http.Server": "1.0.0-beta5", + "System.Security.Claims": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Server.WebListener.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Server.WebListener.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Linq": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Ini.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Ini.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Console/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "System.Runtime": "4.0.20-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Console.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Console.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.IdentityModel.Logging/1.0.0-beta5-206011020": { + "dependencies": { + "System.Globalization": "4.0.10-beta-22913", + "System.Diagnostics.Tracing": "4.0.20-beta-22913" + }, + "compile": { + "lib/dnxcore50/Microsoft.IdentityModel.Logging.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.IdentityModel.Logging.dll": {} + } + }, + "Microsoft.IdentityModel.Protocol.Extensions/2.0.0-beta5-206011020": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "System.IdentityModel.Tokens": "5.0.0-beta5-206011020", + "Microsoft.IdentityModel.Logging": "1.0.0-beta5-206011020", + "System.Collections.Specialized": "4.0.0-beta-22913", + "System.Diagnostics.Contracts": "4.0.0-beta-22913", + "System.Globalization": "4.0.10-beta-22913", + "System.IO.FileSystem": "4.0.0-beta-22913", + "System.Net.Http": "4.0.0-beta-22913" + }, + "compile": { + "lib/dnxcore50/Microsoft.IdentityModel.Protocol.Extensions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.IdentityModel.Protocol.Extensions.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Contracts": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Net.Http.Server/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Net.WebSockets": "1.0.0-beta5", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Server.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Server.dll": {} + } + }, + "Microsoft.Net.WebSockets/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Contracts": "4.0.0-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Timer": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.WebSockets.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IdentityModel.Tokens/5.0.0-beta5-206011020": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "Microsoft.IdentityModel.Logging": "1.0.0-beta5-206011020", + "System.Collections": "4.0.10-beta-22913", + "System.Diagnostics.Tools": "4.0.0-beta-22913", + "System.Globalization": "4.0.10-beta-22913", + "System.IO": "4.0.10-beta-22913", + "System.Runtime.Extensions": "4.0.10-beta-22913", + "System.Runtime.InteropServices": "4.0.20-beta-22913", + "System.Security.Claims": "4.0.0-beta-22913", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-22913", + "System.Security.Cryptography.RSA": "4.0.0-beta-22913", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-22913", + "System.Security.Principal": "4.0.0-beta-22913", + "System.Text.RegularExpressions": "4.0.10-beta-22913", + "System.Threading": "4.0.10-beta-22913" + }, + "compile": { + "lib/dnxcore50/System.IdentityModel.Tokens.dll": {} + }, + "runtime": { + "lib/dnxcore50/System.IdentityModel.Tokens.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.dll": {} + } + }, + "System.Net.Http.WinHttpHandler/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Net.Http": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll": {} + } + }, + "System.Net.NetworkInformation/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.NetworkInformation.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.NetworkInformation.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + } + } + }, + "libraries": { + "Kestrel/1.0.0-beta5": { + "serviceable": true, + "sha512": "rFC89oqyntN0Z/ACBjYKaogIom3eW6YI8fFFw9ou2KWSSpDY1PCua4D/PDx4N2oYBhgFjBX4GyJmRZ/1L3n9Pw==", + "files": [ + "Kestrel.1.0.0-beta5.nupkg", + "Kestrel.1.0.0-beta5.nupkg.sha512", + "Kestrel.nuspec", + "lib/dnx451/Kestrel.dll", + "lib/dnx451/Kestrel.xml", + "lib/dnxcore50/Kestrel.dll", + "lib/dnxcore50/Kestrel.xml" + ] + }, + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "serviceable": true, + "sha512": "0aGfwSmbVHhNIQSp6dXqz6sLYD07U9Dgnw8rm/wnQDkLFfJ9iPQKBBTk/Oh/6wGwaSg9Ko7mzXTwILE42HZdZA==", + "files": [ + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.xml" + ] + }, + "Microsoft.AspNet.Authentication.Cookies/1.0.0-beta5": { + "serviceable": true, + "sha512": "slpGZOh7Gp8YFE9cdlzce67LFUAspBAp6WfjzhH270Ck/D8lzY83DiDLe2IQOhgH+MxlYi+r4bb7PvOhmoSM7g==", + "files": [ + "Microsoft.AspNet.Authentication.Cookies.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.Cookies.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.Cookies.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.Cookies.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.Cookies.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Cookies.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Cookies.xml" + ] + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "serviceable": true, + "sha512": "nhCP9Q0TSA3F31w+SXoXh5X9zbGRpyGZrkBhid++k673Mxg1uzkDNa18Z0edF7Yiua2ZHZeA/GPkPUG0pzER/A==", + "files": [ + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Cryptography.Internal.nuspec", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.xml" + ] + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "serviceable": true, + "sha512": "f8oqJIyHUbmsIkgEq+A7QQOKr60s4GoewR2I+ItHGuHdwV6ICuNnu4yKSx7v0k/uh51T49ECcrrMApUepuV2mg==", + "files": [ + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.nuspec", + "lib/dnx451/Microsoft.AspNet.DataProtection.dll", + "lib/dnx451/Microsoft.AspNet.DataProtection.xml", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.xml", + "lib/net451/Microsoft.AspNet.DataProtection.dll", + "lib/net451/Microsoft.AspNet.DataProtection.xml" + ] + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ow8W+rMtA0rsiCtvHtUs+f5wrzMj0rtoSjl+vTgtGNQ0Ib+3tsGbKgA9+l5kzGKG6RUebnCK+vXKP/zCXDZOvw==", + "files": [ + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.Abstractions.nuspec", + "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.FeatureModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "M6ltNGrh4gHU+DiMbV074ZDwDQAIYx1SEOlltX7XzKbiDztYuTAtXiv8M/wkjZBeVdkszkE0NPOlMb/pbfww6g==", + "files": [ + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg", + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.FeatureModel.nuspec", + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll", + "lib/dnx451/Microsoft.AspNet.FeatureModel.xml", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.xml" + ] + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Az9I0ufHV2uLCmLtle7amzWUrOVkpbOma36HIH6NKuOSDdKtCdn83Ycd3SMXQb0dSA6LgDrJQJypbdAEKq45Eg==", + "files": [ + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Abstractions.nuspec", + "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.Physical/1.0.0-beta5": { + "serviceable": true, + "sha512": "kjyV734jm7qapKPlr5jmUnlPvjBWTeVY8w9l66MvczxgmUxMqkfO76o7ttFAnlXZg7Pt08Mf4GLx4vMLDJ2IIg==", + "files": [ + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta5.nupkg", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Physical.nuspec", + "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.Hosting/1.0.0-beta5": { + "serviceable": true, + "sha512": "sUkpWUOM16vhFoHiKNvhU01rV3b2vdCDrBj+orvoZrNozVV1qvEU+/tESW3xBG+nOFeWOB5P/vpYJsLIqvFJ3w==", + "files": [ + "Microsoft.AspNet.Hosting.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Hosting.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Hosting.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "SxPZMIOQrLgpxMT7W5ezkvpvVGocDREAkMMCsb8tfbeFrqsS6ONgjz3Q8HDPLq/sLkfPXvhi9Pu85yDTKW45lg==", + "files": [ + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Hosting.Abstractions.nuspec", + "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.Server.Abstractions/1.0.0-beta5": { + "sha512": "Z9zKH1kFlhGAZ6hO1s4IYeAN2fZeoIgUO7Rt4HWp4EBf4w2caBCrSWUlqEmVO26ZF+rfQpagvZNlBjL0B80V3A==", + "files": [ + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Hosting.Server.Abstractions.nuspec", + "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.Http/1.0.0-beta5": { + "serviceable": true, + "sha512": "Smn8m/xaNcNK4GKTZ5lfkHL4OqKCyxrt5m+1i3Dpe5wjUHR+Z9qGVjcuT/ZTJLfSZBelpP0yKZHFqcgUCMujFw==", + "files": [ + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "vNdZzaCID7R1k93o+N6LQ9d3Lx49bAoSAwslnzhcKXvbSvbHjZ1DRFDngrHIlY/ckcls0MH+j2qePUtuCTb8NQ==", + "files": [ + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec", + "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.Extensions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ai6Q0oPVzBQwpbeMcS585MZEjsYRAmjd+V6zSqutFb0u9IwxLV0ALr9dNT6Fg3/Wf+LSuBxeCfk5FZ5BjfuYqA==", + "files": [ + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec", + "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.Features/1.0.0-beta5": { + "serviceable": true, + "sha512": "jZi6dVWXrN3cABLWjm0Dgh7CIm0VppzDPpUUuOgIIfnr9E4QcG87Xq7s25JIFsXHkInmPH2DSUn5cp6PA9QrIw==", + "files": [ + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "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.Loader.IIS/1.0.0-beta5": { + "serviceable": true, + "sha512": "fHM/Za9DJ7crDNM41xy1exoROTMM/tidUnLPWMOU2clTUyAPZ+1aUKZScUHn3lw+t9YjkjcAdltr+EUm8Prb/w==", + "files": [ + "Microsoft.AspNet.Loader.IIS.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Loader.IIS.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Loader.IIS.nuspec", + "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.Interop/1.0.0-beta5": { + "serviceable": true, + "sha512": "m5R/fod2cvu4XucoLLPgDspTqOQ/1wsSJ6k2Oiwa9BrMRdp2flR1DseM3wPycf1MVYpA/t6mO4eGe8phRMVWFw==", + "files": [ + "Microsoft.AspNet.Loader.IIS.Interop.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Loader.IIS.Interop.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Loader.IIS.Interop.nuspec", + "InteropAssemblies/amd64/Microsoft.AspNet.Loader.IIS.Interop.dll", + "InteropAssemblies/x86/Microsoft.AspNet.Loader.IIS.Interop.dll", + "tools/AspNet.Loader.dll" + ] + }, + "Microsoft.AspNet.Server.IIS/1.0.0-beta5": { + "sha512": "8j+azyegksHKmGAPRoXGzGNQ4l57FWqczVS3yAOpMQnhde1xojWhrRe9xhCc9uU0aCp2DwlHtHSLxEfPd5DILw==", + "files": [ + "Microsoft.AspNet.Server.IIS.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Server.IIS.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Server.IIS.nuspec" + ] + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta5": { + "serviceable": true, + "sha512": "JDebwt15z3QyFAQEqEiYNDUu9mDymOTfFip5KC4+0ou5YHi6AGlcT5mxQD+YuIkcI9/0Ck9mFWOL0tKEgwjCSQ==", + "files": [ + "Microsoft.AspNet.Server.Kestrel.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Server.Kestrel.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Server.Kestrel.nuspec", + "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", + "native/darwin/universal/libuv.dylib", + "native/windows/amd64/libuv.dll", + "native/windows/x86/libuv.dll" + ] + }, + "Microsoft.AspNet.Server.WebListener/1.0.0-beta5": { + "serviceable": true, + "sha512": "5wJEiGFsjV1FudzrVQfJ/Pmbk7KS6718Iy9u0572MAg6JdCMpodzEvquCw9udXN2vzVy61SMps4KZfurBfAqFQ==", + "files": [ + "Microsoft.AspNet.Server.WebListener.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Server.WebListener.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Server.WebListener.nuspec", + "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.WebUtilities/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ieb9JeaI57V2HRWyFsQE+Ioo7jRE7gp8QgmHAgCuc58RfUUvKf3BdmjMMqw+0DfOQMf4VL9xWpj0yQ/bMA1VDA==", + "files": [ + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec", + "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.Framework.Caching.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "qPWM85eWgzWYtt8QMydu4c4uaAO65QXieuxiPZ/QGlIiLKx2sZv8gsc8yFbu4IfM7SPfrixypckD/gIVv67Wdw==", + "files": [ + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "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.Configuration/1.0.0-beta5": { + "serviceable": true, + "sha512": "UBw3f+fKi4/WHWIz3oTKF5UiLjmfvTiDgU9oCjYYApqKUMIji4VPbgsoqCzEzgXPHpLHDGkBal6Ux0Gcgu15Ig==", + "files": [ + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "dW5gHHlvvNnrFFSGtfOFhKClSi9Eb4WFPVdrrIbZYq2gIVw2Dde740p68H3+v9Fr511sk4yPCkGZ0wqXm1GObw==", + "files": [ + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "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.Binder/1.0.0-beta5": { + "serviceable": true, + "sha512": "xSWVoCC0gtn9h12O/M2Eie6eXehJ0P2ovvGkZU5ZWNh8ycTyisyKrkhAmtObcF0dDdPJO9HXUHbRT5ady9fb8Q==", + "files": [ + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml" + ] + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta5": { + "serviceable": true, + "sha512": "yVOjzNMYtfAaOE0cG5vTDkNvZ4lI6y30F5m9/9IjTkEtsYb1wa8wA4nppiquWKE3Hui0rCOGwQsGibh+s/krew==", + "files": [ + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.CommandLine.nuspec", + "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.EnvironmentVariables/1.0.0-beta5": { + "serviceable": true, + "sha512": "Tfm9RDrFJI2xhQy2glkmJnC8gMY9991gMyNGO/Ndt2SFlCXMZFJpVxlbrdJoL7K1hWfRqHkUnPWddxKtVFyIcA==", + "files": [ + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.EnvironmentVariables.nuspec", + "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.Ini/1.0.0-beta5": { + "serviceable": true, + "sha512": "wcqJbcZzrVxp9TJ5skkWn/amgebKiRElPIxP9cWe3ww7igJh9VuCjRyuRjZlMIl8z6Ezqhs0JpaCXz/Da/ieAQ==", + "files": [ + "Microsoft.Framework.Configuration.Ini.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Ini.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Ini.nuspec", + "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.DependencyInjection/1.0.0-beta5": { + "serviceable": true, + "sha512": "Jau27ULONglLGNu4FAwk7XjC3JXB4LsSWb8QsSlCotiJmOXHG7x+MEVz0nAgmFFkN2VGjFjK0Klnz0z9aDaBaw==", + "files": [ + "Microsoft.Framework.DependencyInjection.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "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.Logging/1.0.0-beta5": { + "serviceable": true, + "sha512": "YbfHijwmKd3PsNSJ6iYRARwSeCPwkZKY9s3qb+jNFqom2QnD9PDq9q0yIZZBWZMJ3EAsRIZa92FYuKnNKPfX9g==", + "files": [ + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "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.Console/1.0.0-beta5": { + "serviceable": true, + "sha512": "GeFovyJI1r0xSKWuLEDLiMbQiPLzXMoEVV4leOh4KSj0TfddtKM/16EmAz/u9q4kfmjeEu1tJpMXPXY8GcCKJg==", + "files": [ + "Microsoft.Framework.Logging.Console.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Console.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Console.nuspec", + "lib/dnx451/Microsoft.Framework.Logging.Console.dll", + "lib/dnx451/Microsoft.Framework.Logging.Console.xml", + "lib/dotnet/Microsoft.Framework.Logging.Console.dll", + "lib/dotnet/Microsoft.Framework.Logging.Console.xml", + "lib/net45/Microsoft.Framework.Logging.Console.dll", + "lib/net45/Microsoft.Framework.Logging.Console.xml" + ] + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "sha512": "hgETnks4ovIE4ySkFs6mQ+QN195kOIM+3IxgIqQFYtuF9tfNdw1/xkkwm9ip7vUifJlNC4O5d9o7CJ2ou46GyA==", + "files": [ + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "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", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "oK4jCjvQfz1NGBUf73euKqPDhC4aSJ3fkpOrozrOxVL85ToF+QyrD4yWclNCkf0/WnEUjXh6eWsfiEqI9zgODg==", + "files": [ + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml" + ] + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "serviceable": true, + "sha512": "y/2QI2ruRp1Wc3qgIDxQex7ExueFgwd9M5Jw/xJA+tIRuwLlmyDvegDpcBQwqWIanG3pd2Tm5sjcPSTqPLcTyQ==", + "files": [ + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.nuspec", + "lib/dnx451/Microsoft.Framework.WebEncoders.dll", + "lib/dnx451/Microsoft.Framework.WebEncoders.xml", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.xml", + "lib/net45/Microsoft.Framework.WebEncoders.dll", + "lib/net45/Microsoft.Framework.WebEncoders.xml" + ] + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "serviceable": true, + "sha512": "KIwD5E5o4osx5NnSrqppt3W8TDdel2S1mnsdXGZn1N61enxic4v5Al51RPvcbGAPoVPQhru3fFao7FdxmfWGnQ==", + "files": [ + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.Core.nuspec", + "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.IdentityModel.Logging/1.0.0-beta5-206011020": { + "serviceable": true, + "sha512": "j9tEQEtYqlfhj3eHq49Oo48398en2HL4nYOhjLXtItaa4Wb03LV8dvjr3JdnJEBpyXOyYJXnzCAwLzcjnISOpw==", + "files": [ + "Microsoft.IdentityModel.Logging.1.0.0-beta5-206011020.nupkg", + "Microsoft.IdentityModel.Logging.1.0.0-beta5-206011020.nupkg.sha512", + "Microsoft.IdentityModel.Logging.nuspec", + "lib/dnx451/Microsoft.IdentityModel.Logging.dll", + "lib/dnx451/Microsoft.IdentityModel.Logging.xml", + "lib/dnxcore50/Microsoft.IdentityModel.Logging.dll", + "lib/dnxcore50/Microsoft.IdentityModel.Logging.xml" + ] + }, + "Microsoft.IdentityModel.Protocol.Extensions/2.0.0-beta5-206011020": { + "serviceable": true, + "sha512": "kOWExUXDJI1rySKc/2zxZyECwR84Rn2u7/QI2d0hwkunsDCiiLu95WCDSPpw2WQjzuGiRWTieL7mt8KN++UJog==", + "files": [ + "Microsoft.IdentityModel.Protocol.Extensions.2.0.0-beta5-206011020.nupkg", + "Microsoft.IdentityModel.Protocol.Extensions.2.0.0-beta5-206011020.nupkg.sha512", + "Microsoft.IdentityModel.Protocol.Extensions.nuspec", + "lib/dnx451/Microsoft.IdentityModel.Protocol.Extensions.dll", + "lib/dnx451/Microsoft.IdentityModel.Protocol.Extensions.xml", + "lib/dnxcore50/Microsoft.IdentityModel.Protocol.Extensions.dll", + "lib/dnxcore50/Microsoft.IdentityModel.Protocol.Extensions.xml" + ] + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "serviceable": true, + "sha512": "ewp5ueEWtXW+fnzn0QMhTV78gDOHoO/EYgzay6nYzAP92AgaP1r13lTkh1VDpbHaCxm9GWweUkojIWZ196iQUQ==", + "files": [ + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec", + "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.Server/1.0.0-beta5": { + "serviceable": true, + "sha512": "U7qFSAMeZRIs9tR//2rnXdHnb9OI/+v1WxU1Ql/HSMQ2o/+6DV3YMOxmoe4yDi9PwFav6CiclCD9Odp99s3oMQ==", + "files": [ + "Microsoft.Net.Http.Server.1.0.0-beta5.nupkg", + "Microsoft.Net.Http.Server.1.0.0-beta5.nupkg.sha512", + "Microsoft.Net.Http.Server.nuspec", + "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/net45/Microsoft.Net.Http.Server.dll", + "lib/net45/Microsoft.Net.Http.Server.xml" + ] + }, + "Microsoft.Net.WebSockets/1.0.0-beta5": { + "serviceable": true, + "sha512": "q2w6//6WLVteA99pdYZZuSdALASwIjKjH8mOIJEpqSt2lStDi3O+ppiEqLfrlr0Am2ACYFar8Sz5J87PM53Q9A==", + "files": [ + "Microsoft.Net.WebSockets.1.0.0-beta5.nupkg", + "Microsoft.Net.WebSockets.1.0.0-beta5.nupkg.sha512", + "Microsoft.Net.WebSockets.nuspec", + "lib/dnxcore50/Microsoft.Net.WebSockets.dll", + "lib/dnxcore50/Microsoft.Net.WebSockets.xml", + "lib/net45/Microsoft.Net.WebSockets.dll", + "lib/net45/Microsoft.Net.WebSockets.xml" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "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", + "tools/install.ps1" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec", + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec", + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "sha512": "ijnoxLU+SrSf1AItfZOwtnzyx7yEi+WJtKa3d2X93Xf5YHlRsL4RwMZ10M9gLE8E+Rpi3ZJM5wAXi6OFSprDtw==", + "files": [ + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.NonGeneric.nuspec", + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/net46/System.Collections.NonGeneric.dll" + ] + }, + "System.Collections.Specialized/4.0.0-beta-23019": { + "sha512": "Z79DO5DQ9Z58p/1n0wW0szP+4UdoJOxGVpX+D3gFXW7g11i+TyZKqg5/OcIjbmgB9RvJkDJBTOs/xtXIu/CZWw==", + "files": [ + "System.Collections.Specialized.4.0.0-beta-23019.nupkg", + "System.Collections.Specialized.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.Specialized.nuspec", + "lib/dotnet/System.Collections.Specialized.dll", + "lib/net46/System.Collections.Specialized.dll", + "ref/dotnet/System.Collections.Specialized.dll", + "ref/net46/System.Collections.Specialized.dll" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec", + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec", + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec", + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll" + ] + }, + "System.Diagnostics.Contracts/4.0.0-beta-23019": { + "sha512": "wi3eWkfN0kZYCHgIaOqRDfJoyl8P8oQLcxZ47ElLDTtOEW0TfGl0wVeqllMg7nMMzR7C1ordTWycpV34yQ7g4Q==", + "files": [ + "System.Diagnostics.Contracts.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Contracts.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec", + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Contracts.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec", + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" + ] + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "sha512": "1vuXv89pElI0JeDhnXokMyy9VkLpkDFa+oU3selb5uhHfzVswH1etFBumZ0VKKvTOAnm8AS/3ZDXAVlRjywq3A==", + "files": [ + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Process.nuspec", + "lib/DNXCore50/System.Diagnostics.Process.dll", + "lib/net46/System.Diagnostics.Process.dll", + "ref/dotnet/System.Diagnostics.Process.dll", + "ref/net46/System.Diagnostics.Process.dll" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "sha512": "GB0ki4TLNwFKcT7ZesteTERlZmBytRitEbdD6O1zVwDaeqqY+FZb2/+CH2Q5U1rN7qY9YmM70PxtyPG1t31zkg==", + "files": [ + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Tools.nuspec", + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll" + ] + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "sha512": "MZxMo9Skg9oZrJYwGpRfeOfrTfHxmTPWhj8XIXdIryfArzwG1FjZgzOrkWWcON0PdV9OywZYGly09nUCs/JdhA==", + "files": [ + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.TraceSource.nuspec", + "lib/DNXCore50/System.Diagnostics.TraceSource.dll", + "lib/net46/System.Diagnostics.TraceSource.dll", + "ref/dotnet/System.Diagnostics.TraceSource.dll", + "ref/net46/System.Diagnostics.TraceSource.dll" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec", + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec", + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec", + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll" + ] + }, + "System.Globalization.Extensions/4.0.0-beta-23019": { + "sha512": "k3KrctgKowl9Yv8eFbBIrnU/lL5+uUeaoCSJllwXA1XbQaGCLKVIYsMewgwV66UzkDfMU/65d6XhIcGucx9IAg==", + "files": [ + "System.Globalization.Extensions.4.0.0-beta-23019.nupkg", + "System.Globalization.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Extensions.nuspec", + "lib/dotnet/System.Globalization.Extensions.dll", + "lib/net46/System.Globalization.Extensions.dll", + "ref/dotnet/System.Globalization.Extensions.dll", + "ref/net46/System.Globalization.Extensions.dll" + ] + }, + "System.IdentityModel.Tokens/5.0.0-beta5-206011020": { + "serviceable": true, + "sha512": "KCAG0ne31aJxRcHI5rVY7002bvXG9evX85mmWFe42+YcZ1tIvwlUL6c3C+f+wbL4/Q3vqeVUwD+iX4MZSrtSHQ==", + "files": [ + "System.IdentityModel.Tokens.5.0.0-beta5-206011020.nupkg", + "System.IdentityModel.Tokens.5.0.0-beta5-206011020.nupkg.sha512", + "System.IdentityModel.Tokens.nuspec", + "lib/dnx451/System.IdentityModel.Tokens.dll", + "lib/dnx451/System.IdentityModel.Tokens.xml", + "lib/dnxcore50/System.IdentityModel.Tokens.dll", + "lib/dnxcore50/System.IdentityModel.Tokens.xml" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec", + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec", + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec", + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec", + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "sha512": "+xsD0H46/EB88848d9cHel2WVbUWlM/Y/k+tuY5lp2jXSwV8zMJ6F3TjMqeUZwWtUUavw+AN7D0a4ZoGVs/Rcw==", + "files": [ + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec", + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/net46/System.IO.FileSystem.Watcher.dll" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec", + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "sha512": "YjnsUzXsXx8BdqaXQ2U/hrz4CWdlAfcoYccqO3BSKCpPZPFEbKizEiHR9KJGcqf9gQ4lzRkhlM3xiMIjX27mUQ==", + "files": [ + "runtime.json", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg.sha512", + "System.Linq.Expressions.nuspec", + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll" + ] + }, + "System.Net.Http/4.0.0-beta-23019": { + "sha512": "8mt4X1eIjTMrKVINJuzuFYf7C4GrYFC+tlvc2zH5HtxKPpbFZamMUdJ19ORxZ9ds053aqQASdiha7eH86PN+eg==", + "files": [ + "System.Net.Http.4.0.0-beta-23019.nupkg", + "System.Net.Http.4.0.0-beta-23019.nupkg.sha512", + "System.Net.Http.nuspec", + "lib/DNXCore50/System.Net.Http.dll", + "lib/net45/_._", + "lib/netcore50/System.Net.Http.dll", + "lib/win8/_._", + "ref/dotnet/System.Net.Http.dll", + "ref/net45/_._", + "ref/netcore50/System.Net.Http.dll", + "ref/win8/_._" + ] + }, + "System.Net.Http.WinHttpHandler/4.0.0-beta-23019": { + "sha512": "C6DBRXVzX3+bkWVlUdMVqHMgIiKbZJU6E08R/rSVENmVTGHxQ9NgSwA8yBCreOeV4hcdHIa187kjFA0X6BYSRA==", + "files": [ + "System.Net.Http.WinHttpHandler.4.0.0-beta-23019.nupkg", + "System.Net.Http.WinHttpHandler.4.0.0-beta-23019.nupkg.sha512", + "System.Net.Http.WinHttpHandler.nuspec", + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll" + ] + }, + "System.Net.NetworkInformation/4.0.10-beta-23019": { + "sha512": "+sHpVzEZInqCuvMETuD45ZkH0OLkO4SwdJa9NsZRKbv8gWTn4DN1zPXP69bc45Xs1vO7dG/Wu/3tbOM+0g6XVQ==", + "files": [ + "System.Net.NetworkInformation.4.0.10-beta-23019.nupkg", + "System.Net.NetworkInformation.4.0.10-beta-23019.nupkg.sha512", + "System.Net.NetworkInformation.nuspec", + "lib/DNXCore50/System.Net.NetworkInformation.dll", + "lib/net46/_._", + "ref/dotnet/System.Net.NetworkInformation.dll", + "ref/net46/_._" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec", + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._" + ] + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "sha512": "9waIolEiBpjdMWLtTqQxYjpPplVpTlZEzof6C/6/vitUP7DuJrI7wJltEO5ARMPBqyT2Ohke0h1ZpLiRkZQkCw==", + "files": [ + "System.Net.WebSockets.4.0.0-beta-23019.nupkg", + "System.Net.WebSockets.4.0.0-beta-23019.nupkg.sha512", + "System.Net.WebSockets.nuspec", + "lib/DNXCore50/System.Net.WebSockets.dll", + "lib/net46/System.Net.WebSockets.dll", + "ref/dotnet/System.Net.WebSockets.dll", + "ref/net46/System.Net.WebSockets.dll" + ] + }, + "System.ObjectModel/4.0.0-beta-23019": { + "sha512": "shmwP3YgLhSx8+njPPb82OULH+SteCr8fZ6XaQK8dfuB3UCqqUfITYPW1zknMotwsnBZpVPdXFWmwvTE0XTCGA==", + "files": [ + "License.rtf", + "System.ObjectModel.4.0.0-beta-23019.nupkg", + "System.ObjectModel.4.0.0-beta-23019.nupkg.sha512", + "System.ObjectModel.nuspec", + "lib/net45/_._", + "lib/win8/_._", + "ref/dotnet/System.ObjectModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/win8/_._" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec", + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec", + "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.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec", + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "sha512": "FAp9TewUfCxaydPyY5Glv2/3KdxD5vpZ4qgx26OWV6xtytGinnXpHsxownQKKe7WkeqlRjy7s7cRgjTKZ50AQA==", + "files": [ + "System.Reflection.Emit.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.nuspec", + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "sha512": "5OsJjj6G9WY8aV3EWfI03dJoqH0RvILtP2GJ16JQf90pV0kVmgGsFQSqh+lcnnexh4CEje7DDxF748o/8KamWA==", + "files": [ + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec", + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec", + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec", + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "sha512": "5/WcPvsdnw0d8rwwsCgQKoo9oXFQA1gMHtyNcYjelDjaaYC/dYoU7Eo0JdP+0PMgy9FnBOHVjRHOTcJ2HIjefA==", + "files": [ + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec", + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec", + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec", + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec", + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec", + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec", + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec", + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._" + ] + }, + "System.Security.Claims/4.0.0-beta-23019": { + "sha512": "kKseHxGh5pWjM43MZWtub/ZyBWUV3RHNSJuUtTzapeQD2qND6pGGNekMXcxmEZOxrKwFEBAeTlcgmWo/2e6/SQ==", + "files": [ + "System.Security.Claims.4.0.0-beta-23019.nupkg", + "System.Security.Claims.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Claims.nuspec", + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll" + ] + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23019": { + "sha512": "X3lDbzONEsSurqDDApxmA/ybdViY5F1XAWoGV+B8ZlDKOsSiEbBwsPt8MShROlCkPZezUyRpLzg2b8Jd+anIRQ==", + "files": [ + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.Aes.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll", + "lib/net46/System.Security.Cryptography.Encryption.Aes.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll", + "ref/net46/System.Security.Cryptography.Encryption.Aes.dll" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec", + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll" + ] + }, + "System.Security.Principal/4.0.0-beta-23019": { + "sha512": "2zkK0eJOfso/Jo+77NVXDoJRggzL0jM0ayeXz+vD8pK9pIRnhpWJVbaGmT7MPBWW9KbPwtbJyXejpUS2rBflUQ==", + "files": [ + "System.Security.Principal.4.0.0-beta-23019.nupkg", + "System.Security.Principal.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.nuspec", + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "sha512": "FYvKKTbncuJCMnc1TmccsJlGSjIQrUJPymt2R3o5uSV1plyGD9V3san/rpq2IO4kDbHjGrQjEtZlbehwUucB5Q==", + "files": [ + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.Windows.nuspec", + "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.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec", + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec", + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec", + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "sha512": "7gCVMRey2Nji6WDKleSigGBJuy4gMKXGeVqauROuFoTygHNtFYaUTeToGMy7Obsi+tzgnyEYfd+9uY3Ifc/SjA==", + "files": [ + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.RegularExpressions.nuspec", + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/net46/_._" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec", + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec", + "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.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec", + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll" + ] + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "sha512": "ECx+zZlXCfhkpZ0PUVrzp5UB6zRdzi94LsQhm7DtUS/uB17I3sYh0RsnMu/5jTULByQ1Ju4K/JTbM28InXO/PQ==", + "files": [ + "System.Threading.Thread.4.0.0-beta-23019.nupkg", + "System.Threading.Thread.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Thread.nuspec", + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.dll", + "ref/net46/System.Threading.Thread.dll" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec", + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll" + ] + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "sha512": "nGA/Vt5zC8zGQ8r9mSdRTWzVMXh1YgJH9XH8x5OQZVLh0hn6CSC32RrmUrmKLpxKd64B9mbKoubeLUqXlf/m8g==", + "files": [ + "System.Threading.Timer.4.0.0-beta-23019.nupkg", + "System.Threading.Timer.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Timer.nuspec", + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "ref/dotnet/System.Threading.Timer.dll", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/win81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec", + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._" + ] + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "sha512": "pyyzY5FFoZziGVDFyO5VLM094cX7jNN+01EsSJEFreje5uzSz6aKwIPgTe/l2CFiXYFoUNr0O6D3GEc8jPmbPg==", + "files": [ + "System.Xml.XDocument.4.0.10-beta-23019.nupkg", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec", + "lib/dotnet/System.Xml.XDocument.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net46/_._" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.Authentication.Cookies >= 1.0.0-beta5", + "Microsoft.AspNet.Authentication.OpenIdConnect >= 1.0.0-beta5", + "Microsoft.AspNet.DataProtection >= 1.0.0-beta5", + "Microsoft.AspNet.Server.IIS >= 1.0.0-beta5", + "Microsoft.AspNet.Server.WebListener >= 1.0.0-beta5", + "Microsoft.Framework.Logging.Console >= 1.0.0-beta5", + "Kestrel >= 1.0.0-beta5" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [] + } +} \ No newline at end of file diff --git a/samples/SocialSample/project.json b/samples/SocialSample/project.json index 024014140..120ea32c7 100644 --- a/samples/SocialSample/project.json +++ b/samples/SocialSample/project.json @@ -1,15 +1,15 @@ { "dependencies": { - "Microsoft.AspNet.Authentication.Cookies": "1.0.0-*", - "Microsoft.AspNet.Authentication.Facebook": "1.0.0-*", - "Microsoft.AspNet.Authentication.Google": "1.0.0-*", - "Microsoft.AspNet.Authentication.MicrosoftAccount": "1.0.0-*", - "Microsoft.AspNet.Authentication.Twitter": "1.0.0-*", - "Microsoft.AspNet.DataProtection": "1.0.0-*", - "Microsoft.AspNet.Server.IIS": "1.0.0-*", - "Microsoft.AspNet.Server.WebListener": "1.0.0-*", - "Microsoft.Framework.Logging.Console": "1.0.0-*", - "Kestrel": "1.0.0-*" + "Microsoft.AspNet.Authentication.Cookies": "1.0.0-beta5", + "Microsoft.AspNet.Authentication.Facebook": "1.0.0-beta5", + "Microsoft.AspNet.Authentication.Google": "1.0.0-beta5", + "Microsoft.AspNet.Authentication.MicrosoftAccount": "1.0.0-beta5", + "Microsoft.AspNet.Authentication.Twitter": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Server.IIS": "1.0.0-beta5", + "Microsoft.AspNet.Server.WebListener": "1.0.0-beta5", + "Microsoft.Framework.Logging.Console": "1.0.0-beta5", + "Kestrel": "1.0.0-beta5" }, "commands": { "web": "Microsoft.AspNet.Hosting server=Microsoft.AspNet.Server.WebListener server.urls=http://localhost:54540", diff --git a/samples/SocialSample/project.lock.json b/samples/SocialSample/project.lock.json new file mode 100644 index 000000000..b44e1a8f0 --- /dev/null +++ b/samples/SocialSample/project.lock.json @@ -0,0 +1,4166 @@ +{ + "locked": true, + "version": -9996, + "targets": { + "DNX,Version=v4.5.1": { + "Kestrel/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta5", + "Microsoft.AspNet.Server.Kestrel": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Kestrel.dll": {} + }, + "runtime": { + "lib/dnx451/Kestrel.dll": {} + } + }, + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Authentication.Cookies/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.Cookies.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.Cookies.dll": {} + } + }, + "Microsoft.AspNet.Authentication.Facebook/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication.OAuth": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.Facebook.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.Facebook.dll": {} + } + }, + "Microsoft.AspNet.Authentication.Google/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication.OAuth": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.Google.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.Google.dll": {} + } + }, + "Microsoft.AspNet.Authentication.OAuth/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "System.Net.Http.WebRequest", + "System.Net.Http", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.OAuth.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.OAuth.dll": {} + } + }, + "Microsoft.AspNet.Authentication.Twitter/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "System.Net.Http.WebRequest", + "System.Net.Http", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.Twitter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.Twitter.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "System.IO", + "System.Security", + "System.Xml", + "System.Xml.Linq", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta5", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Configuration": "1.0.0-beta5", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta5", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.Loader.IIS/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Hosting": "1.0.0-beta5", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Loader.IIS.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Loader.IIS.dll": {} + } + }, + "Microsoft.AspNet.Loader.IIS.Interop/1.0.0-beta5": {}, + "Microsoft.AspNet.Server.IIS/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Loader.IIS.Interop": "1.0.0-beta5", + "Microsoft.AspNet.Loader.IIS": "1.0.0-beta5" + } + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll": {} + } + }, + "Microsoft.AspNet.Server.WebListener/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Net.Http.Server": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Server.WebListener.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Server.WebListener.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "System.Collections.Concurrent", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Console/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Console.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Console.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Net.Http.Server/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Net.WebSockets": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Server.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Server.dll": {} + } + }, + "Microsoft.Net.WebSockets/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/net45/Microsoft.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Net.WebSockets.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Kestrel/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta5", + "Microsoft.AspNet.Server.Kestrel": "1.0.0-beta5", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Kestrel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Kestrel.dll": {} + } + }, + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Authentication.Cookies/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.Cookies.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.Cookies.dll": {} + } + }, + "Microsoft.AspNet.Authentication.Facebook/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication.OAuth": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.Facebook.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.Facebook.dll": {} + } + }, + "Microsoft.AspNet.Authentication.Google/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication.OAuth": "1.0.0-beta5" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.Google.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.Google.dll": {} + } + }, + "Microsoft.AspNet.Authentication.OAuth/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6", + "System.Net.Http.WinHttpHandler": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.OAuth.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.OAuth.dll": {} + } + }, + "Microsoft.AspNet.Authentication.Twitter/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "System.Net.Http.WinHttpHandler": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.Twitter.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.Twitter.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption.Aes": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta5", + "System.IO": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta5", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Configuration": "1.0.0-beta5", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta5", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6", + "System.Console": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta5" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.Loader.IIS/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Hosting": "1.0.0-beta5", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.Diagnostics.Process": "4.0.0-beta-23019", + "System.Net.NetworkInformation": "4.0.10-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Loader.IIS.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Loader.IIS.dll": {} + } + }, + "Microsoft.AspNet.Loader.IIS.Interop/1.0.0-beta5": {}, + "Microsoft.AspNet.Server.IIS/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Loader.IIS.Interop": "1.0.0-beta5", + "Microsoft.AspNet.Loader.IIS": "1.0.0-beta5" + } + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.dll": {} + } + }, + "Microsoft.AspNet.Server.WebListener/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Net.Http.Server": "1.0.0-beta5", + "System.Security.Claims": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Server.WebListener.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Server.WebListener.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Linq": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Ini.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Ini.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Console/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "System.Runtime": "4.0.20-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Console.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Console.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Contracts": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Net.Http.Server/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Net.WebSockets": "1.0.0-beta5", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Server.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Server.dll": {} + } + }, + "Microsoft.Net.WebSockets/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Contracts": "4.0.0-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Timer": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.WebSockets.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.dll": {} + } + }, + "System.Net.Http.WinHttpHandler/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Net.Http": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll": {} + } + }, + "System.Net.NetworkInformation/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.NetworkInformation.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.NetworkInformation.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + } + } + }, + "libraries": { + "Kestrel/1.0.0-beta5": { + "serviceable": true, + "sha512": "rFC89oqyntN0Z/ACBjYKaogIom3eW6YI8fFFw9ou2KWSSpDY1PCua4D/PDx4N2oYBhgFjBX4GyJmRZ/1L3n9Pw==", + "files": [ + "Kestrel.1.0.0-beta5.nupkg", + "Kestrel.1.0.0-beta5.nupkg.sha512", + "Kestrel.nuspec", + "lib/dnx451/Kestrel.dll", + "lib/dnx451/Kestrel.xml", + "lib/dnxcore50/Kestrel.dll", + "lib/dnxcore50/Kestrel.xml" + ] + }, + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "serviceable": true, + "sha512": "0aGfwSmbVHhNIQSp6dXqz6sLYD07U9Dgnw8rm/wnQDkLFfJ9iPQKBBTk/Oh/6wGwaSg9Ko7mzXTwILE42HZdZA==", + "files": [ + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.xml" + ] + }, + "Microsoft.AspNet.Authentication.Cookies/1.0.0-beta5": { + "serviceable": true, + "sha512": "slpGZOh7Gp8YFE9cdlzce67LFUAspBAp6WfjzhH270Ck/D8lzY83DiDLe2IQOhgH+MxlYi+r4bb7PvOhmoSM7g==", + "files": [ + "Microsoft.AspNet.Authentication.Cookies.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.Cookies.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.Cookies.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.Cookies.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.Cookies.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Cookies.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Cookies.xml" + ] + }, + "Microsoft.AspNet.Authentication.Facebook/1.0.0-beta5": { + "serviceable": true, + "sha512": "iBqWKsJPCS+ajVOrd4QQsuQ16Q6hNL5aCESEjyVlGLJXJbqMPkWraKxTWRJYNLm1PN8cKXkAhuB4v91hqne1Pg==", + "files": [ + "Microsoft.AspNet.Authentication.Facebook.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.Facebook.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.Facebook.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.Facebook.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.Facebook.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Facebook.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Facebook.xml" + ] + }, + "Microsoft.AspNet.Authentication.Google/1.0.0-beta5": { + "serviceable": true, + "sha512": "H0nhpZSn0U49CTURDESV9AB7t/WqssJiOOy4h61euZ+D0BvAsxzbm9fhvY3Nsm3LXesPeJy/y6SLtwh4g0u4mw==", + "files": [ + "Microsoft.AspNet.Authentication.Google.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.Google.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.Google.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.Google.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.Google.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Google.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Google.xml" + ] + }, + "Microsoft.AspNet.Authentication.OAuth/1.0.0-beta5": { + "serviceable": true, + "sha512": "BiqoBm029GJULff0YlvBv3A1aH7MdHhJaV6RkMKDxFtIN2r2KwK9eNsEKvpYgv7jwqbX/mhMzrcp5jKld3+Mlw==", + "files": [ + "Microsoft.AspNet.Authentication.OAuth.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.OAuth.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.OAuth.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.OAuth.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.OAuth.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.OAuth.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.OAuth.xml" + ] + }, + "Microsoft.AspNet.Authentication.Twitter/1.0.0-beta5": { + "serviceable": true, + "sha512": "kyXpMJ3kKloDCa5t9SHtM9bTuAwjF4UoNWtarfOVztyJdPOXEQue1XgbGrXgAnqSCsl2PQPELQDKWCuGX7GTUA==", + "files": [ + "Microsoft.AspNet.Authentication.Twitter.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.Twitter.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.Twitter.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.Twitter.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.Twitter.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Twitter.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Twitter.xml" + ] + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "serviceable": true, + "sha512": "nhCP9Q0TSA3F31w+SXoXh5X9zbGRpyGZrkBhid++k673Mxg1uzkDNa18Z0edF7Yiua2ZHZeA/GPkPUG0pzER/A==", + "files": [ + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Cryptography.Internal.nuspec", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.xml" + ] + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "serviceable": true, + "sha512": "f8oqJIyHUbmsIkgEq+A7QQOKr60s4GoewR2I+ItHGuHdwV6ICuNnu4yKSx7v0k/uh51T49ECcrrMApUepuV2mg==", + "files": [ + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.nuspec", + "lib/dnx451/Microsoft.AspNet.DataProtection.dll", + "lib/dnx451/Microsoft.AspNet.DataProtection.xml", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.xml", + "lib/net451/Microsoft.AspNet.DataProtection.dll", + "lib/net451/Microsoft.AspNet.DataProtection.xml" + ] + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ow8W+rMtA0rsiCtvHtUs+f5wrzMj0rtoSjl+vTgtGNQ0Ib+3tsGbKgA9+l5kzGKG6RUebnCK+vXKP/zCXDZOvw==", + "files": [ + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.Abstractions.nuspec", + "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.FeatureModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "M6ltNGrh4gHU+DiMbV074ZDwDQAIYx1SEOlltX7XzKbiDztYuTAtXiv8M/wkjZBeVdkszkE0NPOlMb/pbfww6g==", + "files": [ + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg", + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.FeatureModel.nuspec", + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll", + "lib/dnx451/Microsoft.AspNet.FeatureModel.xml", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.xml" + ] + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Az9I0ufHV2uLCmLtle7amzWUrOVkpbOma36HIH6NKuOSDdKtCdn83Ycd3SMXQb0dSA6LgDrJQJypbdAEKq45Eg==", + "files": [ + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Abstractions.nuspec", + "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.Physical/1.0.0-beta5": { + "serviceable": true, + "sha512": "kjyV734jm7qapKPlr5jmUnlPvjBWTeVY8w9l66MvczxgmUxMqkfO76o7ttFAnlXZg7Pt08Mf4GLx4vMLDJ2IIg==", + "files": [ + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta5.nupkg", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Physical.nuspec", + "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.Hosting/1.0.0-beta5": { + "serviceable": true, + "sha512": "sUkpWUOM16vhFoHiKNvhU01rV3b2vdCDrBj+orvoZrNozVV1qvEU+/tESW3xBG+nOFeWOB5P/vpYJsLIqvFJ3w==", + "files": [ + "Microsoft.AspNet.Hosting.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Hosting.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Hosting.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "SxPZMIOQrLgpxMT7W5ezkvpvVGocDREAkMMCsb8tfbeFrqsS6ONgjz3Q8HDPLq/sLkfPXvhi9Pu85yDTKW45lg==", + "files": [ + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Hosting.Abstractions.nuspec", + "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.Server.Abstractions/1.0.0-beta5": { + "sha512": "Z9zKH1kFlhGAZ6hO1s4IYeAN2fZeoIgUO7Rt4HWp4EBf4w2caBCrSWUlqEmVO26ZF+rfQpagvZNlBjL0B80V3A==", + "files": [ + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Hosting.Server.Abstractions.nuspec", + "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.Http/1.0.0-beta5": { + "serviceable": true, + "sha512": "Smn8m/xaNcNK4GKTZ5lfkHL4OqKCyxrt5m+1i3Dpe5wjUHR+Z9qGVjcuT/ZTJLfSZBelpP0yKZHFqcgUCMujFw==", + "files": [ + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "vNdZzaCID7R1k93o+N6LQ9d3Lx49bAoSAwslnzhcKXvbSvbHjZ1DRFDngrHIlY/ckcls0MH+j2qePUtuCTb8NQ==", + "files": [ + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec", + "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.Extensions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ai6Q0oPVzBQwpbeMcS585MZEjsYRAmjd+V6zSqutFb0u9IwxLV0ALr9dNT6Fg3/Wf+LSuBxeCfk5FZ5BjfuYqA==", + "files": [ + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec", + "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.Features/1.0.0-beta5": { + "serviceable": true, + "sha512": "jZi6dVWXrN3cABLWjm0Dgh7CIm0VppzDPpUUuOgIIfnr9E4QcG87Xq7s25JIFsXHkInmPH2DSUn5cp6PA9QrIw==", + "files": [ + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "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.Loader.IIS/1.0.0-beta5": { + "serviceable": true, + "sha512": "fHM/Za9DJ7crDNM41xy1exoROTMM/tidUnLPWMOU2clTUyAPZ+1aUKZScUHn3lw+t9YjkjcAdltr+EUm8Prb/w==", + "files": [ + "Microsoft.AspNet.Loader.IIS.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Loader.IIS.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Loader.IIS.nuspec", + "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.Interop/1.0.0-beta5": { + "serviceable": true, + "sha512": "m5R/fod2cvu4XucoLLPgDspTqOQ/1wsSJ6k2Oiwa9BrMRdp2flR1DseM3wPycf1MVYpA/t6mO4eGe8phRMVWFw==", + "files": [ + "Microsoft.AspNet.Loader.IIS.Interop.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Loader.IIS.Interop.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Loader.IIS.Interop.nuspec", + "InteropAssemblies/amd64/Microsoft.AspNet.Loader.IIS.Interop.dll", + "InteropAssemblies/x86/Microsoft.AspNet.Loader.IIS.Interop.dll", + "tools/AspNet.Loader.dll" + ] + }, + "Microsoft.AspNet.Server.IIS/1.0.0-beta5": { + "sha512": "8j+azyegksHKmGAPRoXGzGNQ4l57FWqczVS3yAOpMQnhde1xojWhrRe9xhCc9uU0aCp2DwlHtHSLxEfPd5DILw==", + "files": [ + "Microsoft.AspNet.Server.IIS.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Server.IIS.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Server.IIS.nuspec" + ] + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta5": { + "serviceable": true, + "sha512": "JDebwt15z3QyFAQEqEiYNDUu9mDymOTfFip5KC4+0ou5YHi6AGlcT5mxQD+YuIkcI9/0Ck9mFWOL0tKEgwjCSQ==", + "files": [ + "Microsoft.AspNet.Server.Kestrel.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Server.Kestrel.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Server.Kestrel.nuspec", + "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", + "native/darwin/universal/libuv.dylib", + "native/windows/amd64/libuv.dll", + "native/windows/x86/libuv.dll" + ] + }, + "Microsoft.AspNet.Server.WebListener/1.0.0-beta5": { + "serviceable": true, + "sha512": "5wJEiGFsjV1FudzrVQfJ/Pmbk7KS6718Iy9u0572MAg6JdCMpodzEvquCw9udXN2vzVy61SMps4KZfurBfAqFQ==", + "files": [ + "Microsoft.AspNet.Server.WebListener.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Server.WebListener.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Server.WebListener.nuspec", + "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.WebUtilities/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ieb9JeaI57V2HRWyFsQE+Ioo7jRE7gp8QgmHAgCuc58RfUUvKf3BdmjMMqw+0DfOQMf4VL9xWpj0yQ/bMA1VDA==", + "files": [ + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec", + "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.Framework.Caching.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "qPWM85eWgzWYtt8QMydu4c4uaAO65QXieuxiPZ/QGlIiLKx2sZv8gsc8yFbu4IfM7SPfrixypckD/gIVv67Wdw==", + "files": [ + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "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.Configuration/1.0.0-beta5": { + "serviceable": true, + "sha512": "UBw3f+fKi4/WHWIz3oTKF5UiLjmfvTiDgU9oCjYYApqKUMIji4VPbgsoqCzEzgXPHpLHDGkBal6Ux0Gcgu15Ig==", + "files": [ + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "dW5gHHlvvNnrFFSGtfOFhKClSi9Eb4WFPVdrrIbZYq2gIVw2Dde740p68H3+v9Fr511sk4yPCkGZ0wqXm1GObw==", + "files": [ + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "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.Binder/1.0.0-beta5": { + "serviceable": true, + "sha512": "xSWVoCC0gtn9h12O/M2Eie6eXehJ0P2ovvGkZU5ZWNh8ycTyisyKrkhAmtObcF0dDdPJO9HXUHbRT5ady9fb8Q==", + "files": [ + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml" + ] + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta5": { + "serviceable": true, + "sha512": "yVOjzNMYtfAaOE0cG5vTDkNvZ4lI6y30F5m9/9IjTkEtsYb1wa8wA4nppiquWKE3Hui0rCOGwQsGibh+s/krew==", + "files": [ + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.CommandLine.nuspec", + "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.EnvironmentVariables/1.0.0-beta5": { + "serviceable": true, + "sha512": "Tfm9RDrFJI2xhQy2glkmJnC8gMY9991gMyNGO/Ndt2SFlCXMZFJpVxlbrdJoL7K1hWfRqHkUnPWddxKtVFyIcA==", + "files": [ + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.EnvironmentVariables.nuspec", + "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.Ini/1.0.0-beta5": { + "serviceable": true, + "sha512": "wcqJbcZzrVxp9TJ5skkWn/amgebKiRElPIxP9cWe3ww7igJh9VuCjRyuRjZlMIl8z6Ezqhs0JpaCXz/Da/ieAQ==", + "files": [ + "Microsoft.Framework.Configuration.Ini.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Ini.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Ini.nuspec", + "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.DependencyInjection/1.0.0-beta5": { + "serviceable": true, + "sha512": "Jau27ULONglLGNu4FAwk7XjC3JXB4LsSWb8QsSlCotiJmOXHG7x+MEVz0nAgmFFkN2VGjFjK0Klnz0z9aDaBaw==", + "files": [ + "Microsoft.Framework.DependencyInjection.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "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.Logging/1.0.0-beta5": { + "serviceable": true, + "sha512": "YbfHijwmKd3PsNSJ6iYRARwSeCPwkZKY9s3qb+jNFqom2QnD9PDq9q0yIZZBWZMJ3EAsRIZa92FYuKnNKPfX9g==", + "files": [ + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "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.Console/1.0.0-beta5": { + "serviceable": true, + "sha512": "GeFovyJI1r0xSKWuLEDLiMbQiPLzXMoEVV4leOh4KSj0TfddtKM/16EmAz/u9q4kfmjeEu1tJpMXPXY8GcCKJg==", + "files": [ + "Microsoft.Framework.Logging.Console.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Console.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Console.nuspec", + "lib/dnx451/Microsoft.Framework.Logging.Console.dll", + "lib/dnx451/Microsoft.Framework.Logging.Console.xml", + "lib/dotnet/Microsoft.Framework.Logging.Console.dll", + "lib/dotnet/Microsoft.Framework.Logging.Console.xml", + "lib/net45/Microsoft.Framework.Logging.Console.dll", + "lib/net45/Microsoft.Framework.Logging.Console.xml" + ] + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "sha512": "hgETnks4ovIE4ySkFs6mQ+QN195kOIM+3IxgIqQFYtuF9tfNdw1/xkkwm9ip7vUifJlNC4O5d9o7CJ2ou46GyA==", + "files": [ + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "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", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "oK4jCjvQfz1NGBUf73euKqPDhC4aSJ3fkpOrozrOxVL85ToF+QyrD4yWclNCkf0/WnEUjXh6eWsfiEqI9zgODg==", + "files": [ + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml" + ] + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "serviceable": true, + "sha512": "y/2QI2ruRp1Wc3qgIDxQex7ExueFgwd9M5Jw/xJA+tIRuwLlmyDvegDpcBQwqWIanG3pd2Tm5sjcPSTqPLcTyQ==", + "files": [ + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.nuspec", + "lib/dnx451/Microsoft.Framework.WebEncoders.dll", + "lib/dnx451/Microsoft.Framework.WebEncoders.xml", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.xml", + "lib/net45/Microsoft.Framework.WebEncoders.dll", + "lib/net45/Microsoft.Framework.WebEncoders.xml" + ] + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "serviceable": true, + "sha512": "KIwD5E5o4osx5NnSrqppt3W8TDdel2S1mnsdXGZn1N61enxic4v5Al51RPvcbGAPoVPQhru3fFao7FdxmfWGnQ==", + "files": [ + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.Core.nuspec", + "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.Net.Http.Headers/1.0.0-beta5": { + "serviceable": true, + "sha512": "ewp5ueEWtXW+fnzn0QMhTV78gDOHoO/EYgzay6nYzAP92AgaP1r13lTkh1VDpbHaCxm9GWweUkojIWZ196iQUQ==", + "files": [ + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec", + "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.Server/1.0.0-beta5": { + "serviceable": true, + "sha512": "U7qFSAMeZRIs9tR//2rnXdHnb9OI/+v1WxU1Ql/HSMQ2o/+6DV3YMOxmoe4yDi9PwFav6CiclCD9Odp99s3oMQ==", + "files": [ + "Microsoft.Net.Http.Server.1.0.0-beta5.nupkg", + "Microsoft.Net.Http.Server.1.0.0-beta5.nupkg.sha512", + "Microsoft.Net.Http.Server.nuspec", + "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/net45/Microsoft.Net.Http.Server.dll", + "lib/net45/Microsoft.Net.Http.Server.xml" + ] + }, + "Microsoft.Net.WebSockets/1.0.0-beta5": { + "serviceable": true, + "sha512": "q2w6//6WLVteA99pdYZZuSdALASwIjKjH8mOIJEpqSt2lStDi3O+ppiEqLfrlr0Am2ACYFar8Sz5J87PM53Q9A==", + "files": [ + "Microsoft.Net.WebSockets.1.0.0-beta5.nupkg", + "Microsoft.Net.WebSockets.1.0.0-beta5.nupkg.sha512", + "Microsoft.Net.WebSockets.nuspec", + "lib/dnxcore50/Microsoft.Net.WebSockets.dll", + "lib/dnxcore50/Microsoft.Net.WebSockets.xml", + "lib/net45/Microsoft.Net.WebSockets.dll", + "lib/net45/Microsoft.Net.WebSockets.xml" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "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", + "tools/install.ps1" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec", + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec", + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "sha512": "ijnoxLU+SrSf1AItfZOwtnzyx7yEi+WJtKa3d2X93Xf5YHlRsL4RwMZ10M9gLE8E+Rpi3ZJM5wAXi6OFSprDtw==", + "files": [ + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.NonGeneric.nuspec", + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/net46/System.Collections.NonGeneric.dll" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec", + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec", + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec", + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll" + ] + }, + "System.Diagnostics.Contracts/4.0.0-beta-23019": { + "sha512": "wi3eWkfN0kZYCHgIaOqRDfJoyl8P8oQLcxZ47ElLDTtOEW0TfGl0wVeqllMg7nMMzR7C1ordTWycpV34yQ7g4Q==", + "files": [ + "System.Diagnostics.Contracts.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Contracts.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec", + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Contracts.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec", + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" + ] + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "sha512": "1vuXv89pElI0JeDhnXokMyy9VkLpkDFa+oU3selb5uhHfzVswH1etFBumZ0VKKvTOAnm8AS/3ZDXAVlRjywq3A==", + "files": [ + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Process.nuspec", + "lib/DNXCore50/System.Diagnostics.Process.dll", + "lib/net46/System.Diagnostics.Process.dll", + "ref/dotnet/System.Diagnostics.Process.dll", + "ref/net46/System.Diagnostics.Process.dll" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "sha512": "GB0ki4TLNwFKcT7ZesteTERlZmBytRitEbdD6O1zVwDaeqqY+FZb2/+CH2Q5U1rN7qY9YmM70PxtyPG1t31zkg==", + "files": [ + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Tools.nuspec", + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll" + ] + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "sha512": "MZxMo9Skg9oZrJYwGpRfeOfrTfHxmTPWhj8XIXdIryfArzwG1FjZgzOrkWWcON0PdV9OywZYGly09nUCs/JdhA==", + "files": [ + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.TraceSource.nuspec", + "lib/DNXCore50/System.Diagnostics.TraceSource.dll", + "lib/net46/System.Diagnostics.TraceSource.dll", + "ref/dotnet/System.Diagnostics.TraceSource.dll", + "ref/net46/System.Diagnostics.TraceSource.dll" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec", + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll" + ] + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "sha512": "yhXko8+R8fy0RERn6xQltYEhChBNyGEQgntwjHqNBc3x1M7wvg+Ye72Bh1QVQfnMIXZ0tG8XSrQs8hJe8KjYjg==", + "files": [ + "runtime.json", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg.sha512", + "System.Dynamic.Runtime.nuspec", + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec", + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec", + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll" + ] + }, + "System.Globalization.Extensions/4.0.0-beta-23019": { + "sha512": "k3KrctgKowl9Yv8eFbBIrnU/lL5+uUeaoCSJllwXA1XbQaGCLKVIYsMewgwV66UzkDfMU/65d6XhIcGucx9IAg==", + "files": [ + "System.Globalization.Extensions.4.0.0-beta-23019.nupkg", + "System.Globalization.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Extensions.nuspec", + "lib/dotnet/System.Globalization.Extensions.dll", + "lib/net46/System.Globalization.Extensions.dll", + "ref/dotnet/System.Globalization.Extensions.dll", + "ref/net46/System.Globalization.Extensions.dll" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec", + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec", + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec", + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec", + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "sha512": "+xsD0H46/EB88848d9cHel2WVbUWlM/Y/k+tuY5lp2jXSwV8zMJ6F3TjMqeUZwWtUUavw+AN7D0a4ZoGVs/Rcw==", + "files": [ + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec", + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/net46/System.IO.FileSystem.Watcher.dll" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec", + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "sha512": "YjnsUzXsXx8BdqaXQ2U/hrz4CWdlAfcoYccqO3BSKCpPZPFEbKizEiHR9KJGcqf9gQ4lzRkhlM3xiMIjX27mUQ==", + "files": [ + "runtime.json", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg.sha512", + "System.Linq.Expressions.nuspec", + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll" + ] + }, + "System.Net.Http/4.0.0-beta-23019": { + "sha512": "8mt4X1eIjTMrKVINJuzuFYf7C4GrYFC+tlvc2zH5HtxKPpbFZamMUdJ19ORxZ9ds053aqQASdiha7eH86PN+eg==", + "files": [ + "System.Net.Http.4.0.0-beta-23019.nupkg", + "System.Net.Http.4.0.0-beta-23019.nupkg.sha512", + "System.Net.Http.nuspec", + "lib/DNXCore50/System.Net.Http.dll", + "lib/net45/_._", + "lib/netcore50/System.Net.Http.dll", + "lib/win8/_._", + "ref/dotnet/System.Net.Http.dll", + "ref/net45/_._", + "ref/netcore50/System.Net.Http.dll", + "ref/win8/_._" + ] + }, + "System.Net.Http.WinHttpHandler/4.0.0-beta-23019": { + "sha512": "C6DBRXVzX3+bkWVlUdMVqHMgIiKbZJU6E08R/rSVENmVTGHxQ9NgSwA8yBCreOeV4hcdHIa187kjFA0X6BYSRA==", + "files": [ + "System.Net.Http.WinHttpHandler.4.0.0-beta-23019.nupkg", + "System.Net.Http.WinHttpHandler.4.0.0-beta-23019.nupkg.sha512", + "System.Net.Http.WinHttpHandler.nuspec", + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll" + ] + }, + "System.Net.NetworkInformation/4.0.10-beta-23019": { + "sha512": "+sHpVzEZInqCuvMETuD45ZkH0OLkO4SwdJa9NsZRKbv8gWTn4DN1zPXP69bc45Xs1vO7dG/Wu/3tbOM+0g6XVQ==", + "files": [ + "System.Net.NetworkInformation.4.0.10-beta-23019.nupkg", + "System.Net.NetworkInformation.4.0.10-beta-23019.nupkg.sha512", + "System.Net.NetworkInformation.nuspec", + "lib/DNXCore50/System.Net.NetworkInformation.dll", + "lib/net46/_._", + "ref/dotnet/System.Net.NetworkInformation.dll", + "ref/net46/_._" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec", + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._" + ] + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "sha512": "9waIolEiBpjdMWLtTqQxYjpPplVpTlZEzof6C/6/vitUP7DuJrI7wJltEO5ARMPBqyT2Ohke0h1ZpLiRkZQkCw==", + "files": [ + "System.Net.WebSockets.4.0.0-beta-23019.nupkg", + "System.Net.WebSockets.4.0.0-beta-23019.nupkg.sha512", + "System.Net.WebSockets.nuspec", + "lib/DNXCore50/System.Net.WebSockets.dll", + "lib/net46/System.Net.WebSockets.dll", + "ref/dotnet/System.Net.WebSockets.dll", + "ref/net46/System.Net.WebSockets.dll" + ] + }, + "System.ObjectModel/4.0.10-beta-23019": { + "sha512": "sJ+7kgWoTs4d8eNlhJB/p1Uq2iWHYVxO7ALNpB3sTwh3LORqwwPZe5FbSweccA3seM+zLSYa2AqBGp69JOXbcA==", + "files": [ + "System.ObjectModel.4.0.10-beta-23019.nupkg", + "System.ObjectModel.4.0.10-beta-23019.nupkg.sha512", + "System.ObjectModel.nuspec", + "lib/dotnet/System.ObjectModel.dll", + "lib/net46/_._", + "ref/dotnet/System.ObjectModel.dll", + "ref/net46/_._" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec", + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec", + "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.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec", + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "sha512": "FAp9TewUfCxaydPyY5Glv2/3KdxD5vpZ4qgx26OWV6xtytGinnXpHsxownQKKe7WkeqlRjy7s7cRgjTKZ50AQA==", + "files": [ + "System.Reflection.Emit.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.nuspec", + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "sha512": "5OsJjj6G9WY8aV3EWfI03dJoqH0RvILtP2GJ16JQf90pV0kVmgGsFQSqh+lcnnexh4CEje7DDxF748o/8KamWA==", + "files": [ + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec", + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec", + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec", + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "sha512": "5/WcPvsdnw0d8rwwsCgQKoo9oXFQA1gMHtyNcYjelDjaaYC/dYoU7Eo0JdP+0PMgy9FnBOHVjRHOTcJ2HIjefA==", + "files": [ + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec", + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec", + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec", + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec", + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec", + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec", + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec", + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._" + ] + }, + "System.Security.Claims/4.0.0-beta-23019": { + "sha512": "kKseHxGh5pWjM43MZWtub/ZyBWUV3RHNSJuUtTzapeQD2qND6pGGNekMXcxmEZOxrKwFEBAeTlcgmWo/2e6/SQ==", + "files": [ + "System.Security.Claims.4.0.0-beta-23019.nupkg", + "System.Security.Claims.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Claims.nuspec", + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll" + ] + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23019": { + "sha512": "X3lDbzONEsSurqDDApxmA/ybdViY5F1XAWoGV+B8ZlDKOsSiEbBwsPt8MShROlCkPZezUyRpLzg2b8Jd+anIRQ==", + "files": [ + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.Aes.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll", + "lib/net46/System.Security.Cryptography.Encryption.Aes.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll", + "ref/net46/System.Security.Cryptography.Encryption.Aes.dll" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec", + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll" + ] + }, + "System.Security.Principal/4.0.0-beta-23019": { + "sha512": "2zkK0eJOfso/Jo+77NVXDoJRggzL0jM0ayeXz+vD8pK9pIRnhpWJVbaGmT7MPBWW9KbPwtbJyXejpUS2rBflUQ==", + "files": [ + "System.Security.Principal.4.0.0-beta-23019.nupkg", + "System.Security.Principal.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.nuspec", + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "sha512": "FYvKKTbncuJCMnc1TmccsJlGSjIQrUJPymt2R3o5uSV1plyGD9V3san/rpq2IO4kDbHjGrQjEtZlbehwUucB5Q==", + "files": [ + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.Windows.nuspec", + "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.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec", + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec", + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec", + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "sha512": "7gCVMRey2Nji6WDKleSigGBJuy4gMKXGeVqauROuFoTygHNtFYaUTeToGMy7Obsi+tzgnyEYfd+9uY3Ifc/SjA==", + "files": [ + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.RegularExpressions.nuspec", + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/net46/_._" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec", + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec", + "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.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec", + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll" + ] + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "sha512": "ECx+zZlXCfhkpZ0PUVrzp5UB6zRdzi94LsQhm7DtUS/uB17I3sYh0RsnMu/5jTULByQ1Ju4K/JTbM28InXO/PQ==", + "files": [ + "System.Threading.Thread.4.0.0-beta-23019.nupkg", + "System.Threading.Thread.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Thread.nuspec", + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.dll", + "ref/net46/System.Threading.Thread.dll" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec", + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll" + ] + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "sha512": "nGA/Vt5zC8zGQ8r9mSdRTWzVMXh1YgJH9XH8x5OQZVLh0hn6CSC32RrmUrmKLpxKd64B9mbKoubeLUqXlf/m8g==", + "files": [ + "System.Threading.Timer.4.0.0-beta-23019.nupkg", + "System.Threading.Timer.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Timer.nuspec", + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "ref/dotnet/System.Threading.Timer.dll", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/win81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec", + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._" + ] + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "sha512": "pyyzY5FFoZziGVDFyO5VLM094cX7jNN+01EsSJEFreje5uzSz6aKwIPgTe/l2CFiXYFoUNr0O6D3GEc8jPmbPg==", + "files": [ + "System.Xml.XDocument.4.0.10-beta-23019.nupkg", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec", + "lib/dotnet/System.Xml.XDocument.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net46/_._" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.Authentication.Cookies >= 1.0.0-beta5", + "Microsoft.AspNet.Authentication.Facebook >= 1.0.0-beta5", + "Microsoft.AspNet.Authentication.Google >= 1.0.0-beta5", + "Microsoft.AspNet.Authentication.MicrosoftAccount >= 1.0.0-beta5", + "Microsoft.AspNet.Authentication.Twitter >= 1.0.0-beta5", + "Microsoft.AspNet.DataProtection >= 1.0.0-beta5", + "Microsoft.AspNet.Server.IIS >= 1.0.0-beta5", + "Microsoft.AspNet.Server.WebListener >= 1.0.0-beta5", + "Microsoft.Framework.Logging.Console >= 1.0.0-beta5", + "Kestrel >= 1.0.0-beta5" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [] + } +} \ No newline at end of file diff --git a/src/Microsoft.AspNet.Authentication.Cookies/project.json b/src/Microsoft.AspNet.Authentication.Cookies/project.json index 28127904d..45acc4769 100644 --- a/src/Microsoft.AspNet.Authentication.Cookies/project.json +++ b/src/Microsoft.AspNet.Authentication.Cookies/project.json @@ -1,14 +1,14 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "description": "ASP.NET middleware that enables an application to use cookie based authentication, similar to ASP.NET's forms authentication.", "dependencies": { - "Microsoft.AspNet.Authentication": "1.0.0-*", - "Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-*" }, - "Microsoft.Framework.WebEncoders": "1.0.0-*", + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-beta5" }, + "Microsoft.Framework.WebEncoders": "1.0.0-beta5", "Newtonsoft.Json": "6.0.6" }, "frameworks": { "dnx451": { }, "dnxcore50": { } } -} \ No newline at end of file +} diff --git a/src/Microsoft.AspNet.Authentication.Cookies/project.lock.json b/src/Microsoft.AspNet.Authentication.Cookies/project.lock.json new file mode 100644 index 000000000..a3342d490 --- /dev/null +++ b/src/Microsoft.AspNet.Authentication.Cookies/project.lock.json @@ -0,0 +1,2710 @@ +{ + "locked": true, + "version": -9996, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Authentication.Cookies/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.Cookies.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.Cookies.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "System.IO", + "System.Security", + "System.Xml", + "System.Xml.Linq", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Authentication.Cookies/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.Cookies.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.Cookies.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption.Aes": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Linq": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Contracts": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "serviceable": true, + "sha512": "0aGfwSmbVHhNIQSp6dXqz6sLYD07U9Dgnw8rm/wnQDkLFfJ9iPQKBBTk/Oh/6wGwaSg9Ko7mzXTwILE42HZdZA==", + "files": [ + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.xml" + ] + }, + "Microsoft.AspNet.Authentication.Cookies/1.0.0-beta5": { + "serviceable": true, + "sha512": "slpGZOh7Gp8YFE9cdlzce67LFUAspBAp6WfjzhH270Ck/D8lzY83DiDLe2IQOhgH+MxlYi+r4bb7PvOhmoSM7g==", + "files": [ + "Microsoft.AspNet.Authentication.Cookies.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.Cookies.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.Cookies.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.Cookies.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.Cookies.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Cookies.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Cookies.xml" + ] + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "serviceable": true, + "sha512": "nhCP9Q0TSA3F31w+SXoXh5X9zbGRpyGZrkBhid++k673Mxg1uzkDNa18Z0edF7Yiua2ZHZeA/GPkPUG0pzER/A==", + "files": [ + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Cryptography.Internal.nuspec", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.xml" + ] + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "serviceable": true, + "sha512": "f8oqJIyHUbmsIkgEq+A7QQOKr60s4GoewR2I+ItHGuHdwV6ICuNnu4yKSx7v0k/uh51T49ECcrrMApUepuV2mg==", + "files": [ + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.nuspec", + "lib/dnx451/Microsoft.AspNet.DataProtection.dll", + "lib/dnx451/Microsoft.AspNet.DataProtection.xml", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.xml", + "lib/net451/Microsoft.AspNet.DataProtection.dll", + "lib/net451/Microsoft.AspNet.DataProtection.xml" + ] + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ow8W+rMtA0rsiCtvHtUs+f5wrzMj0rtoSjl+vTgtGNQ0Ib+3tsGbKgA9+l5kzGKG6RUebnCK+vXKP/zCXDZOvw==", + "files": [ + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.Abstractions.nuspec", + "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.FeatureModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "M6ltNGrh4gHU+DiMbV074ZDwDQAIYx1SEOlltX7XzKbiDztYuTAtXiv8M/wkjZBeVdkszkE0NPOlMb/pbfww6g==", + "files": [ + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg", + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.FeatureModel.nuspec", + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll", + "lib/dnx451/Microsoft.AspNet.FeatureModel.xml", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.xml" + ] + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "serviceable": true, + "sha512": "Smn8m/xaNcNK4GKTZ5lfkHL4OqKCyxrt5m+1i3Dpe5wjUHR+Z9qGVjcuT/ZTJLfSZBelpP0yKZHFqcgUCMujFw==", + "files": [ + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "vNdZzaCID7R1k93o+N6LQ9d3Lx49bAoSAwslnzhcKXvbSvbHjZ1DRFDngrHIlY/ckcls0MH+j2qePUtuCTb8NQ==", + "files": [ + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec", + "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.Extensions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ai6Q0oPVzBQwpbeMcS585MZEjsYRAmjd+V6zSqutFb0u9IwxLV0ALr9dNT6Fg3/Wf+LSuBxeCfk5FZ5BjfuYqA==", + "files": [ + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec", + "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.Features/1.0.0-beta5": { + "serviceable": true, + "sha512": "jZi6dVWXrN3cABLWjm0Dgh7CIm0VppzDPpUUuOgIIfnr9E4QcG87Xq7s25JIFsXHkInmPH2DSUn5cp6PA9QrIw==", + "files": [ + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "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.WebUtilities/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ieb9JeaI57V2HRWyFsQE+Ioo7jRE7gp8QgmHAgCuc58RfUUvKf3BdmjMMqw+0DfOQMf4VL9xWpj0yQ/bMA1VDA==", + "files": [ + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec", + "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.Framework.Configuration/1.0.0-beta5": { + "serviceable": true, + "sha512": "UBw3f+fKi4/WHWIz3oTKF5UiLjmfvTiDgU9oCjYYApqKUMIji4VPbgsoqCzEzgXPHpLHDGkBal6Ux0Gcgu15Ig==", + "files": [ + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "dW5gHHlvvNnrFFSGtfOFhKClSi9Eb4WFPVdrrIbZYq2gIVw2Dde740p68H3+v9Fr511sk4yPCkGZ0wqXm1GObw==", + "files": [ + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "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.Binder/1.0.0-beta5": { + "serviceable": true, + "sha512": "xSWVoCC0gtn9h12O/M2Eie6eXehJ0P2ovvGkZU5ZWNh8ycTyisyKrkhAmtObcF0dDdPJO9HXUHbRT5ady9fb8Q==", + "files": [ + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "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.Logging.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "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.NotNullAttribute.Sources/1.0.0-beta5": { + "sha512": "hgETnks4ovIE4ySkFs6mQ+QN195kOIM+3IxgIqQFYtuF9tfNdw1/xkkwm9ip7vUifJlNC4O5d9o7CJ2ou46GyA==", + "files": [ + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "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", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "oK4jCjvQfz1NGBUf73euKqPDhC4aSJ3fkpOrozrOxVL85ToF+QyrD4yWclNCkf0/WnEUjXh6eWsfiEqI9zgODg==", + "files": [ + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml" + ] + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "serviceable": true, + "sha512": "y/2QI2ruRp1Wc3qgIDxQex7ExueFgwd9M5Jw/xJA+tIRuwLlmyDvegDpcBQwqWIanG3pd2Tm5sjcPSTqPLcTyQ==", + "files": [ + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.nuspec", + "lib/dnx451/Microsoft.Framework.WebEncoders.dll", + "lib/dnx451/Microsoft.Framework.WebEncoders.xml", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.xml", + "lib/net45/Microsoft.Framework.WebEncoders.dll", + "lib/net45/Microsoft.Framework.WebEncoders.xml" + ] + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "serviceable": true, + "sha512": "KIwD5E5o4osx5NnSrqppt3W8TDdel2S1mnsdXGZn1N61enxic4v5Al51RPvcbGAPoVPQhru3fFao7FdxmfWGnQ==", + "files": [ + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.Core.nuspec", + "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.Net.Http.Headers/1.0.0-beta5": { + "serviceable": true, + "sha512": "ewp5ueEWtXW+fnzn0QMhTV78gDOHoO/EYgzay6nYzAP92AgaP1r13lTkh1VDpbHaCxm9GWweUkojIWZ196iQUQ==", + "files": [ + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec", + "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.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "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", + "tools/install.ps1" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec", + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec", + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "sha512": "ijnoxLU+SrSf1AItfZOwtnzyx7yEi+WJtKa3d2X93Xf5YHlRsL4RwMZ10M9gLE8E+Rpi3ZJM5wAXi6OFSprDtw==", + "files": [ + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.NonGeneric.nuspec", + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/net46/System.Collections.NonGeneric.dll" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec", + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec", + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._" + ] + }, + "System.Diagnostics.Contracts/4.0.0-beta-23019": { + "sha512": "wi3eWkfN0kZYCHgIaOqRDfJoyl8P8oQLcxZ47ElLDTtOEW0TfGl0wVeqllMg7nMMzR7C1ordTWycpV34yQ7g4Q==", + "files": [ + "System.Diagnostics.Contracts.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Contracts.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec", + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Contracts.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec", + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "sha512": "GB0ki4TLNwFKcT7ZesteTERlZmBytRitEbdD6O1zVwDaeqqY+FZb2/+CH2Q5U1rN7qY9YmM70PxtyPG1t31zkg==", + "files": [ + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Tools.nuspec", + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec", + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec", + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec", + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll" + ] + }, + "System.Globalization.Extensions/4.0.0-beta-23019": { + "sha512": "k3KrctgKowl9Yv8eFbBIrnU/lL5+uUeaoCSJllwXA1XbQaGCLKVIYsMewgwV66UzkDfMU/65d6XhIcGucx9IAg==", + "files": [ + "System.Globalization.Extensions.4.0.0-beta-23019.nupkg", + "System.Globalization.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Extensions.nuspec", + "lib/dotnet/System.Globalization.Extensions.dll", + "lib/net46/System.Globalization.Extensions.dll", + "ref/dotnet/System.Globalization.Extensions.dll", + "ref/net46/System.Globalization.Extensions.dll" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec", + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec", + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec", + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec", + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "sha512": "YjnsUzXsXx8BdqaXQ2U/hrz4CWdlAfcoYccqO3BSKCpPZPFEbKizEiHR9KJGcqf9gQ4lzRkhlM3xiMIjX27mUQ==", + "files": [ + "runtime.json", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg.sha512", + "System.Linq.Expressions.nuspec", + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec", + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._" + ] + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "sha512": "9waIolEiBpjdMWLtTqQxYjpPplVpTlZEzof6C/6/vitUP7DuJrI7wJltEO5ARMPBqyT2Ohke0h1ZpLiRkZQkCw==", + "files": [ + "System.Net.WebSockets.4.0.0-beta-23019.nupkg", + "System.Net.WebSockets.4.0.0-beta-23019.nupkg.sha512", + "System.Net.WebSockets.nuspec", + "lib/DNXCore50/System.Net.WebSockets.dll", + "lib/net46/System.Net.WebSockets.dll", + "ref/dotnet/System.Net.WebSockets.dll", + "ref/net46/System.Net.WebSockets.dll" + ] + }, + "System.ObjectModel/4.0.0-beta-23019": { + "sha512": "shmwP3YgLhSx8+njPPb82OULH+SteCr8fZ6XaQK8dfuB3UCqqUfITYPW1zknMotwsnBZpVPdXFWmwvTE0XTCGA==", + "files": [ + "License.rtf", + "System.ObjectModel.4.0.0-beta-23019.nupkg", + "System.ObjectModel.4.0.0-beta-23019.nupkg.sha512", + "System.ObjectModel.nuspec", + "lib/net45/_._", + "lib/win8/_._", + "ref/dotnet/System.ObjectModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/win8/_._" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec", + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec", + "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.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec", + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "sha512": "FAp9TewUfCxaydPyY5Glv2/3KdxD5vpZ4qgx26OWV6xtytGinnXpHsxownQKKe7WkeqlRjy7s7cRgjTKZ50AQA==", + "files": [ + "System.Reflection.Emit.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.nuspec", + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "sha512": "5OsJjj6G9WY8aV3EWfI03dJoqH0RvILtP2GJ16JQf90pV0kVmgGsFQSqh+lcnnexh4CEje7DDxF748o/8KamWA==", + "files": [ + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec", + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec", + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec", + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "sha512": "5/WcPvsdnw0d8rwwsCgQKoo9oXFQA1gMHtyNcYjelDjaaYC/dYoU7Eo0JdP+0PMgy9FnBOHVjRHOTcJ2HIjefA==", + "files": [ + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec", + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec", + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec", + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec", + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec", + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec", + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec", + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._" + ] + }, + "System.Security.Claims/4.0.0-beta-23019": { + "sha512": "kKseHxGh5pWjM43MZWtub/ZyBWUV3RHNSJuUtTzapeQD2qND6pGGNekMXcxmEZOxrKwFEBAeTlcgmWo/2e6/SQ==", + "files": [ + "System.Security.Claims.4.0.0-beta-23019.nupkg", + "System.Security.Claims.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Claims.nuspec", + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll" + ] + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23019": { + "sha512": "X3lDbzONEsSurqDDApxmA/ybdViY5F1XAWoGV+B8ZlDKOsSiEbBwsPt8MShROlCkPZezUyRpLzg2b8Jd+anIRQ==", + "files": [ + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.Aes.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll", + "lib/net46/System.Security.Cryptography.Encryption.Aes.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll", + "ref/net46/System.Security.Cryptography.Encryption.Aes.dll" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec", + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll" + ] + }, + "System.Security.Principal/4.0.0-beta-23019": { + "sha512": "2zkK0eJOfso/Jo+77NVXDoJRggzL0jM0ayeXz+vD8pK9pIRnhpWJVbaGmT7MPBWW9KbPwtbJyXejpUS2rBflUQ==", + "files": [ + "System.Security.Principal.4.0.0-beta-23019.nupkg", + "System.Security.Principal.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.nuspec", + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "sha512": "FYvKKTbncuJCMnc1TmccsJlGSjIQrUJPymt2R3o5uSV1plyGD9V3san/rpq2IO4kDbHjGrQjEtZlbehwUucB5Q==", + "files": [ + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.Windows.nuspec", + "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.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec", + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec", + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec", + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "sha512": "7gCVMRey2Nji6WDKleSigGBJuy4gMKXGeVqauROuFoTygHNtFYaUTeToGMy7Obsi+tzgnyEYfd+9uY3Ifc/SjA==", + "files": [ + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.RegularExpressions.nuspec", + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/net46/_._" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec", + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec", + "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.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec", + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec", + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec", + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._" + ] + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "sha512": "pyyzY5FFoZziGVDFyO5VLM094cX7jNN+01EsSJEFreje5uzSz6aKwIPgTe/l2CFiXYFoUNr0O6D3GEc8jPmbPg==", + "files": [ + "System.Xml.XDocument.4.0.10-beta-23019.nupkg", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec", + "lib/dotnet/System.Xml.XDocument.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net46/_._" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.Authentication >= 1.0.0-beta5", + "Microsoft.Framework.NotNullAttribute.Sources >= 1.0.0-beta5", + "Microsoft.Framework.WebEncoders >= 1.0.0-beta5", + "Newtonsoft.Json >= 6.0.6" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [] + } +} \ No newline at end of file diff --git a/src/Microsoft.AspNet.Authentication.Facebook/project.json b/src/Microsoft.AspNet.Authentication.Facebook/project.json index 332385ca7..cec055f2d 100644 --- a/src/Microsoft.AspNet.Authentication.Facebook/project.json +++ b/src/Microsoft.AspNet.Authentication.Facebook/project.json @@ -1,16 +1,16 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "description": "ASP.NET 5 middleware that enables an application to support Facebook's OAuth 2.0 authentication workflow.", "dependencies": { - "Microsoft.AspNet.Authentication.OAuth": "1.0.0-*", - "Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-*" }, + "Microsoft.AspNet.Authentication.OAuth": "1.0.0-beta5", + "Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-beta5" }, "Newtonsoft.Json": "6.0.6" }, "frameworks": { "dnx451": { }, "dnxcore50": { "dependencies": { - "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-*" + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019" } } } diff --git a/src/Microsoft.AspNet.Authentication.Facebook/project.lock.json b/src/Microsoft.AspNet.Authentication.Facebook/project.lock.json new file mode 100644 index 000000000..199a9cbe8 --- /dev/null +++ b/src/Microsoft.AspNet.Authentication.Facebook/project.lock.json @@ -0,0 +1,2869 @@ +{ + "locked": true, + "version": -9996, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Authentication.Facebook/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication.OAuth": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.Facebook.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.Facebook.dll": {} + } + }, + "Microsoft.AspNet.Authentication.OAuth/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "System.Net.Http.WebRequest", + "System.Net.Http", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.OAuth.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.OAuth.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "System.IO", + "System.Security", + "System.Xml", + "System.Xml.Linq", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Authentication.Facebook/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication.OAuth": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.Facebook.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.Facebook.dll": {} + } + }, + "Microsoft.AspNet.Authentication.OAuth/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6", + "System.Net.Http.WinHttpHandler": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.OAuth.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.OAuth.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption.Aes": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Linq": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Contracts": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.dll": {} + } + }, + "System.Net.Http.WinHttpHandler/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Net.Http": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "serviceable": true, + "sha512": "0aGfwSmbVHhNIQSp6dXqz6sLYD07U9Dgnw8rm/wnQDkLFfJ9iPQKBBTk/Oh/6wGwaSg9Ko7mzXTwILE42HZdZA==", + "files": [ + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.xml" + ] + }, + "Microsoft.AspNet.Authentication.Facebook/1.0.0-beta5": { + "serviceable": true, + "sha512": "iBqWKsJPCS+ajVOrd4QQsuQ16Q6hNL5aCESEjyVlGLJXJbqMPkWraKxTWRJYNLm1PN8cKXkAhuB4v91hqne1Pg==", + "files": [ + "Microsoft.AspNet.Authentication.Facebook.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.Facebook.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.Facebook.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.Facebook.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.Facebook.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Facebook.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Facebook.xml" + ] + }, + "Microsoft.AspNet.Authentication.OAuth/1.0.0-beta5": { + "serviceable": true, + "sha512": "BiqoBm029GJULff0YlvBv3A1aH7MdHhJaV6RkMKDxFtIN2r2KwK9eNsEKvpYgv7jwqbX/mhMzrcp5jKld3+Mlw==", + "files": [ + "Microsoft.AspNet.Authentication.OAuth.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.OAuth.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.OAuth.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.OAuth.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.OAuth.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.OAuth.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.OAuth.xml" + ] + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "serviceable": true, + "sha512": "nhCP9Q0TSA3F31w+SXoXh5X9zbGRpyGZrkBhid++k673Mxg1uzkDNa18Z0edF7Yiua2ZHZeA/GPkPUG0pzER/A==", + "files": [ + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Cryptography.Internal.nuspec", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.xml" + ] + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "serviceable": true, + "sha512": "f8oqJIyHUbmsIkgEq+A7QQOKr60s4GoewR2I+ItHGuHdwV6ICuNnu4yKSx7v0k/uh51T49ECcrrMApUepuV2mg==", + "files": [ + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.nuspec", + "lib/dnx451/Microsoft.AspNet.DataProtection.dll", + "lib/dnx451/Microsoft.AspNet.DataProtection.xml", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.xml", + "lib/net451/Microsoft.AspNet.DataProtection.dll", + "lib/net451/Microsoft.AspNet.DataProtection.xml" + ] + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ow8W+rMtA0rsiCtvHtUs+f5wrzMj0rtoSjl+vTgtGNQ0Ib+3tsGbKgA9+l5kzGKG6RUebnCK+vXKP/zCXDZOvw==", + "files": [ + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.Abstractions.nuspec", + "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.FeatureModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "M6ltNGrh4gHU+DiMbV074ZDwDQAIYx1SEOlltX7XzKbiDztYuTAtXiv8M/wkjZBeVdkszkE0NPOlMb/pbfww6g==", + "files": [ + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg", + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.FeatureModel.nuspec", + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll", + "lib/dnx451/Microsoft.AspNet.FeatureModel.xml", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.xml" + ] + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "serviceable": true, + "sha512": "Smn8m/xaNcNK4GKTZ5lfkHL4OqKCyxrt5m+1i3Dpe5wjUHR+Z9qGVjcuT/ZTJLfSZBelpP0yKZHFqcgUCMujFw==", + "files": [ + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "vNdZzaCID7R1k93o+N6LQ9d3Lx49bAoSAwslnzhcKXvbSvbHjZ1DRFDngrHIlY/ckcls0MH+j2qePUtuCTb8NQ==", + "files": [ + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec", + "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.Extensions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ai6Q0oPVzBQwpbeMcS585MZEjsYRAmjd+V6zSqutFb0u9IwxLV0ALr9dNT6Fg3/Wf+LSuBxeCfk5FZ5BjfuYqA==", + "files": [ + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec", + "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.Features/1.0.0-beta5": { + "serviceable": true, + "sha512": "jZi6dVWXrN3cABLWjm0Dgh7CIm0VppzDPpUUuOgIIfnr9E4QcG87Xq7s25JIFsXHkInmPH2DSUn5cp6PA9QrIw==", + "files": [ + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "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.WebUtilities/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ieb9JeaI57V2HRWyFsQE+Ioo7jRE7gp8QgmHAgCuc58RfUUvKf3BdmjMMqw+0DfOQMf4VL9xWpj0yQ/bMA1VDA==", + "files": [ + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec", + "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.Framework.Configuration/1.0.0-beta5": { + "serviceable": true, + "sha512": "UBw3f+fKi4/WHWIz3oTKF5UiLjmfvTiDgU9oCjYYApqKUMIji4VPbgsoqCzEzgXPHpLHDGkBal6Ux0Gcgu15Ig==", + "files": [ + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "dW5gHHlvvNnrFFSGtfOFhKClSi9Eb4WFPVdrrIbZYq2gIVw2Dde740p68H3+v9Fr511sk4yPCkGZ0wqXm1GObw==", + "files": [ + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "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.Binder/1.0.0-beta5": { + "serviceable": true, + "sha512": "xSWVoCC0gtn9h12O/M2Eie6eXehJ0P2ovvGkZU5ZWNh8ycTyisyKrkhAmtObcF0dDdPJO9HXUHbRT5ady9fb8Q==", + "files": [ + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "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.Logging.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "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.NotNullAttribute.Sources/1.0.0-beta5": { + "sha512": "hgETnks4ovIE4ySkFs6mQ+QN195kOIM+3IxgIqQFYtuF9tfNdw1/xkkwm9ip7vUifJlNC4O5d9o7CJ2ou46GyA==", + "files": [ + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "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", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "oK4jCjvQfz1NGBUf73euKqPDhC4aSJ3fkpOrozrOxVL85ToF+QyrD4yWclNCkf0/WnEUjXh6eWsfiEqI9zgODg==", + "files": [ + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml" + ] + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "serviceable": true, + "sha512": "y/2QI2ruRp1Wc3qgIDxQex7ExueFgwd9M5Jw/xJA+tIRuwLlmyDvegDpcBQwqWIanG3pd2Tm5sjcPSTqPLcTyQ==", + "files": [ + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.nuspec", + "lib/dnx451/Microsoft.Framework.WebEncoders.dll", + "lib/dnx451/Microsoft.Framework.WebEncoders.xml", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.xml", + "lib/net45/Microsoft.Framework.WebEncoders.dll", + "lib/net45/Microsoft.Framework.WebEncoders.xml" + ] + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "serviceable": true, + "sha512": "KIwD5E5o4osx5NnSrqppt3W8TDdel2S1mnsdXGZn1N61enxic4v5Al51RPvcbGAPoVPQhru3fFao7FdxmfWGnQ==", + "files": [ + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.Core.nuspec", + "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.Net.Http.Headers/1.0.0-beta5": { + "serviceable": true, + "sha512": "ewp5ueEWtXW+fnzn0QMhTV78gDOHoO/EYgzay6nYzAP92AgaP1r13lTkh1VDpbHaCxm9GWweUkojIWZ196iQUQ==", + "files": [ + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec", + "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.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "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", + "tools/install.ps1" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec", + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec", + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "sha512": "ijnoxLU+SrSf1AItfZOwtnzyx7yEi+WJtKa3d2X93Xf5YHlRsL4RwMZ10M9gLE8E+Rpi3ZJM5wAXi6OFSprDtw==", + "files": [ + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.NonGeneric.nuspec", + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/net46/System.Collections.NonGeneric.dll" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec", + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec", + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._" + ] + }, + "System.Diagnostics.Contracts/4.0.0-beta-23019": { + "sha512": "wi3eWkfN0kZYCHgIaOqRDfJoyl8P8oQLcxZ47ElLDTtOEW0TfGl0wVeqllMg7nMMzR7C1ordTWycpV34yQ7g4Q==", + "files": [ + "System.Diagnostics.Contracts.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Contracts.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec", + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Contracts.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec", + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "sha512": "GB0ki4TLNwFKcT7ZesteTERlZmBytRitEbdD6O1zVwDaeqqY+FZb2/+CH2Q5U1rN7qY9YmM70PxtyPG1t31zkg==", + "files": [ + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Tools.nuspec", + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec", + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec", + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec", + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll" + ] + }, + "System.Globalization.Extensions/4.0.0-beta-23019": { + "sha512": "k3KrctgKowl9Yv8eFbBIrnU/lL5+uUeaoCSJllwXA1XbQaGCLKVIYsMewgwV66UzkDfMU/65d6XhIcGucx9IAg==", + "files": [ + "System.Globalization.Extensions.4.0.0-beta-23019.nupkg", + "System.Globalization.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Extensions.nuspec", + "lib/dotnet/System.Globalization.Extensions.dll", + "lib/net46/System.Globalization.Extensions.dll", + "ref/dotnet/System.Globalization.Extensions.dll", + "ref/net46/System.Globalization.Extensions.dll" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec", + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec", + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec", + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec", + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec", + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "sha512": "YjnsUzXsXx8BdqaXQ2U/hrz4CWdlAfcoYccqO3BSKCpPZPFEbKizEiHR9KJGcqf9gQ4lzRkhlM3xiMIjX27mUQ==", + "files": [ + "runtime.json", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg.sha512", + "System.Linq.Expressions.nuspec", + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll" + ] + }, + "System.Net.Http/4.0.0-beta-23019": { + "sha512": "8mt4X1eIjTMrKVINJuzuFYf7C4GrYFC+tlvc2zH5HtxKPpbFZamMUdJ19ORxZ9ds053aqQASdiha7eH86PN+eg==", + "files": [ + "System.Net.Http.4.0.0-beta-23019.nupkg", + "System.Net.Http.4.0.0-beta-23019.nupkg.sha512", + "System.Net.Http.nuspec", + "lib/DNXCore50/System.Net.Http.dll", + "lib/net45/_._", + "lib/netcore50/System.Net.Http.dll", + "lib/win8/_._", + "ref/dotnet/System.Net.Http.dll", + "ref/net45/_._", + "ref/netcore50/System.Net.Http.dll", + "ref/win8/_._" + ] + }, + "System.Net.Http.WinHttpHandler/4.0.0-beta-23019": { + "sha512": "C6DBRXVzX3+bkWVlUdMVqHMgIiKbZJU6E08R/rSVENmVTGHxQ9NgSwA8yBCreOeV4hcdHIa187kjFA0X6BYSRA==", + "files": [ + "System.Net.Http.WinHttpHandler.4.0.0-beta-23019.nupkg", + "System.Net.Http.WinHttpHandler.4.0.0-beta-23019.nupkg.sha512", + "System.Net.Http.WinHttpHandler.nuspec", + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec", + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._" + ] + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "sha512": "9waIolEiBpjdMWLtTqQxYjpPplVpTlZEzof6C/6/vitUP7DuJrI7wJltEO5ARMPBqyT2Ohke0h1ZpLiRkZQkCw==", + "files": [ + "System.Net.WebSockets.4.0.0-beta-23019.nupkg", + "System.Net.WebSockets.4.0.0-beta-23019.nupkg.sha512", + "System.Net.WebSockets.nuspec", + "lib/DNXCore50/System.Net.WebSockets.dll", + "lib/net46/System.Net.WebSockets.dll", + "ref/dotnet/System.Net.WebSockets.dll", + "ref/net46/System.Net.WebSockets.dll" + ] + }, + "System.ObjectModel/4.0.0-beta-23019": { + "sha512": "shmwP3YgLhSx8+njPPb82OULH+SteCr8fZ6XaQK8dfuB3UCqqUfITYPW1zknMotwsnBZpVPdXFWmwvTE0XTCGA==", + "files": [ + "License.rtf", + "System.ObjectModel.4.0.0-beta-23019.nupkg", + "System.ObjectModel.4.0.0-beta-23019.nupkg.sha512", + "System.ObjectModel.nuspec", + "lib/net45/_._", + "lib/win8/_._", + "ref/dotnet/System.ObjectModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/win8/_._" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec", + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec", + "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.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec", + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "sha512": "FAp9TewUfCxaydPyY5Glv2/3KdxD5vpZ4qgx26OWV6xtytGinnXpHsxownQKKe7WkeqlRjy7s7cRgjTKZ50AQA==", + "files": [ + "System.Reflection.Emit.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.nuspec", + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "sha512": "5OsJjj6G9WY8aV3EWfI03dJoqH0RvILtP2GJ16JQf90pV0kVmgGsFQSqh+lcnnexh4CEje7DDxF748o/8KamWA==", + "files": [ + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec", + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec", + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec", + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "sha512": "5/WcPvsdnw0d8rwwsCgQKoo9oXFQA1gMHtyNcYjelDjaaYC/dYoU7Eo0JdP+0PMgy9FnBOHVjRHOTcJ2HIjefA==", + "files": [ + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec", + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec", + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec", + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec", + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec", + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec", + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec", + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._" + ] + }, + "System.Security.Claims/4.0.0-beta-23019": { + "sha512": "kKseHxGh5pWjM43MZWtub/ZyBWUV3RHNSJuUtTzapeQD2qND6pGGNekMXcxmEZOxrKwFEBAeTlcgmWo/2e6/SQ==", + "files": [ + "System.Security.Claims.4.0.0-beta-23019.nupkg", + "System.Security.Claims.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Claims.nuspec", + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll" + ] + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23019": { + "sha512": "X3lDbzONEsSurqDDApxmA/ybdViY5F1XAWoGV+B8ZlDKOsSiEbBwsPt8MShROlCkPZezUyRpLzg2b8Jd+anIRQ==", + "files": [ + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.Aes.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll", + "lib/net46/System.Security.Cryptography.Encryption.Aes.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll", + "ref/net46/System.Security.Cryptography.Encryption.Aes.dll" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec", + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll" + ] + }, + "System.Security.Principal/4.0.0-beta-23019": { + "sha512": "2zkK0eJOfso/Jo+77NVXDoJRggzL0jM0ayeXz+vD8pK9pIRnhpWJVbaGmT7MPBWW9KbPwtbJyXejpUS2rBflUQ==", + "files": [ + "System.Security.Principal.4.0.0-beta-23019.nupkg", + "System.Security.Principal.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.nuspec", + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "sha512": "FYvKKTbncuJCMnc1TmccsJlGSjIQrUJPymt2R3o5uSV1plyGD9V3san/rpq2IO4kDbHjGrQjEtZlbehwUucB5Q==", + "files": [ + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.Windows.nuspec", + "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.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec", + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec", + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec", + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "sha512": "7gCVMRey2Nji6WDKleSigGBJuy4gMKXGeVqauROuFoTygHNtFYaUTeToGMy7Obsi+tzgnyEYfd+9uY3Ifc/SjA==", + "files": [ + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.RegularExpressions.nuspec", + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/net46/_._" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec", + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec", + "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.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec", + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec", + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec", + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._" + ] + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "sha512": "pyyzY5FFoZziGVDFyO5VLM094cX7jNN+01EsSJEFreje5uzSz6aKwIPgTe/l2CFiXYFoUNr0O6D3GEc8jPmbPg==", + "files": [ + "System.Xml.XDocument.4.0.10-beta-23019.nupkg", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec", + "lib/dotnet/System.Xml.XDocument.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net46/_._" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.Authentication.OAuth >= 1.0.0-beta5", + "Microsoft.Framework.NotNullAttribute.Sources >= 1.0.0-beta5", + "Newtonsoft.Json >= 6.0.6" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [ + "System.Security.Cryptography.Hashing.Algorithms >= 4.0.0-beta-23019" + ] + } +} \ No newline at end of file diff --git a/src/Microsoft.AspNet.Authentication.Google/project.json b/src/Microsoft.AspNet.Authentication.Google/project.json index b7ffdd0bc..441b4f1b3 100644 --- a/src/Microsoft.AspNet.Authentication.Google/project.json +++ b/src/Microsoft.AspNet.Authentication.Google/project.json @@ -1,9 +1,9 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "description": "ASP.NET 5 contains middlewares to support Google's OpenId and OAuth 2.0 authentication workflows.", "dependencies": { - "Microsoft.AspNet.Authentication.OAuth": "1.0.0-*", - "Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-*" } + "Microsoft.AspNet.Authentication.OAuth": "1.0.0-beta5", + "Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-beta5" } }, "frameworks": { "dnx451": { }, diff --git a/src/Microsoft.AspNet.Authentication.Google/project.lock.json b/src/Microsoft.AspNet.Authentication.Google/project.lock.json new file mode 100644 index 000000000..7c81d464c --- /dev/null +++ b/src/Microsoft.AspNet.Authentication.Google/project.lock.json @@ -0,0 +1,2863 @@ +{ + "locked": true, + "version": -9996, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Authentication.Google/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication.OAuth": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.Google.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.Google.dll": {} + } + }, + "Microsoft.AspNet.Authentication.OAuth/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "System.Net.Http.WebRequest", + "System.Net.Http", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.OAuth.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.OAuth.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "System.IO", + "System.Security", + "System.Xml", + "System.Xml.Linq", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Authentication.Google/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication.OAuth": "1.0.0-beta5" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.Google.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.Google.dll": {} + } + }, + "Microsoft.AspNet.Authentication.OAuth/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6", + "System.Net.Http.WinHttpHandler": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.OAuth.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.OAuth.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption.Aes": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Linq": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Contracts": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.dll": {} + } + }, + "System.Net.Http.WinHttpHandler/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Net.Http": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "serviceable": true, + "sha512": "0aGfwSmbVHhNIQSp6dXqz6sLYD07U9Dgnw8rm/wnQDkLFfJ9iPQKBBTk/Oh/6wGwaSg9Ko7mzXTwILE42HZdZA==", + "files": [ + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.xml" + ] + }, + "Microsoft.AspNet.Authentication.Google/1.0.0-beta5": { + "serviceable": true, + "sha512": "H0nhpZSn0U49CTURDESV9AB7t/WqssJiOOy4h61euZ+D0BvAsxzbm9fhvY3Nsm3LXesPeJy/y6SLtwh4g0u4mw==", + "files": [ + "Microsoft.AspNet.Authentication.Google.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.Google.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.Google.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.Google.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.Google.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Google.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Google.xml" + ] + }, + "Microsoft.AspNet.Authentication.OAuth/1.0.0-beta5": { + "serviceable": true, + "sha512": "BiqoBm029GJULff0YlvBv3A1aH7MdHhJaV6RkMKDxFtIN2r2KwK9eNsEKvpYgv7jwqbX/mhMzrcp5jKld3+Mlw==", + "files": [ + "Microsoft.AspNet.Authentication.OAuth.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.OAuth.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.OAuth.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.OAuth.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.OAuth.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.OAuth.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.OAuth.xml" + ] + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "serviceable": true, + "sha512": "nhCP9Q0TSA3F31w+SXoXh5X9zbGRpyGZrkBhid++k673Mxg1uzkDNa18Z0edF7Yiua2ZHZeA/GPkPUG0pzER/A==", + "files": [ + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Cryptography.Internal.nuspec", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.xml" + ] + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "serviceable": true, + "sha512": "f8oqJIyHUbmsIkgEq+A7QQOKr60s4GoewR2I+ItHGuHdwV6ICuNnu4yKSx7v0k/uh51T49ECcrrMApUepuV2mg==", + "files": [ + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.nuspec", + "lib/dnx451/Microsoft.AspNet.DataProtection.dll", + "lib/dnx451/Microsoft.AspNet.DataProtection.xml", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.xml", + "lib/net451/Microsoft.AspNet.DataProtection.dll", + "lib/net451/Microsoft.AspNet.DataProtection.xml" + ] + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ow8W+rMtA0rsiCtvHtUs+f5wrzMj0rtoSjl+vTgtGNQ0Ib+3tsGbKgA9+l5kzGKG6RUebnCK+vXKP/zCXDZOvw==", + "files": [ + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.Abstractions.nuspec", + "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.FeatureModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "M6ltNGrh4gHU+DiMbV074ZDwDQAIYx1SEOlltX7XzKbiDztYuTAtXiv8M/wkjZBeVdkszkE0NPOlMb/pbfww6g==", + "files": [ + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg", + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.FeatureModel.nuspec", + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll", + "lib/dnx451/Microsoft.AspNet.FeatureModel.xml", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.xml" + ] + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "serviceable": true, + "sha512": "Smn8m/xaNcNK4GKTZ5lfkHL4OqKCyxrt5m+1i3Dpe5wjUHR+Z9qGVjcuT/ZTJLfSZBelpP0yKZHFqcgUCMujFw==", + "files": [ + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "vNdZzaCID7R1k93o+N6LQ9d3Lx49bAoSAwslnzhcKXvbSvbHjZ1DRFDngrHIlY/ckcls0MH+j2qePUtuCTb8NQ==", + "files": [ + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec", + "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.Extensions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ai6Q0oPVzBQwpbeMcS585MZEjsYRAmjd+V6zSqutFb0u9IwxLV0ALr9dNT6Fg3/Wf+LSuBxeCfk5FZ5BjfuYqA==", + "files": [ + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec", + "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.Features/1.0.0-beta5": { + "serviceable": true, + "sha512": "jZi6dVWXrN3cABLWjm0Dgh7CIm0VppzDPpUUuOgIIfnr9E4QcG87Xq7s25JIFsXHkInmPH2DSUn5cp6PA9QrIw==", + "files": [ + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "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.WebUtilities/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ieb9JeaI57V2HRWyFsQE+Ioo7jRE7gp8QgmHAgCuc58RfUUvKf3BdmjMMqw+0DfOQMf4VL9xWpj0yQ/bMA1VDA==", + "files": [ + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec", + "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.Framework.Configuration/1.0.0-beta5": { + "serviceable": true, + "sha512": "UBw3f+fKi4/WHWIz3oTKF5UiLjmfvTiDgU9oCjYYApqKUMIji4VPbgsoqCzEzgXPHpLHDGkBal6Ux0Gcgu15Ig==", + "files": [ + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "dW5gHHlvvNnrFFSGtfOFhKClSi9Eb4WFPVdrrIbZYq2gIVw2Dde740p68H3+v9Fr511sk4yPCkGZ0wqXm1GObw==", + "files": [ + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "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.Binder/1.0.0-beta5": { + "serviceable": true, + "sha512": "xSWVoCC0gtn9h12O/M2Eie6eXehJ0P2ovvGkZU5ZWNh8ycTyisyKrkhAmtObcF0dDdPJO9HXUHbRT5ady9fb8Q==", + "files": [ + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "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.Logging.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "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.NotNullAttribute.Sources/1.0.0-beta5": { + "sha512": "hgETnks4ovIE4ySkFs6mQ+QN195kOIM+3IxgIqQFYtuF9tfNdw1/xkkwm9ip7vUifJlNC4O5d9o7CJ2ou46GyA==", + "files": [ + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "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", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "oK4jCjvQfz1NGBUf73euKqPDhC4aSJ3fkpOrozrOxVL85ToF+QyrD4yWclNCkf0/WnEUjXh6eWsfiEqI9zgODg==", + "files": [ + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml" + ] + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "serviceable": true, + "sha512": "y/2QI2ruRp1Wc3qgIDxQex7ExueFgwd9M5Jw/xJA+tIRuwLlmyDvegDpcBQwqWIanG3pd2Tm5sjcPSTqPLcTyQ==", + "files": [ + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.nuspec", + "lib/dnx451/Microsoft.Framework.WebEncoders.dll", + "lib/dnx451/Microsoft.Framework.WebEncoders.xml", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.xml", + "lib/net45/Microsoft.Framework.WebEncoders.dll", + "lib/net45/Microsoft.Framework.WebEncoders.xml" + ] + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "serviceable": true, + "sha512": "KIwD5E5o4osx5NnSrqppt3W8TDdel2S1mnsdXGZn1N61enxic4v5Al51RPvcbGAPoVPQhru3fFao7FdxmfWGnQ==", + "files": [ + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.Core.nuspec", + "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.Net.Http.Headers/1.0.0-beta5": { + "serviceable": true, + "sha512": "ewp5ueEWtXW+fnzn0QMhTV78gDOHoO/EYgzay6nYzAP92AgaP1r13lTkh1VDpbHaCxm9GWweUkojIWZ196iQUQ==", + "files": [ + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec", + "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.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "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", + "tools/install.ps1" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec", + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec", + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "sha512": "ijnoxLU+SrSf1AItfZOwtnzyx7yEi+WJtKa3d2X93Xf5YHlRsL4RwMZ10M9gLE8E+Rpi3ZJM5wAXi6OFSprDtw==", + "files": [ + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.NonGeneric.nuspec", + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/net46/System.Collections.NonGeneric.dll" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec", + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec", + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._" + ] + }, + "System.Diagnostics.Contracts/4.0.0-beta-23019": { + "sha512": "wi3eWkfN0kZYCHgIaOqRDfJoyl8P8oQLcxZ47ElLDTtOEW0TfGl0wVeqllMg7nMMzR7C1ordTWycpV34yQ7g4Q==", + "files": [ + "System.Diagnostics.Contracts.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Contracts.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec", + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Contracts.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec", + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "sha512": "GB0ki4TLNwFKcT7ZesteTERlZmBytRitEbdD6O1zVwDaeqqY+FZb2/+CH2Q5U1rN7qY9YmM70PxtyPG1t31zkg==", + "files": [ + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Tools.nuspec", + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec", + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec", + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec", + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll" + ] + }, + "System.Globalization.Extensions/4.0.0-beta-23019": { + "sha512": "k3KrctgKowl9Yv8eFbBIrnU/lL5+uUeaoCSJllwXA1XbQaGCLKVIYsMewgwV66UzkDfMU/65d6XhIcGucx9IAg==", + "files": [ + "System.Globalization.Extensions.4.0.0-beta-23019.nupkg", + "System.Globalization.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Extensions.nuspec", + "lib/dotnet/System.Globalization.Extensions.dll", + "lib/net46/System.Globalization.Extensions.dll", + "ref/dotnet/System.Globalization.Extensions.dll", + "ref/net46/System.Globalization.Extensions.dll" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec", + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec", + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec", + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec", + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec", + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "sha512": "YjnsUzXsXx8BdqaXQ2U/hrz4CWdlAfcoYccqO3BSKCpPZPFEbKizEiHR9KJGcqf9gQ4lzRkhlM3xiMIjX27mUQ==", + "files": [ + "runtime.json", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg.sha512", + "System.Linq.Expressions.nuspec", + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll" + ] + }, + "System.Net.Http/4.0.0-beta-23019": { + "sha512": "8mt4X1eIjTMrKVINJuzuFYf7C4GrYFC+tlvc2zH5HtxKPpbFZamMUdJ19ORxZ9ds053aqQASdiha7eH86PN+eg==", + "files": [ + "System.Net.Http.4.0.0-beta-23019.nupkg", + "System.Net.Http.4.0.0-beta-23019.nupkg.sha512", + "System.Net.Http.nuspec", + "lib/DNXCore50/System.Net.Http.dll", + "lib/net45/_._", + "lib/netcore50/System.Net.Http.dll", + "lib/win8/_._", + "ref/dotnet/System.Net.Http.dll", + "ref/net45/_._", + "ref/netcore50/System.Net.Http.dll", + "ref/win8/_._" + ] + }, + "System.Net.Http.WinHttpHandler/4.0.0-beta-23019": { + "sha512": "C6DBRXVzX3+bkWVlUdMVqHMgIiKbZJU6E08R/rSVENmVTGHxQ9NgSwA8yBCreOeV4hcdHIa187kjFA0X6BYSRA==", + "files": [ + "System.Net.Http.WinHttpHandler.4.0.0-beta-23019.nupkg", + "System.Net.Http.WinHttpHandler.4.0.0-beta-23019.nupkg.sha512", + "System.Net.Http.WinHttpHandler.nuspec", + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec", + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._" + ] + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "sha512": "9waIolEiBpjdMWLtTqQxYjpPplVpTlZEzof6C/6/vitUP7DuJrI7wJltEO5ARMPBqyT2Ohke0h1ZpLiRkZQkCw==", + "files": [ + "System.Net.WebSockets.4.0.0-beta-23019.nupkg", + "System.Net.WebSockets.4.0.0-beta-23019.nupkg.sha512", + "System.Net.WebSockets.nuspec", + "lib/DNXCore50/System.Net.WebSockets.dll", + "lib/net46/System.Net.WebSockets.dll", + "ref/dotnet/System.Net.WebSockets.dll", + "ref/net46/System.Net.WebSockets.dll" + ] + }, + "System.ObjectModel/4.0.0-beta-23019": { + "sha512": "shmwP3YgLhSx8+njPPb82OULH+SteCr8fZ6XaQK8dfuB3UCqqUfITYPW1zknMotwsnBZpVPdXFWmwvTE0XTCGA==", + "files": [ + "License.rtf", + "System.ObjectModel.4.0.0-beta-23019.nupkg", + "System.ObjectModel.4.0.0-beta-23019.nupkg.sha512", + "System.ObjectModel.nuspec", + "lib/net45/_._", + "lib/win8/_._", + "ref/dotnet/System.ObjectModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/win8/_._" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec", + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec", + "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.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec", + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "sha512": "FAp9TewUfCxaydPyY5Glv2/3KdxD5vpZ4qgx26OWV6xtytGinnXpHsxownQKKe7WkeqlRjy7s7cRgjTKZ50AQA==", + "files": [ + "System.Reflection.Emit.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.nuspec", + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "sha512": "5OsJjj6G9WY8aV3EWfI03dJoqH0RvILtP2GJ16JQf90pV0kVmgGsFQSqh+lcnnexh4CEje7DDxF748o/8KamWA==", + "files": [ + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec", + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec", + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec", + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "sha512": "5/WcPvsdnw0d8rwwsCgQKoo9oXFQA1gMHtyNcYjelDjaaYC/dYoU7Eo0JdP+0PMgy9FnBOHVjRHOTcJ2HIjefA==", + "files": [ + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec", + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec", + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec", + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec", + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec", + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec", + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec", + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._" + ] + }, + "System.Security.Claims/4.0.0-beta-23019": { + "sha512": "kKseHxGh5pWjM43MZWtub/ZyBWUV3RHNSJuUtTzapeQD2qND6pGGNekMXcxmEZOxrKwFEBAeTlcgmWo/2e6/SQ==", + "files": [ + "System.Security.Claims.4.0.0-beta-23019.nupkg", + "System.Security.Claims.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Claims.nuspec", + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll" + ] + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23019": { + "sha512": "X3lDbzONEsSurqDDApxmA/ybdViY5F1XAWoGV+B8ZlDKOsSiEbBwsPt8MShROlCkPZezUyRpLzg2b8Jd+anIRQ==", + "files": [ + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.Aes.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll", + "lib/net46/System.Security.Cryptography.Encryption.Aes.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll", + "ref/net46/System.Security.Cryptography.Encryption.Aes.dll" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec", + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll" + ] + }, + "System.Security.Principal/4.0.0-beta-23019": { + "sha512": "2zkK0eJOfso/Jo+77NVXDoJRggzL0jM0ayeXz+vD8pK9pIRnhpWJVbaGmT7MPBWW9KbPwtbJyXejpUS2rBflUQ==", + "files": [ + "System.Security.Principal.4.0.0-beta-23019.nupkg", + "System.Security.Principal.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.nuspec", + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "sha512": "FYvKKTbncuJCMnc1TmccsJlGSjIQrUJPymt2R3o5uSV1plyGD9V3san/rpq2IO4kDbHjGrQjEtZlbehwUucB5Q==", + "files": [ + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.Windows.nuspec", + "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.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec", + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec", + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec", + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "sha512": "7gCVMRey2Nji6WDKleSigGBJuy4gMKXGeVqauROuFoTygHNtFYaUTeToGMy7Obsi+tzgnyEYfd+9uY3Ifc/SjA==", + "files": [ + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.RegularExpressions.nuspec", + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/net46/_._" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec", + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec", + "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.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec", + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec", + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec", + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._" + ] + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "sha512": "pyyzY5FFoZziGVDFyO5VLM094cX7jNN+01EsSJEFreje5uzSz6aKwIPgTe/l2CFiXYFoUNr0O6D3GEc8jPmbPg==", + "files": [ + "System.Xml.XDocument.4.0.10-beta-23019.nupkg", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec", + "lib/dotnet/System.Xml.XDocument.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net46/_._" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.Authentication.OAuth >= 1.0.0-beta5", + "Microsoft.Framework.NotNullAttribute.Sources >= 1.0.0-beta5" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [] + } +} \ No newline at end of file diff --git a/src/Microsoft.AspNet.Authentication.MicrosoftAccount/project.json b/src/Microsoft.AspNet.Authentication.MicrosoftAccount/project.json index 41ef74556..7ca5d0c46 100644 --- a/src/Microsoft.AspNet.Authentication.MicrosoftAccount/project.json +++ b/src/Microsoft.AspNet.Authentication.MicrosoftAccount/project.json @@ -1,16 +1,16 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "description": "ASP.NET 5 middleware that enables an application to support the Microsoft Account authentication workflow.", "dependencies": { - "Microsoft.AspNet.Authentication.OAuth": "1.0.0-*", - "Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-*" } + "Microsoft.AspNet.Authentication.OAuth": "1.0.0-beta5", + "Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-beta5" } }, "frameworks": { "dnx451": { }, "dnxcore50": { "dependencies": { - "System.Dynamic.Runtime": "4.0.10-beta-*", - "System.ObjectModel": "4.0.10-beta-*" + "System.Dynamic.Runtime": "4.0.10-beta-23019", + "System.ObjectModel": "4.0.10-beta-23019" } } } diff --git a/src/Microsoft.AspNet.Authentication.MicrosoftAccount/project.lock.json b/src/Microsoft.AspNet.Authentication.MicrosoftAccount/project.lock.json new file mode 100644 index 000000000..0fa26bff7 --- /dev/null +++ b/src/Microsoft.AspNet.Authentication.MicrosoftAccount/project.lock.json @@ -0,0 +1,2868 @@ +{ + "locked": true, + "version": -9996, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Authentication.OAuth/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "System.Net.Http.WebRequest", + "System.Net.Http", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.OAuth.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.OAuth.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "System.IO", + "System.Security", + "System.Xml", + "System.Xml.Linq", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Authentication.OAuth/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6", + "System.Net.Http.WinHttpHandler": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.OAuth.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.OAuth.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption.Aes": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Linq": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Contracts": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.dll": {} + } + }, + "System.Net.Http.WinHttpHandler/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Net.Http": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "serviceable": true, + "sha512": "0aGfwSmbVHhNIQSp6dXqz6sLYD07U9Dgnw8rm/wnQDkLFfJ9iPQKBBTk/Oh/6wGwaSg9Ko7mzXTwILE42HZdZA==", + "files": [ + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.xml" + ] + }, + "Microsoft.AspNet.Authentication.OAuth/1.0.0-beta5": { + "serviceable": true, + "sha512": "BiqoBm029GJULff0YlvBv3A1aH7MdHhJaV6RkMKDxFtIN2r2KwK9eNsEKvpYgv7jwqbX/mhMzrcp5jKld3+Mlw==", + "files": [ + "Microsoft.AspNet.Authentication.OAuth.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.OAuth.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.OAuth.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.OAuth.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.OAuth.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.OAuth.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.OAuth.xml" + ] + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "serviceable": true, + "sha512": "nhCP9Q0TSA3F31w+SXoXh5X9zbGRpyGZrkBhid++k673Mxg1uzkDNa18Z0edF7Yiua2ZHZeA/GPkPUG0pzER/A==", + "files": [ + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Cryptography.Internal.nuspec", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.xml" + ] + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "serviceable": true, + "sha512": "f8oqJIyHUbmsIkgEq+A7QQOKr60s4GoewR2I+ItHGuHdwV6ICuNnu4yKSx7v0k/uh51T49ECcrrMApUepuV2mg==", + "files": [ + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.nuspec", + "lib/dnx451/Microsoft.AspNet.DataProtection.dll", + "lib/dnx451/Microsoft.AspNet.DataProtection.xml", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.xml", + "lib/net451/Microsoft.AspNet.DataProtection.dll", + "lib/net451/Microsoft.AspNet.DataProtection.xml" + ] + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ow8W+rMtA0rsiCtvHtUs+f5wrzMj0rtoSjl+vTgtGNQ0Ib+3tsGbKgA9+l5kzGKG6RUebnCK+vXKP/zCXDZOvw==", + "files": [ + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.Abstractions.nuspec", + "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.FeatureModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "M6ltNGrh4gHU+DiMbV074ZDwDQAIYx1SEOlltX7XzKbiDztYuTAtXiv8M/wkjZBeVdkszkE0NPOlMb/pbfww6g==", + "files": [ + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg", + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.FeatureModel.nuspec", + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll", + "lib/dnx451/Microsoft.AspNet.FeatureModel.xml", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.xml" + ] + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "serviceable": true, + "sha512": "Smn8m/xaNcNK4GKTZ5lfkHL4OqKCyxrt5m+1i3Dpe5wjUHR+Z9qGVjcuT/ZTJLfSZBelpP0yKZHFqcgUCMujFw==", + "files": [ + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "vNdZzaCID7R1k93o+N6LQ9d3Lx49bAoSAwslnzhcKXvbSvbHjZ1DRFDngrHIlY/ckcls0MH+j2qePUtuCTb8NQ==", + "files": [ + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec", + "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.Extensions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ai6Q0oPVzBQwpbeMcS585MZEjsYRAmjd+V6zSqutFb0u9IwxLV0ALr9dNT6Fg3/Wf+LSuBxeCfk5FZ5BjfuYqA==", + "files": [ + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec", + "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.Features/1.0.0-beta5": { + "serviceable": true, + "sha512": "jZi6dVWXrN3cABLWjm0Dgh7CIm0VppzDPpUUuOgIIfnr9E4QcG87Xq7s25JIFsXHkInmPH2DSUn5cp6PA9QrIw==", + "files": [ + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "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.WebUtilities/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ieb9JeaI57V2HRWyFsQE+Ioo7jRE7gp8QgmHAgCuc58RfUUvKf3BdmjMMqw+0DfOQMf4VL9xWpj0yQ/bMA1VDA==", + "files": [ + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec", + "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.Framework.Configuration/1.0.0-beta5": { + "serviceable": true, + "sha512": "UBw3f+fKi4/WHWIz3oTKF5UiLjmfvTiDgU9oCjYYApqKUMIji4VPbgsoqCzEzgXPHpLHDGkBal6Ux0Gcgu15Ig==", + "files": [ + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "dW5gHHlvvNnrFFSGtfOFhKClSi9Eb4WFPVdrrIbZYq2gIVw2Dde740p68H3+v9Fr511sk4yPCkGZ0wqXm1GObw==", + "files": [ + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "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.Binder/1.0.0-beta5": { + "serviceable": true, + "sha512": "xSWVoCC0gtn9h12O/M2Eie6eXehJ0P2ovvGkZU5ZWNh8ycTyisyKrkhAmtObcF0dDdPJO9HXUHbRT5ady9fb8Q==", + "files": [ + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "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.Logging.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "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.NotNullAttribute.Sources/1.0.0-beta5": { + "sha512": "hgETnks4ovIE4ySkFs6mQ+QN195kOIM+3IxgIqQFYtuF9tfNdw1/xkkwm9ip7vUifJlNC4O5d9o7CJ2ou46GyA==", + "files": [ + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "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", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "oK4jCjvQfz1NGBUf73euKqPDhC4aSJ3fkpOrozrOxVL85ToF+QyrD4yWclNCkf0/WnEUjXh6eWsfiEqI9zgODg==", + "files": [ + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml" + ] + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "serviceable": true, + "sha512": "y/2QI2ruRp1Wc3qgIDxQex7ExueFgwd9M5Jw/xJA+tIRuwLlmyDvegDpcBQwqWIanG3pd2Tm5sjcPSTqPLcTyQ==", + "files": [ + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.nuspec", + "lib/dnx451/Microsoft.Framework.WebEncoders.dll", + "lib/dnx451/Microsoft.Framework.WebEncoders.xml", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.xml", + "lib/net45/Microsoft.Framework.WebEncoders.dll", + "lib/net45/Microsoft.Framework.WebEncoders.xml" + ] + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "serviceable": true, + "sha512": "KIwD5E5o4osx5NnSrqppt3W8TDdel2S1mnsdXGZn1N61enxic4v5Al51RPvcbGAPoVPQhru3fFao7FdxmfWGnQ==", + "files": [ + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.Core.nuspec", + "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.Net.Http.Headers/1.0.0-beta5": { + "serviceable": true, + "sha512": "ewp5ueEWtXW+fnzn0QMhTV78gDOHoO/EYgzay6nYzAP92AgaP1r13lTkh1VDpbHaCxm9GWweUkojIWZ196iQUQ==", + "files": [ + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec", + "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.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "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", + "tools/install.ps1" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec", + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec", + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "sha512": "ijnoxLU+SrSf1AItfZOwtnzyx7yEi+WJtKa3d2X93Xf5YHlRsL4RwMZ10M9gLE8E+Rpi3ZJM5wAXi6OFSprDtw==", + "files": [ + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.NonGeneric.nuspec", + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/net46/System.Collections.NonGeneric.dll" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec", + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec", + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._" + ] + }, + "System.Diagnostics.Contracts/4.0.0-beta-23019": { + "sha512": "wi3eWkfN0kZYCHgIaOqRDfJoyl8P8oQLcxZ47ElLDTtOEW0TfGl0wVeqllMg7nMMzR7C1ordTWycpV34yQ7g4Q==", + "files": [ + "System.Diagnostics.Contracts.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Contracts.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec", + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Contracts.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec", + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "sha512": "GB0ki4TLNwFKcT7ZesteTERlZmBytRitEbdD6O1zVwDaeqqY+FZb2/+CH2Q5U1rN7qY9YmM70PxtyPG1t31zkg==", + "files": [ + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Tools.nuspec", + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec", + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll" + ] + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "sha512": "yhXko8+R8fy0RERn6xQltYEhChBNyGEQgntwjHqNBc3x1M7wvg+Ye72Bh1QVQfnMIXZ0tG8XSrQs8hJe8KjYjg==", + "files": [ + "runtime.json", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg.sha512", + "System.Dynamic.Runtime.nuspec", + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec", + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec", + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll" + ] + }, + "System.Globalization.Extensions/4.0.0-beta-23019": { + "sha512": "k3KrctgKowl9Yv8eFbBIrnU/lL5+uUeaoCSJllwXA1XbQaGCLKVIYsMewgwV66UzkDfMU/65d6XhIcGucx9IAg==", + "files": [ + "System.Globalization.Extensions.4.0.0-beta-23019.nupkg", + "System.Globalization.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Extensions.nuspec", + "lib/dotnet/System.Globalization.Extensions.dll", + "lib/net46/System.Globalization.Extensions.dll", + "ref/dotnet/System.Globalization.Extensions.dll", + "ref/net46/System.Globalization.Extensions.dll" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec", + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec", + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec", + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec", + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec", + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "sha512": "YjnsUzXsXx8BdqaXQ2U/hrz4CWdlAfcoYccqO3BSKCpPZPFEbKizEiHR9KJGcqf9gQ4lzRkhlM3xiMIjX27mUQ==", + "files": [ + "runtime.json", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg.sha512", + "System.Linq.Expressions.nuspec", + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll" + ] + }, + "System.Net.Http/4.0.0-beta-23019": { + "sha512": "8mt4X1eIjTMrKVINJuzuFYf7C4GrYFC+tlvc2zH5HtxKPpbFZamMUdJ19ORxZ9ds053aqQASdiha7eH86PN+eg==", + "files": [ + "System.Net.Http.4.0.0-beta-23019.nupkg", + "System.Net.Http.4.0.0-beta-23019.nupkg.sha512", + "System.Net.Http.nuspec", + "lib/DNXCore50/System.Net.Http.dll", + "lib/net45/_._", + "lib/netcore50/System.Net.Http.dll", + "lib/win8/_._", + "ref/dotnet/System.Net.Http.dll", + "ref/net45/_._", + "ref/netcore50/System.Net.Http.dll", + "ref/win8/_._" + ] + }, + "System.Net.Http.WinHttpHandler/4.0.0-beta-23019": { + "sha512": "C6DBRXVzX3+bkWVlUdMVqHMgIiKbZJU6E08R/rSVENmVTGHxQ9NgSwA8yBCreOeV4hcdHIa187kjFA0X6BYSRA==", + "files": [ + "System.Net.Http.WinHttpHandler.4.0.0-beta-23019.nupkg", + "System.Net.Http.WinHttpHandler.4.0.0-beta-23019.nupkg.sha512", + "System.Net.Http.WinHttpHandler.nuspec", + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec", + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._" + ] + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "sha512": "9waIolEiBpjdMWLtTqQxYjpPplVpTlZEzof6C/6/vitUP7DuJrI7wJltEO5ARMPBqyT2Ohke0h1ZpLiRkZQkCw==", + "files": [ + "System.Net.WebSockets.4.0.0-beta-23019.nupkg", + "System.Net.WebSockets.4.0.0-beta-23019.nupkg.sha512", + "System.Net.WebSockets.nuspec", + "lib/DNXCore50/System.Net.WebSockets.dll", + "lib/net46/System.Net.WebSockets.dll", + "ref/dotnet/System.Net.WebSockets.dll", + "ref/net46/System.Net.WebSockets.dll" + ] + }, + "System.ObjectModel/4.0.10-beta-23019": { + "sha512": "sJ+7kgWoTs4d8eNlhJB/p1Uq2iWHYVxO7ALNpB3sTwh3LORqwwPZe5FbSweccA3seM+zLSYa2AqBGp69JOXbcA==", + "files": [ + "System.ObjectModel.4.0.10-beta-23019.nupkg", + "System.ObjectModel.4.0.10-beta-23019.nupkg.sha512", + "System.ObjectModel.nuspec", + "lib/dotnet/System.ObjectModel.dll", + "lib/net46/_._", + "ref/dotnet/System.ObjectModel.dll", + "ref/net46/_._" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec", + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec", + "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.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec", + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "sha512": "FAp9TewUfCxaydPyY5Glv2/3KdxD5vpZ4qgx26OWV6xtytGinnXpHsxownQKKe7WkeqlRjy7s7cRgjTKZ50AQA==", + "files": [ + "System.Reflection.Emit.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.nuspec", + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "sha512": "5OsJjj6G9WY8aV3EWfI03dJoqH0RvILtP2GJ16JQf90pV0kVmgGsFQSqh+lcnnexh4CEje7DDxF748o/8KamWA==", + "files": [ + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec", + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec", + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec", + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "sha512": "5/WcPvsdnw0d8rwwsCgQKoo9oXFQA1gMHtyNcYjelDjaaYC/dYoU7Eo0JdP+0PMgy9FnBOHVjRHOTcJ2HIjefA==", + "files": [ + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec", + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec", + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec", + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec", + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec", + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec", + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec", + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._" + ] + }, + "System.Security.Claims/4.0.0-beta-23019": { + "sha512": "kKseHxGh5pWjM43MZWtub/ZyBWUV3RHNSJuUtTzapeQD2qND6pGGNekMXcxmEZOxrKwFEBAeTlcgmWo/2e6/SQ==", + "files": [ + "System.Security.Claims.4.0.0-beta-23019.nupkg", + "System.Security.Claims.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Claims.nuspec", + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll" + ] + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23019": { + "sha512": "X3lDbzONEsSurqDDApxmA/ybdViY5F1XAWoGV+B8ZlDKOsSiEbBwsPt8MShROlCkPZezUyRpLzg2b8Jd+anIRQ==", + "files": [ + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.Aes.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll", + "lib/net46/System.Security.Cryptography.Encryption.Aes.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll", + "ref/net46/System.Security.Cryptography.Encryption.Aes.dll" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec", + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll" + ] + }, + "System.Security.Principal/4.0.0-beta-23019": { + "sha512": "2zkK0eJOfso/Jo+77NVXDoJRggzL0jM0ayeXz+vD8pK9pIRnhpWJVbaGmT7MPBWW9KbPwtbJyXejpUS2rBflUQ==", + "files": [ + "System.Security.Principal.4.0.0-beta-23019.nupkg", + "System.Security.Principal.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.nuspec", + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "sha512": "FYvKKTbncuJCMnc1TmccsJlGSjIQrUJPymt2R3o5uSV1plyGD9V3san/rpq2IO4kDbHjGrQjEtZlbehwUucB5Q==", + "files": [ + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.Windows.nuspec", + "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.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec", + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec", + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec", + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "sha512": "7gCVMRey2Nji6WDKleSigGBJuy4gMKXGeVqauROuFoTygHNtFYaUTeToGMy7Obsi+tzgnyEYfd+9uY3Ifc/SjA==", + "files": [ + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.RegularExpressions.nuspec", + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/net46/_._" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec", + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec", + "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.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec", + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec", + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec", + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._" + ] + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "sha512": "pyyzY5FFoZziGVDFyO5VLM094cX7jNN+01EsSJEFreje5uzSz6aKwIPgTe/l2CFiXYFoUNr0O6D3GEc8jPmbPg==", + "files": [ + "System.Xml.XDocument.4.0.10-beta-23019.nupkg", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec", + "lib/dotnet/System.Xml.XDocument.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net46/_._" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.Authentication.OAuth >= 1.0.0-beta5", + "Microsoft.Framework.NotNullAttribute.Sources >= 1.0.0-beta5" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [ + "System.Dynamic.Runtime >= 4.0.10-beta-23019", + "System.ObjectModel >= 4.0.10-beta-23019" + ] + } +} \ No newline at end of file diff --git a/src/Microsoft.AspNet.Authentication.OAuth/project.json b/src/Microsoft.AspNet.Authentication.OAuth/project.json index ba2cc53dc..4030f5597 100644 --- a/src/Microsoft.AspNet.Authentication.OAuth/project.json +++ b/src/Microsoft.AspNet.Authentication.OAuth/project.json @@ -1,9 +1,9 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "description": "ASP.NET 5 middleware that enables an application to support any standard OAuth 2.0 authentication workflow.", "dependencies": { - "Microsoft.AspNet.Authentication": "1.0.0-*", - "Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-*" }, + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-beta5" }, "Newtonsoft.Json": "6.0.6" }, "frameworks": { @@ -15,7 +15,7 @@ }, "dnxcore50": { "dependencies": { - "System.Net.Http.WinHttpHandler": "4.0.0-beta-*" + "System.Net.Http.WinHttpHandler": "4.0.0-beta-23019" } } } diff --git a/src/Microsoft.AspNet.Authentication.OAuth/project.lock.json b/src/Microsoft.AspNet.Authentication.OAuth/project.lock.json new file mode 100644 index 000000000..00d81d9b5 --- /dev/null +++ b/src/Microsoft.AspNet.Authentication.OAuth/project.lock.json @@ -0,0 +1,2828 @@ +{ + "locked": true, + "version": -9996, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Authentication.OAuth/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "System.Net.Http.WebRequest", + "System.Net.Http", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.OAuth.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.OAuth.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "System.IO", + "System.Security", + "System.Xml", + "System.Xml.Linq", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Authentication.OAuth/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6", + "System.Net.Http.WinHttpHandler": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.OAuth.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.OAuth.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption.Aes": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Linq": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Contracts": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.dll": {} + } + }, + "System.Net.Http.WinHttpHandler/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Net.Http": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "serviceable": true, + "sha512": "0aGfwSmbVHhNIQSp6dXqz6sLYD07U9Dgnw8rm/wnQDkLFfJ9iPQKBBTk/Oh/6wGwaSg9Ko7mzXTwILE42HZdZA==", + "files": [ + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.xml" + ] + }, + "Microsoft.AspNet.Authentication.OAuth/1.0.0-beta5": { + "serviceable": true, + "sha512": "BiqoBm029GJULff0YlvBv3A1aH7MdHhJaV6RkMKDxFtIN2r2KwK9eNsEKvpYgv7jwqbX/mhMzrcp5jKld3+Mlw==", + "files": [ + "Microsoft.AspNet.Authentication.OAuth.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.OAuth.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.OAuth.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.OAuth.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.OAuth.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.OAuth.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.OAuth.xml" + ] + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "serviceable": true, + "sha512": "nhCP9Q0TSA3F31w+SXoXh5X9zbGRpyGZrkBhid++k673Mxg1uzkDNa18Z0edF7Yiua2ZHZeA/GPkPUG0pzER/A==", + "files": [ + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Cryptography.Internal.nuspec", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.xml" + ] + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "serviceable": true, + "sha512": "f8oqJIyHUbmsIkgEq+A7QQOKr60s4GoewR2I+ItHGuHdwV6ICuNnu4yKSx7v0k/uh51T49ECcrrMApUepuV2mg==", + "files": [ + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.nuspec", + "lib/dnx451/Microsoft.AspNet.DataProtection.dll", + "lib/dnx451/Microsoft.AspNet.DataProtection.xml", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.xml", + "lib/net451/Microsoft.AspNet.DataProtection.dll", + "lib/net451/Microsoft.AspNet.DataProtection.xml" + ] + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ow8W+rMtA0rsiCtvHtUs+f5wrzMj0rtoSjl+vTgtGNQ0Ib+3tsGbKgA9+l5kzGKG6RUebnCK+vXKP/zCXDZOvw==", + "files": [ + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.Abstractions.nuspec", + "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.FeatureModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "M6ltNGrh4gHU+DiMbV074ZDwDQAIYx1SEOlltX7XzKbiDztYuTAtXiv8M/wkjZBeVdkszkE0NPOlMb/pbfww6g==", + "files": [ + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg", + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.FeatureModel.nuspec", + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll", + "lib/dnx451/Microsoft.AspNet.FeatureModel.xml", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.xml" + ] + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "serviceable": true, + "sha512": "Smn8m/xaNcNK4GKTZ5lfkHL4OqKCyxrt5m+1i3Dpe5wjUHR+Z9qGVjcuT/ZTJLfSZBelpP0yKZHFqcgUCMujFw==", + "files": [ + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "vNdZzaCID7R1k93o+N6LQ9d3Lx49bAoSAwslnzhcKXvbSvbHjZ1DRFDngrHIlY/ckcls0MH+j2qePUtuCTb8NQ==", + "files": [ + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec", + "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.Extensions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ai6Q0oPVzBQwpbeMcS585MZEjsYRAmjd+V6zSqutFb0u9IwxLV0ALr9dNT6Fg3/Wf+LSuBxeCfk5FZ5BjfuYqA==", + "files": [ + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec", + "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.Features/1.0.0-beta5": { + "serviceable": true, + "sha512": "jZi6dVWXrN3cABLWjm0Dgh7CIm0VppzDPpUUuOgIIfnr9E4QcG87Xq7s25JIFsXHkInmPH2DSUn5cp6PA9QrIw==", + "files": [ + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "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.WebUtilities/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ieb9JeaI57V2HRWyFsQE+Ioo7jRE7gp8QgmHAgCuc58RfUUvKf3BdmjMMqw+0DfOQMf4VL9xWpj0yQ/bMA1VDA==", + "files": [ + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec", + "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.Framework.Configuration/1.0.0-beta5": { + "serviceable": true, + "sha512": "UBw3f+fKi4/WHWIz3oTKF5UiLjmfvTiDgU9oCjYYApqKUMIji4VPbgsoqCzEzgXPHpLHDGkBal6Ux0Gcgu15Ig==", + "files": [ + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "dW5gHHlvvNnrFFSGtfOFhKClSi9Eb4WFPVdrrIbZYq2gIVw2Dde740p68H3+v9Fr511sk4yPCkGZ0wqXm1GObw==", + "files": [ + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "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.Binder/1.0.0-beta5": { + "serviceable": true, + "sha512": "xSWVoCC0gtn9h12O/M2Eie6eXehJ0P2ovvGkZU5ZWNh8ycTyisyKrkhAmtObcF0dDdPJO9HXUHbRT5ady9fb8Q==", + "files": [ + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "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.Logging.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "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.NotNullAttribute.Sources/1.0.0-beta5": { + "sha512": "hgETnks4ovIE4ySkFs6mQ+QN195kOIM+3IxgIqQFYtuF9tfNdw1/xkkwm9ip7vUifJlNC4O5d9o7CJ2ou46GyA==", + "files": [ + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "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", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "oK4jCjvQfz1NGBUf73euKqPDhC4aSJ3fkpOrozrOxVL85ToF+QyrD4yWclNCkf0/WnEUjXh6eWsfiEqI9zgODg==", + "files": [ + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml" + ] + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "serviceable": true, + "sha512": "y/2QI2ruRp1Wc3qgIDxQex7ExueFgwd9M5Jw/xJA+tIRuwLlmyDvegDpcBQwqWIanG3pd2Tm5sjcPSTqPLcTyQ==", + "files": [ + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.nuspec", + "lib/dnx451/Microsoft.Framework.WebEncoders.dll", + "lib/dnx451/Microsoft.Framework.WebEncoders.xml", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.xml", + "lib/net45/Microsoft.Framework.WebEncoders.dll", + "lib/net45/Microsoft.Framework.WebEncoders.xml" + ] + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "serviceable": true, + "sha512": "KIwD5E5o4osx5NnSrqppt3W8TDdel2S1mnsdXGZn1N61enxic4v5Al51RPvcbGAPoVPQhru3fFao7FdxmfWGnQ==", + "files": [ + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.Core.nuspec", + "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.Net.Http.Headers/1.0.0-beta5": { + "serviceable": true, + "sha512": "ewp5ueEWtXW+fnzn0QMhTV78gDOHoO/EYgzay6nYzAP92AgaP1r13lTkh1VDpbHaCxm9GWweUkojIWZ196iQUQ==", + "files": [ + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec", + "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.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "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", + "tools/install.ps1" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec", + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec", + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "sha512": "ijnoxLU+SrSf1AItfZOwtnzyx7yEi+WJtKa3d2X93Xf5YHlRsL4RwMZ10M9gLE8E+Rpi3ZJM5wAXi6OFSprDtw==", + "files": [ + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.NonGeneric.nuspec", + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/net46/System.Collections.NonGeneric.dll" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec", + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec", + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._" + ] + }, + "System.Diagnostics.Contracts/4.0.0-beta-23019": { + "sha512": "wi3eWkfN0kZYCHgIaOqRDfJoyl8P8oQLcxZ47ElLDTtOEW0TfGl0wVeqllMg7nMMzR7C1ordTWycpV34yQ7g4Q==", + "files": [ + "System.Diagnostics.Contracts.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Contracts.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec", + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Contracts.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec", + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "sha512": "GB0ki4TLNwFKcT7ZesteTERlZmBytRitEbdD6O1zVwDaeqqY+FZb2/+CH2Q5U1rN7qY9YmM70PxtyPG1t31zkg==", + "files": [ + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Tools.nuspec", + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec", + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec", + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec", + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll" + ] + }, + "System.Globalization.Extensions/4.0.0-beta-23019": { + "sha512": "k3KrctgKowl9Yv8eFbBIrnU/lL5+uUeaoCSJllwXA1XbQaGCLKVIYsMewgwV66UzkDfMU/65d6XhIcGucx9IAg==", + "files": [ + "System.Globalization.Extensions.4.0.0-beta-23019.nupkg", + "System.Globalization.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Extensions.nuspec", + "lib/dotnet/System.Globalization.Extensions.dll", + "lib/net46/System.Globalization.Extensions.dll", + "ref/dotnet/System.Globalization.Extensions.dll", + "ref/net46/System.Globalization.Extensions.dll" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec", + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec", + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec", + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec", + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec", + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "sha512": "YjnsUzXsXx8BdqaXQ2U/hrz4CWdlAfcoYccqO3BSKCpPZPFEbKizEiHR9KJGcqf9gQ4lzRkhlM3xiMIjX27mUQ==", + "files": [ + "runtime.json", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg.sha512", + "System.Linq.Expressions.nuspec", + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll" + ] + }, + "System.Net.Http/4.0.0-beta-23019": { + "sha512": "8mt4X1eIjTMrKVINJuzuFYf7C4GrYFC+tlvc2zH5HtxKPpbFZamMUdJ19ORxZ9ds053aqQASdiha7eH86PN+eg==", + "files": [ + "System.Net.Http.4.0.0-beta-23019.nupkg", + "System.Net.Http.4.0.0-beta-23019.nupkg.sha512", + "System.Net.Http.nuspec", + "lib/DNXCore50/System.Net.Http.dll", + "lib/net45/_._", + "lib/netcore50/System.Net.Http.dll", + "lib/win8/_._", + "ref/dotnet/System.Net.Http.dll", + "ref/net45/_._", + "ref/netcore50/System.Net.Http.dll", + "ref/win8/_._" + ] + }, + "System.Net.Http.WinHttpHandler/4.0.0-beta-23019": { + "sha512": "C6DBRXVzX3+bkWVlUdMVqHMgIiKbZJU6E08R/rSVENmVTGHxQ9NgSwA8yBCreOeV4hcdHIa187kjFA0X6BYSRA==", + "files": [ + "System.Net.Http.WinHttpHandler.4.0.0-beta-23019.nupkg", + "System.Net.Http.WinHttpHandler.4.0.0-beta-23019.nupkg.sha512", + "System.Net.Http.WinHttpHandler.nuspec", + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec", + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._" + ] + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "sha512": "9waIolEiBpjdMWLtTqQxYjpPplVpTlZEzof6C/6/vitUP7DuJrI7wJltEO5ARMPBqyT2Ohke0h1ZpLiRkZQkCw==", + "files": [ + "System.Net.WebSockets.4.0.0-beta-23019.nupkg", + "System.Net.WebSockets.4.0.0-beta-23019.nupkg.sha512", + "System.Net.WebSockets.nuspec", + "lib/DNXCore50/System.Net.WebSockets.dll", + "lib/net46/System.Net.WebSockets.dll", + "ref/dotnet/System.Net.WebSockets.dll", + "ref/net46/System.Net.WebSockets.dll" + ] + }, + "System.ObjectModel/4.0.0-beta-23019": { + "sha512": "shmwP3YgLhSx8+njPPb82OULH+SteCr8fZ6XaQK8dfuB3UCqqUfITYPW1zknMotwsnBZpVPdXFWmwvTE0XTCGA==", + "files": [ + "License.rtf", + "System.ObjectModel.4.0.0-beta-23019.nupkg", + "System.ObjectModel.4.0.0-beta-23019.nupkg.sha512", + "System.ObjectModel.nuspec", + "lib/net45/_._", + "lib/win8/_._", + "ref/dotnet/System.ObjectModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/win8/_._" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec", + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec", + "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.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec", + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "sha512": "FAp9TewUfCxaydPyY5Glv2/3KdxD5vpZ4qgx26OWV6xtytGinnXpHsxownQKKe7WkeqlRjy7s7cRgjTKZ50AQA==", + "files": [ + "System.Reflection.Emit.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.nuspec", + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "sha512": "5OsJjj6G9WY8aV3EWfI03dJoqH0RvILtP2GJ16JQf90pV0kVmgGsFQSqh+lcnnexh4CEje7DDxF748o/8KamWA==", + "files": [ + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec", + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec", + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec", + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "sha512": "5/WcPvsdnw0d8rwwsCgQKoo9oXFQA1gMHtyNcYjelDjaaYC/dYoU7Eo0JdP+0PMgy9FnBOHVjRHOTcJ2HIjefA==", + "files": [ + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec", + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec", + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec", + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec", + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec", + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec", + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec", + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._" + ] + }, + "System.Security.Claims/4.0.0-beta-23019": { + "sha512": "kKseHxGh5pWjM43MZWtub/ZyBWUV3RHNSJuUtTzapeQD2qND6pGGNekMXcxmEZOxrKwFEBAeTlcgmWo/2e6/SQ==", + "files": [ + "System.Security.Claims.4.0.0-beta-23019.nupkg", + "System.Security.Claims.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Claims.nuspec", + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll" + ] + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23019": { + "sha512": "X3lDbzONEsSurqDDApxmA/ybdViY5F1XAWoGV+B8ZlDKOsSiEbBwsPt8MShROlCkPZezUyRpLzg2b8Jd+anIRQ==", + "files": [ + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.Aes.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll", + "lib/net46/System.Security.Cryptography.Encryption.Aes.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll", + "ref/net46/System.Security.Cryptography.Encryption.Aes.dll" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec", + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll" + ] + }, + "System.Security.Principal/4.0.0-beta-23019": { + "sha512": "2zkK0eJOfso/Jo+77NVXDoJRggzL0jM0ayeXz+vD8pK9pIRnhpWJVbaGmT7MPBWW9KbPwtbJyXejpUS2rBflUQ==", + "files": [ + "System.Security.Principal.4.0.0-beta-23019.nupkg", + "System.Security.Principal.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.nuspec", + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "sha512": "FYvKKTbncuJCMnc1TmccsJlGSjIQrUJPymt2R3o5uSV1plyGD9V3san/rpq2IO4kDbHjGrQjEtZlbehwUucB5Q==", + "files": [ + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.Windows.nuspec", + "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.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec", + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec", + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec", + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "sha512": "7gCVMRey2Nji6WDKleSigGBJuy4gMKXGeVqauROuFoTygHNtFYaUTeToGMy7Obsi+tzgnyEYfd+9uY3Ifc/SjA==", + "files": [ + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.RegularExpressions.nuspec", + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/net46/_._" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec", + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec", + "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.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec", + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec", + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec", + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._" + ] + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "sha512": "pyyzY5FFoZziGVDFyO5VLM094cX7jNN+01EsSJEFreje5uzSz6aKwIPgTe/l2CFiXYFoUNr0O6D3GEc8jPmbPg==", + "files": [ + "System.Xml.XDocument.4.0.10-beta-23019.nupkg", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec", + "lib/dotnet/System.Xml.XDocument.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net46/_._" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.Authentication >= 1.0.0-beta5", + "Microsoft.Framework.NotNullAttribute.Sources >= 1.0.0-beta5", + "Newtonsoft.Json >= 6.0.6" + ], + "DNX,Version=v4.5.1": [ + "fx/System.Net.Http.WebRequest ", + "fx/System.Net.Http " + ], + "DNXCore,Version=v5.0": [ + "System.Net.Http.WinHttpHandler >= 4.0.0-beta-23019" + ] + } +} \ No newline at end of file diff --git a/src/Microsoft.AspNet.Authentication.OAuthBearer/project.json b/src/Microsoft.AspNet.Authentication.OAuthBearer/project.json index dff02afcb..bc35b8084 100644 --- a/src/Microsoft.AspNet.Authentication.OAuthBearer/project.json +++ b/src/Microsoft.AspNet.Authentication.OAuthBearer/project.json @@ -1,9 +1,9 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "description": "ASP.NET 5 middleware that enables an application to receive a OAuth bearer token.", "dependencies": { - "Microsoft.AspNet.Authentication": "1.0.0-*", - "Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-*" }, + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-beta5" }, "Microsoft.IdentityModel.Protocol.Extensions": "2.0.0-beta5-*" }, "frameworks": { @@ -15,7 +15,7 @@ }, "dnxcore50": { "dependencies": { - "System.Net.Http.WinHttpHandler": "4.0.0-beta-*" + "System.Net.Http.WinHttpHandler": "4.0.0-beta-23019" } } } diff --git a/src/Microsoft.AspNet.Authentication.OAuthBearer/project.lock.json b/src/Microsoft.AspNet.Authentication.OAuthBearer/project.lock.json new file mode 100644 index 000000000..4bb56565a --- /dev/null +++ b/src/Microsoft.AspNet.Authentication.OAuthBearer/project.lock.json @@ -0,0 +1,2958 @@ +{ + "locked": true, + "version": -9996, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "System.IO", + "System.Security", + "System.Xml", + "System.Xml.Linq", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.IdentityModel.Logging/1.0.0-beta5-206011020": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.IdentityModel.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.IdentityModel.Logging.dll": {} + } + }, + "Microsoft.IdentityModel.Protocol.Extensions/2.0.0-beta5-206011020": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "System.IdentityModel.Tokens": "5.0.0-beta5-206011020", + "Microsoft.IdentityModel.Logging": "1.0.0-beta5-206011020" + }, + "frameworkAssemblies": [ + "System.Net.Http", + "System.IO", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.IdentityModel.Protocol.Extensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.IdentityModel.Protocol.Extensions.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.IdentityModel.Tokens/5.0.0-beta5-206011020": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "Microsoft.IdentityModel.Logging": "1.0.0-beta5-206011020" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/System.IdentityModel.Tokens.dll": {} + }, + "runtime": { + "lib/dnx451/System.IdentityModel.Tokens.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption.Aes": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Linq": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.IdentityModel.Logging/1.0.0-beta5-206011020": { + "dependencies": { + "System.Globalization": "4.0.10-beta-22913", + "System.Diagnostics.Tracing": "4.0.20-beta-22913" + }, + "compile": { + "lib/dnxcore50/Microsoft.IdentityModel.Logging.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.IdentityModel.Logging.dll": {} + } + }, + "Microsoft.IdentityModel.Protocol.Extensions/2.0.0-beta5-206011020": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "System.IdentityModel.Tokens": "5.0.0-beta5-206011020", + "Microsoft.IdentityModel.Logging": "1.0.0-beta5-206011020", + "System.Collections.Specialized": "4.0.0-beta-22913", + "System.Diagnostics.Contracts": "4.0.0-beta-22913", + "System.Globalization": "4.0.10-beta-22913", + "System.IO.FileSystem": "4.0.0-beta-22913", + "System.Net.Http": "4.0.0-beta-22913" + }, + "compile": { + "lib/dnxcore50/Microsoft.IdentityModel.Protocol.Extensions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.IdentityModel.Protocol.Extensions.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Contracts": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IdentityModel.Tokens/5.0.0-beta5-206011020": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "Microsoft.IdentityModel.Logging": "1.0.0-beta5-206011020", + "System.Collections": "4.0.10-beta-22913", + "System.Diagnostics.Tools": "4.0.0-beta-22913", + "System.Globalization": "4.0.10-beta-22913", + "System.IO": "4.0.10-beta-22913", + "System.Runtime.Extensions": "4.0.10-beta-22913", + "System.Runtime.InteropServices": "4.0.20-beta-22913", + "System.Security.Claims": "4.0.0-beta-22913", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-22913", + "System.Security.Cryptography.RSA": "4.0.0-beta-22913", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-22913", + "System.Security.Principal": "4.0.0-beta-22913", + "System.Text.RegularExpressions": "4.0.10-beta-22913", + "System.Threading": "4.0.10-beta-22913" + }, + "compile": { + "lib/dnxcore50/System.IdentityModel.Tokens.dll": {} + }, + "runtime": { + "lib/dnxcore50/System.IdentityModel.Tokens.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.dll": {} + } + }, + "System.Net.Http.WinHttpHandler/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Net.Http": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "serviceable": true, + "sha512": "0aGfwSmbVHhNIQSp6dXqz6sLYD07U9Dgnw8rm/wnQDkLFfJ9iPQKBBTk/Oh/6wGwaSg9Ko7mzXTwILE42HZdZA==", + "files": [ + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.xml" + ] + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "serviceable": true, + "sha512": "nhCP9Q0TSA3F31w+SXoXh5X9zbGRpyGZrkBhid++k673Mxg1uzkDNa18Z0edF7Yiua2ZHZeA/GPkPUG0pzER/A==", + "files": [ + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Cryptography.Internal.nuspec", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.xml" + ] + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "serviceable": true, + "sha512": "f8oqJIyHUbmsIkgEq+A7QQOKr60s4GoewR2I+ItHGuHdwV6ICuNnu4yKSx7v0k/uh51T49ECcrrMApUepuV2mg==", + "files": [ + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.nuspec", + "lib/dnx451/Microsoft.AspNet.DataProtection.dll", + "lib/dnx451/Microsoft.AspNet.DataProtection.xml", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.xml", + "lib/net451/Microsoft.AspNet.DataProtection.dll", + "lib/net451/Microsoft.AspNet.DataProtection.xml" + ] + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ow8W+rMtA0rsiCtvHtUs+f5wrzMj0rtoSjl+vTgtGNQ0Ib+3tsGbKgA9+l5kzGKG6RUebnCK+vXKP/zCXDZOvw==", + "files": [ + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.Abstractions.nuspec", + "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.FeatureModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "M6ltNGrh4gHU+DiMbV074ZDwDQAIYx1SEOlltX7XzKbiDztYuTAtXiv8M/wkjZBeVdkszkE0NPOlMb/pbfww6g==", + "files": [ + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg", + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.FeatureModel.nuspec", + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll", + "lib/dnx451/Microsoft.AspNet.FeatureModel.xml", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.xml" + ] + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "serviceable": true, + "sha512": "Smn8m/xaNcNK4GKTZ5lfkHL4OqKCyxrt5m+1i3Dpe5wjUHR+Z9qGVjcuT/ZTJLfSZBelpP0yKZHFqcgUCMujFw==", + "files": [ + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "vNdZzaCID7R1k93o+N6LQ9d3Lx49bAoSAwslnzhcKXvbSvbHjZ1DRFDngrHIlY/ckcls0MH+j2qePUtuCTb8NQ==", + "files": [ + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec", + "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.Extensions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ai6Q0oPVzBQwpbeMcS585MZEjsYRAmjd+V6zSqutFb0u9IwxLV0ALr9dNT6Fg3/Wf+LSuBxeCfk5FZ5BjfuYqA==", + "files": [ + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec", + "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.Features/1.0.0-beta5": { + "serviceable": true, + "sha512": "jZi6dVWXrN3cABLWjm0Dgh7CIm0VppzDPpUUuOgIIfnr9E4QcG87Xq7s25JIFsXHkInmPH2DSUn5cp6PA9QrIw==", + "files": [ + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "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.WebUtilities/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ieb9JeaI57V2HRWyFsQE+Ioo7jRE7gp8QgmHAgCuc58RfUUvKf3BdmjMMqw+0DfOQMf4VL9xWpj0yQ/bMA1VDA==", + "files": [ + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec", + "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.Framework.Configuration/1.0.0-beta5": { + "serviceable": true, + "sha512": "UBw3f+fKi4/WHWIz3oTKF5UiLjmfvTiDgU9oCjYYApqKUMIji4VPbgsoqCzEzgXPHpLHDGkBal6Ux0Gcgu15Ig==", + "files": [ + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "dW5gHHlvvNnrFFSGtfOFhKClSi9Eb4WFPVdrrIbZYq2gIVw2Dde740p68H3+v9Fr511sk4yPCkGZ0wqXm1GObw==", + "files": [ + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "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.Binder/1.0.0-beta5": { + "serviceable": true, + "sha512": "xSWVoCC0gtn9h12O/M2Eie6eXehJ0P2ovvGkZU5ZWNh8ycTyisyKrkhAmtObcF0dDdPJO9HXUHbRT5ady9fb8Q==", + "files": [ + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "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.Logging.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "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.NotNullAttribute.Sources/1.0.0-beta5": { + "sha512": "hgETnks4ovIE4ySkFs6mQ+QN195kOIM+3IxgIqQFYtuF9tfNdw1/xkkwm9ip7vUifJlNC4O5d9o7CJ2ou46GyA==", + "files": [ + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "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", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "oK4jCjvQfz1NGBUf73euKqPDhC4aSJ3fkpOrozrOxVL85ToF+QyrD4yWclNCkf0/WnEUjXh6eWsfiEqI9zgODg==", + "files": [ + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml" + ] + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "serviceable": true, + "sha512": "y/2QI2ruRp1Wc3qgIDxQex7ExueFgwd9M5Jw/xJA+tIRuwLlmyDvegDpcBQwqWIanG3pd2Tm5sjcPSTqPLcTyQ==", + "files": [ + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.nuspec", + "lib/dnx451/Microsoft.Framework.WebEncoders.dll", + "lib/dnx451/Microsoft.Framework.WebEncoders.xml", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.xml", + "lib/net45/Microsoft.Framework.WebEncoders.dll", + "lib/net45/Microsoft.Framework.WebEncoders.xml" + ] + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "serviceable": true, + "sha512": "KIwD5E5o4osx5NnSrqppt3W8TDdel2S1mnsdXGZn1N61enxic4v5Al51RPvcbGAPoVPQhru3fFao7FdxmfWGnQ==", + "files": [ + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.Core.nuspec", + "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.IdentityModel.Logging/1.0.0-beta5-206011020": { + "serviceable": true, + "sha512": "j9tEQEtYqlfhj3eHq49Oo48398en2HL4nYOhjLXtItaa4Wb03LV8dvjr3JdnJEBpyXOyYJXnzCAwLzcjnISOpw==", + "files": [ + "Microsoft.IdentityModel.Logging.1.0.0-beta5-206011020.nupkg", + "Microsoft.IdentityModel.Logging.1.0.0-beta5-206011020.nupkg.sha512", + "Microsoft.IdentityModel.Logging.nuspec", + "lib/dnx451/Microsoft.IdentityModel.Logging.dll", + "lib/dnx451/Microsoft.IdentityModel.Logging.xml", + "lib/dnxcore50/Microsoft.IdentityModel.Logging.dll", + "lib/dnxcore50/Microsoft.IdentityModel.Logging.xml" + ] + }, + "Microsoft.IdentityModel.Protocol.Extensions/2.0.0-beta5-206011020": { + "serviceable": true, + "sha512": "kOWExUXDJI1rySKc/2zxZyECwR84Rn2u7/QI2d0hwkunsDCiiLu95WCDSPpw2WQjzuGiRWTieL7mt8KN++UJog==", + "files": [ + "Microsoft.IdentityModel.Protocol.Extensions.2.0.0-beta5-206011020.nupkg", + "Microsoft.IdentityModel.Protocol.Extensions.2.0.0-beta5-206011020.nupkg.sha512", + "Microsoft.IdentityModel.Protocol.Extensions.nuspec", + "lib/dnx451/Microsoft.IdentityModel.Protocol.Extensions.dll", + "lib/dnx451/Microsoft.IdentityModel.Protocol.Extensions.xml", + "lib/dnxcore50/Microsoft.IdentityModel.Protocol.Extensions.dll", + "lib/dnxcore50/Microsoft.IdentityModel.Protocol.Extensions.xml" + ] + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "serviceable": true, + "sha512": "ewp5ueEWtXW+fnzn0QMhTV78gDOHoO/EYgzay6nYzAP92AgaP1r13lTkh1VDpbHaCxm9GWweUkojIWZ196iQUQ==", + "files": [ + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec", + "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.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "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", + "tools/install.ps1" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec", + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec", + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "sha512": "ijnoxLU+SrSf1AItfZOwtnzyx7yEi+WJtKa3d2X93Xf5YHlRsL4RwMZ10M9gLE8E+Rpi3ZJM5wAXi6OFSprDtw==", + "files": [ + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.NonGeneric.nuspec", + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/net46/System.Collections.NonGeneric.dll" + ] + }, + "System.Collections.Specialized/4.0.0-beta-23019": { + "sha512": "Z79DO5DQ9Z58p/1n0wW0szP+4UdoJOxGVpX+D3gFXW7g11i+TyZKqg5/OcIjbmgB9RvJkDJBTOs/xtXIu/CZWw==", + "files": [ + "System.Collections.Specialized.4.0.0-beta-23019.nupkg", + "System.Collections.Specialized.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.Specialized.nuspec", + "lib/dotnet/System.Collections.Specialized.dll", + "lib/net46/System.Collections.Specialized.dll", + "ref/dotnet/System.Collections.Specialized.dll", + "ref/net46/System.Collections.Specialized.dll" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec", + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec", + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._" + ] + }, + "System.Diagnostics.Contracts/4.0.0-beta-23019": { + "sha512": "wi3eWkfN0kZYCHgIaOqRDfJoyl8P8oQLcxZ47ElLDTtOEW0TfGl0wVeqllMg7nMMzR7C1ordTWycpV34yQ7g4Q==", + "files": [ + "System.Diagnostics.Contracts.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Contracts.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec", + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Contracts.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec", + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "sha512": "GB0ki4TLNwFKcT7ZesteTERlZmBytRitEbdD6O1zVwDaeqqY+FZb2/+CH2Q5U1rN7qY9YmM70PxtyPG1t31zkg==", + "files": [ + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Tools.nuspec", + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec", + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec", + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec", + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll" + ] + }, + "System.Globalization.Extensions/4.0.0-beta-23019": { + "sha512": "k3KrctgKowl9Yv8eFbBIrnU/lL5+uUeaoCSJllwXA1XbQaGCLKVIYsMewgwV66UzkDfMU/65d6XhIcGucx9IAg==", + "files": [ + "System.Globalization.Extensions.4.0.0-beta-23019.nupkg", + "System.Globalization.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Extensions.nuspec", + "lib/dotnet/System.Globalization.Extensions.dll", + "lib/net46/System.Globalization.Extensions.dll", + "ref/dotnet/System.Globalization.Extensions.dll", + "ref/net46/System.Globalization.Extensions.dll" + ] + }, + "System.IdentityModel.Tokens/5.0.0-beta5-206011020": { + "serviceable": true, + "sha512": "KCAG0ne31aJxRcHI5rVY7002bvXG9evX85mmWFe42+YcZ1tIvwlUL6c3C+f+wbL4/Q3vqeVUwD+iX4MZSrtSHQ==", + "files": [ + "System.IdentityModel.Tokens.5.0.0-beta5-206011020.nupkg", + "System.IdentityModel.Tokens.5.0.0-beta5-206011020.nupkg.sha512", + "System.IdentityModel.Tokens.nuspec", + "lib/dnx451/System.IdentityModel.Tokens.dll", + "lib/dnx451/System.IdentityModel.Tokens.xml", + "lib/dnxcore50/System.IdentityModel.Tokens.dll", + "lib/dnxcore50/System.IdentityModel.Tokens.xml" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec", + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec", + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec", + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec", + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec", + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "sha512": "YjnsUzXsXx8BdqaXQ2U/hrz4CWdlAfcoYccqO3BSKCpPZPFEbKizEiHR9KJGcqf9gQ4lzRkhlM3xiMIjX27mUQ==", + "files": [ + "runtime.json", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg.sha512", + "System.Linq.Expressions.nuspec", + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll" + ] + }, + "System.Net.Http/4.0.0-beta-23019": { + "sha512": "8mt4X1eIjTMrKVINJuzuFYf7C4GrYFC+tlvc2zH5HtxKPpbFZamMUdJ19ORxZ9ds053aqQASdiha7eH86PN+eg==", + "files": [ + "System.Net.Http.4.0.0-beta-23019.nupkg", + "System.Net.Http.4.0.0-beta-23019.nupkg.sha512", + "System.Net.Http.nuspec", + "lib/DNXCore50/System.Net.Http.dll", + "lib/net45/_._", + "lib/netcore50/System.Net.Http.dll", + "lib/win8/_._", + "ref/dotnet/System.Net.Http.dll", + "ref/net45/_._", + "ref/netcore50/System.Net.Http.dll", + "ref/win8/_._" + ] + }, + "System.Net.Http.WinHttpHandler/4.0.0-beta-23019": { + "sha512": "C6DBRXVzX3+bkWVlUdMVqHMgIiKbZJU6E08R/rSVENmVTGHxQ9NgSwA8yBCreOeV4hcdHIa187kjFA0X6BYSRA==", + "files": [ + "System.Net.Http.WinHttpHandler.4.0.0-beta-23019.nupkg", + "System.Net.Http.WinHttpHandler.4.0.0-beta-23019.nupkg.sha512", + "System.Net.Http.WinHttpHandler.nuspec", + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec", + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._" + ] + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "sha512": "9waIolEiBpjdMWLtTqQxYjpPplVpTlZEzof6C/6/vitUP7DuJrI7wJltEO5ARMPBqyT2Ohke0h1ZpLiRkZQkCw==", + "files": [ + "System.Net.WebSockets.4.0.0-beta-23019.nupkg", + "System.Net.WebSockets.4.0.0-beta-23019.nupkg.sha512", + "System.Net.WebSockets.nuspec", + "lib/DNXCore50/System.Net.WebSockets.dll", + "lib/net46/System.Net.WebSockets.dll", + "ref/dotnet/System.Net.WebSockets.dll", + "ref/net46/System.Net.WebSockets.dll" + ] + }, + "System.ObjectModel/4.0.0-beta-23019": { + "sha512": "shmwP3YgLhSx8+njPPb82OULH+SteCr8fZ6XaQK8dfuB3UCqqUfITYPW1zknMotwsnBZpVPdXFWmwvTE0XTCGA==", + "files": [ + "License.rtf", + "System.ObjectModel.4.0.0-beta-23019.nupkg", + "System.ObjectModel.4.0.0-beta-23019.nupkg.sha512", + "System.ObjectModel.nuspec", + "lib/net45/_._", + "lib/win8/_._", + "ref/dotnet/System.ObjectModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/win8/_._" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec", + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec", + "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.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec", + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "sha512": "FAp9TewUfCxaydPyY5Glv2/3KdxD5vpZ4qgx26OWV6xtytGinnXpHsxownQKKe7WkeqlRjy7s7cRgjTKZ50AQA==", + "files": [ + "System.Reflection.Emit.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.nuspec", + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "sha512": "5OsJjj6G9WY8aV3EWfI03dJoqH0RvILtP2GJ16JQf90pV0kVmgGsFQSqh+lcnnexh4CEje7DDxF748o/8KamWA==", + "files": [ + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec", + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec", + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec", + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "sha512": "5/WcPvsdnw0d8rwwsCgQKoo9oXFQA1gMHtyNcYjelDjaaYC/dYoU7Eo0JdP+0PMgy9FnBOHVjRHOTcJ2HIjefA==", + "files": [ + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec", + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec", + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec", + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec", + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec", + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec", + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec", + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._" + ] + }, + "System.Security.Claims/4.0.0-beta-23019": { + "sha512": "kKseHxGh5pWjM43MZWtub/ZyBWUV3RHNSJuUtTzapeQD2qND6pGGNekMXcxmEZOxrKwFEBAeTlcgmWo/2e6/SQ==", + "files": [ + "System.Security.Claims.4.0.0-beta-23019.nupkg", + "System.Security.Claims.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Claims.nuspec", + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll" + ] + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23019": { + "sha512": "X3lDbzONEsSurqDDApxmA/ybdViY5F1XAWoGV+B8ZlDKOsSiEbBwsPt8MShROlCkPZezUyRpLzg2b8Jd+anIRQ==", + "files": [ + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.Aes.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll", + "lib/net46/System.Security.Cryptography.Encryption.Aes.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll", + "ref/net46/System.Security.Cryptography.Encryption.Aes.dll" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec", + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll" + ] + }, + "System.Security.Principal/4.0.0-beta-23019": { + "sha512": "2zkK0eJOfso/Jo+77NVXDoJRggzL0jM0ayeXz+vD8pK9pIRnhpWJVbaGmT7MPBWW9KbPwtbJyXejpUS2rBflUQ==", + "files": [ + "System.Security.Principal.4.0.0-beta-23019.nupkg", + "System.Security.Principal.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.nuspec", + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "sha512": "FYvKKTbncuJCMnc1TmccsJlGSjIQrUJPymt2R3o5uSV1plyGD9V3san/rpq2IO4kDbHjGrQjEtZlbehwUucB5Q==", + "files": [ + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.Windows.nuspec", + "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.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec", + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec", + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec", + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "sha512": "7gCVMRey2Nji6WDKleSigGBJuy4gMKXGeVqauROuFoTygHNtFYaUTeToGMy7Obsi+tzgnyEYfd+9uY3Ifc/SjA==", + "files": [ + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.RegularExpressions.nuspec", + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/net46/_._" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec", + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec", + "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.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec", + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec", + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec", + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._" + ] + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "sha512": "pyyzY5FFoZziGVDFyO5VLM094cX7jNN+01EsSJEFreje5uzSz6aKwIPgTe/l2CFiXYFoUNr0O6D3GEc8jPmbPg==", + "files": [ + "System.Xml.XDocument.4.0.10-beta-23019.nupkg", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec", + "lib/dotnet/System.Xml.XDocument.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net46/_._" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.Authentication >= 1.0.0-beta5", + "Microsoft.Framework.NotNullAttribute.Sources >= 1.0.0-beta5", + "Microsoft.IdentityModel.Protocol.Extensions >= 2.0.0-beta5-*" + ], + "DNX,Version=v4.5.1": [ + "fx/System.Net.Http.WebRequest ", + "fx/System.Net.Http " + ], + "DNXCore,Version=v5.0": [ + "System.Net.Http.WinHttpHandler >= 4.0.0-beta-23019" + ] + } +} \ No newline at end of file diff --git a/src/Microsoft.AspNet.Authentication.OpenIdConnect/project.json b/src/Microsoft.AspNet.Authentication.OpenIdConnect/project.json index 0bf9f2d9e..c7642e6da 100644 --- a/src/Microsoft.AspNet.Authentication.OpenIdConnect/project.json +++ b/src/Microsoft.AspNet.Authentication.OpenIdConnect/project.json @@ -1,9 +1,9 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "description": "ASP.NET 5 middleware that enables an application to support OpenIdConnect authentication workflow.", "dependencies": { - "Microsoft.AspNet.Authentication": "1.0.0-*", - "Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-*" }, + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-beta5" }, "Microsoft.IdentityModel.Protocol.Extensions": "2.0.0-beta5-*" }, "frameworks": { @@ -15,8 +15,8 @@ }, "dnxcore50": { "dependencies": { - "System.Collections.Specialized": "4.0.0-beta-*", - "System.Net.Http.WinHttpHandler": "4.0.0-beta-*" + "System.Collections.Specialized": "4.0.0-beta-23019", + "System.Net.Http.WinHttpHandler": "4.0.0-beta-23019" } } } diff --git a/src/Microsoft.AspNet.Authentication.OpenIdConnect/project.lock.json b/src/Microsoft.AspNet.Authentication.OpenIdConnect/project.lock.json new file mode 100644 index 000000000..53fa3dde0 --- /dev/null +++ b/src/Microsoft.AspNet.Authentication.OpenIdConnect/project.lock.json @@ -0,0 +1,2959 @@ +{ + "locked": true, + "version": -9996, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "System.IO", + "System.Security", + "System.Xml", + "System.Xml.Linq", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.IdentityModel.Logging/1.0.0-beta5-206011020": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.IdentityModel.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.IdentityModel.Logging.dll": {} + } + }, + "Microsoft.IdentityModel.Protocol.Extensions/2.0.0-beta5-206011020": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "System.IdentityModel.Tokens": "5.0.0-beta5-206011020", + "Microsoft.IdentityModel.Logging": "1.0.0-beta5-206011020" + }, + "frameworkAssemblies": [ + "System.Net.Http", + "System.IO", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.IdentityModel.Protocol.Extensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.IdentityModel.Protocol.Extensions.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.IdentityModel.Tokens/5.0.0-beta5-206011020": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "Microsoft.IdentityModel.Logging": "1.0.0-beta5-206011020" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/System.IdentityModel.Tokens.dll": {} + }, + "runtime": { + "lib/dnx451/System.IdentityModel.Tokens.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption.Aes": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Linq": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.IdentityModel.Logging/1.0.0-beta5-206011020": { + "dependencies": { + "System.Globalization": "4.0.10-beta-22913", + "System.Diagnostics.Tracing": "4.0.20-beta-22913" + }, + "compile": { + "lib/dnxcore50/Microsoft.IdentityModel.Logging.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.IdentityModel.Logging.dll": {} + } + }, + "Microsoft.IdentityModel.Protocol.Extensions/2.0.0-beta5-206011020": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "System.IdentityModel.Tokens": "5.0.0-beta5-206011020", + "Microsoft.IdentityModel.Logging": "1.0.0-beta5-206011020", + "System.Collections.Specialized": "4.0.0-beta-22913", + "System.Diagnostics.Contracts": "4.0.0-beta-22913", + "System.Globalization": "4.0.10-beta-22913", + "System.IO.FileSystem": "4.0.0-beta-22913", + "System.Net.Http": "4.0.0-beta-22913" + }, + "compile": { + "lib/dnxcore50/Microsoft.IdentityModel.Protocol.Extensions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.IdentityModel.Protocol.Extensions.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Contracts": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IdentityModel.Tokens/5.0.0-beta5-206011020": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "Microsoft.IdentityModel.Logging": "1.0.0-beta5-206011020", + "System.Collections": "4.0.10-beta-22913", + "System.Diagnostics.Tools": "4.0.0-beta-22913", + "System.Globalization": "4.0.10-beta-22913", + "System.IO": "4.0.10-beta-22913", + "System.Runtime.Extensions": "4.0.10-beta-22913", + "System.Runtime.InteropServices": "4.0.20-beta-22913", + "System.Security.Claims": "4.0.0-beta-22913", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-22913", + "System.Security.Cryptography.RSA": "4.0.0-beta-22913", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-22913", + "System.Security.Principal": "4.0.0-beta-22913", + "System.Text.RegularExpressions": "4.0.10-beta-22913", + "System.Threading": "4.0.10-beta-22913" + }, + "compile": { + "lib/dnxcore50/System.IdentityModel.Tokens.dll": {} + }, + "runtime": { + "lib/dnxcore50/System.IdentityModel.Tokens.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.dll": {} + } + }, + "System.Net.Http.WinHttpHandler/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Net.Http": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "serviceable": true, + "sha512": "0aGfwSmbVHhNIQSp6dXqz6sLYD07U9Dgnw8rm/wnQDkLFfJ9iPQKBBTk/Oh/6wGwaSg9Ko7mzXTwILE42HZdZA==", + "files": [ + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.xml" + ] + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "serviceable": true, + "sha512": "nhCP9Q0TSA3F31w+SXoXh5X9zbGRpyGZrkBhid++k673Mxg1uzkDNa18Z0edF7Yiua2ZHZeA/GPkPUG0pzER/A==", + "files": [ + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Cryptography.Internal.nuspec", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.xml" + ] + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "serviceable": true, + "sha512": "f8oqJIyHUbmsIkgEq+A7QQOKr60s4GoewR2I+ItHGuHdwV6ICuNnu4yKSx7v0k/uh51T49ECcrrMApUepuV2mg==", + "files": [ + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.nuspec", + "lib/dnx451/Microsoft.AspNet.DataProtection.dll", + "lib/dnx451/Microsoft.AspNet.DataProtection.xml", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.xml", + "lib/net451/Microsoft.AspNet.DataProtection.dll", + "lib/net451/Microsoft.AspNet.DataProtection.xml" + ] + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ow8W+rMtA0rsiCtvHtUs+f5wrzMj0rtoSjl+vTgtGNQ0Ib+3tsGbKgA9+l5kzGKG6RUebnCK+vXKP/zCXDZOvw==", + "files": [ + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.Abstractions.nuspec", + "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.FeatureModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "M6ltNGrh4gHU+DiMbV074ZDwDQAIYx1SEOlltX7XzKbiDztYuTAtXiv8M/wkjZBeVdkszkE0NPOlMb/pbfww6g==", + "files": [ + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg", + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.FeatureModel.nuspec", + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll", + "lib/dnx451/Microsoft.AspNet.FeatureModel.xml", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.xml" + ] + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "serviceable": true, + "sha512": "Smn8m/xaNcNK4GKTZ5lfkHL4OqKCyxrt5m+1i3Dpe5wjUHR+Z9qGVjcuT/ZTJLfSZBelpP0yKZHFqcgUCMujFw==", + "files": [ + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "vNdZzaCID7R1k93o+N6LQ9d3Lx49bAoSAwslnzhcKXvbSvbHjZ1DRFDngrHIlY/ckcls0MH+j2qePUtuCTb8NQ==", + "files": [ + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec", + "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.Extensions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ai6Q0oPVzBQwpbeMcS585MZEjsYRAmjd+V6zSqutFb0u9IwxLV0ALr9dNT6Fg3/Wf+LSuBxeCfk5FZ5BjfuYqA==", + "files": [ + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec", + "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.Features/1.0.0-beta5": { + "serviceable": true, + "sha512": "jZi6dVWXrN3cABLWjm0Dgh7CIm0VppzDPpUUuOgIIfnr9E4QcG87Xq7s25JIFsXHkInmPH2DSUn5cp6PA9QrIw==", + "files": [ + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "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.WebUtilities/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ieb9JeaI57V2HRWyFsQE+Ioo7jRE7gp8QgmHAgCuc58RfUUvKf3BdmjMMqw+0DfOQMf4VL9xWpj0yQ/bMA1VDA==", + "files": [ + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec", + "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.Framework.Configuration/1.0.0-beta5": { + "serviceable": true, + "sha512": "UBw3f+fKi4/WHWIz3oTKF5UiLjmfvTiDgU9oCjYYApqKUMIji4VPbgsoqCzEzgXPHpLHDGkBal6Ux0Gcgu15Ig==", + "files": [ + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "dW5gHHlvvNnrFFSGtfOFhKClSi9Eb4WFPVdrrIbZYq2gIVw2Dde740p68H3+v9Fr511sk4yPCkGZ0wqXm1GObw==", + "files": [ + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "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.Binder/1.0.0-beta5": { + "serviceable": true, + "sha512": "xSWVoCC0gtn9h12O/M2Eie6eXehJ0P2ovvGkZU5ZWNh8ycTyisyKrkhAmtObcF0dDdPJO9HXUHbRT5ady9fb8Q==", + "files": [ + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "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.Logging.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "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.NotNullAttribute.Sources/1.0.0-beta5": { + "sha512": "hgETnks4ovIE4ySkFs6mQ+QN195kOIM+3IxgIqQFYtuF9tfNdw1/xkkwm9ip7vUifJlNC4O5d9o7CJ2ou46GyA==", + "files": [ + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "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", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "oK4jCjvQfz1NGBUf73euKqPDhC4aSJ3fkpOrozrOxVL85ToF+QyrD4yWclNCkf0/WnEUjXh6eWsfiEqI9zgODg==", + "files": [ + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml" + ] + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "serviceable": true, + "sha512": "y/2QI2ruRp1Wc3qgIDxQex7ExueFgwd9M5Jw/xJA+tIRuwLlmyDvegDpcBQwqWIanG3pd2Tm5sjcPSTqPLcTyQ==", + "files": [ + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.nuspec", + "lib/dnx451/Microsoft.Framework.WebEncoders.dll", + "lib/dnx451/Microsoft.Framework.WebEncoders.xml", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.xml", + "lib/net45/Microsoft.Framework.WebEncoders.dll", + "lib/net45/Microsoft.Framework.WebEncoders.xml" + ] + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "serviceable": true, + "sha512": "KIwD5E5o4osx5NnSrqppt3W8TDdel2S1mnsdXGZn1N61enxic4v5Al51RPvcbGAPoVPQhru3fFao7FdxmfWGnQ==", + "files": [ + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.Core.nuspec", + "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.IdentityModel.Logging/1.0.0-beta5-206011020": { + "serviceable": true, + "sha512": "j9tEQEtYqlfhj3eHq49Oo48398en2HL4nYOhjLXtItaa4Wb03LV8dvjr3JdnJEBpyXOyYJXnzCAwLzcjnISOpw==", + "files": [ + "Microsoft.IdentityModel.Logging.1.0.0-beta5-206011020.nupkg", + "Microsoft.IdentityModel.Logging.1.0.0-beta5-206011020.nupkg.sha512", + "Microsoft.IdentityModel.Logging.nuspec", + "lib/dnx451/Microsoft.IdentityModel.Logging.dll", + "lib/dnx451/Microsoft.IdentityModel.Logging.xml", + "lib/dnxcore50/Microsoft.IdentityModel.Logging.dll", + "lib/dnxcore50/Microsoft.IdentityModel.Logging.xml" + ] + }, + "Microsoft.IdentityModel.Protocol.Extensions/2.0.0-beta5-206011020": { + "serviceable": true, + "sha512": "kOWExUXDJI1rySKc/2zxZyECwR84Rn2u7/QI2d0hwkunsDCiiLu95WCDSPpw2WQjzuGiRWTieL7mt8KN++UJog==", + "files": [ + "Microsoft.IdentityModel.Protocol.Extensions.2.0.0-beta5-206011020.nupkg", + "Microsoft.IdentityModel.Protocol.Extensions.2.0.0-beta5-206011020.nupkg.sha512", + "Microsoft.IdentityModel.Protocol.Extensions.nuspec", + "lib/dnx451/Microsoft.IdentityModel.Protocol.Extensions.dll", + "lib/dnx451/Microsoft.IdentityModel.Protocol.Extensions.xml", + "lib/dnxcore50/Microsoft.IdentityModel.Protocol.Extensions.dll", + "lib/dnxcore50/Microsoft.IdentityModel.Protocol.Extensions.xml" + ] + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "serviceable": true, + "sha512": "ewp5ueEWtXW+fnzn0QMhTV78gDOHoO/EYgzay6nYzAP92AgaP1r13lTkh1VDpbHaCxm9GWweUkojIWZ196iQUQ==", + "files": [ + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec", + "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.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "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", + "tools/install.ps1" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec", + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec", + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "sha512": "ijnoxLU+SrSf1AItfZOwtnzyx7yEi+WJtKa3d2X93Xf5YHlRsL4RwMZ10M9gLE8E+Rpi3ZJM5wAXi6OFSprDtw==", + "files": [ + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.NonGeneric.nuspec", + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/net46/System.Collections.NonGeneric.dll" + ] + }, + "System.Collections.Specialized/4.0.0-beta-23019": { + "sha512": "Z79DO5DQ9Z58p/1n0wW0szP+4UdoJOxGVpX+D3gFXW7g11i+TyZKqg5/OcIjbmgB9RvJkDJBTOs/xtXIu/CZWw==", + "files": [ + "System.Collections.Specialized.4.0.0-beta-23019.nupkg", + "System.Collections.Specialized.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.Specialized.nuspec", + "lib/dotnet/System.Collections.Specialized.dll", + "lib/net46/System.Collections.Specialized.dll", + "ref/dotnet/System.Collections.Specialized.dll", + "ref/net46/System.Collections.Specialized.dll" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec", + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec", + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._" + ] + }, + "System.Diagnostics.Contracts/4.0.0-beta-23019": { + "sha512": "wi3eWkfN0kZYCHgIaOqRDfJoyl8P8oQLcxZ47ElLDTtOEW0TfGl0wVeqllMg7nMMzR7C1ordTWycpV34yQ7g4Q==", + "files": [ + "System.Diagnostics.Contracts.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Contracts.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec", + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Contracts.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec", + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "sha512": "GB0ki4TLNwFKcT7ZesteTERlZmBytRitEbdD6O1zVwDaeqqY+FZb2/+CH2Q5U1rN7qY9YmM70PxtyPG1t31zkg==", + "files": [ + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Tools.nuspec", + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec", + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec", + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec", + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll" + ] + }, + "System.Globalization.Extensions/4.0.0-beta-23019": { + "sha512": "k3KrctgKowl9Yv8eFbBIrnU/lL5+uUeaoCSJllwXA1XbQaGCLKVIYsMewgwV66UzkDfMU/65d6XhIcGucx9IAg==", + "files": [ + "System.Globalization.Extensions.4.0.0-beta-23019.nupkg", + "System.Globalization.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Extensions.nuspec", + "lib/dotnet/System.Globalization.Extensions.dll", + "lib/net46/System.Globalization.Extensions.dll", + "ref/dotnet/System.Globalization.Extensions.dll", + "ref/net46/System.Globalization.Extensions.dll" + ] + }, + "System.IdentityModel.Tokens/5.0.0-beta5-206011020": { + "serviceable": true, + "sha512": "KCAG0ne31aJxRcHI5rVY7002bvXG9evX85mmWFe42+YcZ1tIvwlUL6c3C+f+wbL4/Q3vqeVUwD+iX4MZSrtSHQ==", + "files": [ + "System.IdentityModel.Tokens.5.0.0-beta5-206011020.nupkg", + "System.IdentityModel.Tokens.5.0.0-beta5-206011020.nupkg.sha512", + "System.IdentityModel.Tokens.nuspec", + "lib/dnx451/System.IdentityModel.Tokens.dll", + "lib/dnx451/System.IdentityModel.Tokens.xml", + "lib/dnxcore50/System.IdentityModel.Tokens.dll", + "lib/dnxcore50/System.IdentityModel.Tokens.xml" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec", + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec", + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec", + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec", + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec", + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "sha512": "YjnsUzXsXx8BdqaXQ2U/hrz4CWdlAfcoYccqO3BSKCpPZPFEbKizEiHR9KJGcqf9gQ4lzRkhlM3xiMIjX27mUQ==", + "files": [ + "runtime.json", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg.sha512", + "System.Linq.Expressions.nuspec", + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll" + ] + }, + "System.Net.Http/4.0.0-beta-23019": { + "sha512": "8mt4X1eIjTMrKVINJuzuFYf7C4GrYFC+tlvc2zH5HtxKPpbFZamMUdJ19ORxZ9ds053aqQASdiha7eH86PN+eg==", + "files": [ + "System.Net.Http.4.0.0-beta-23019.nupkg", + "System.Net.Http.4.0.0-beta-23019.nupkg.sha512", + "System.Net.Http.nuspec", + "lib/DNXCore50/System.Net.Http.dll", + "lib/net45/_._", + "lib/netcore50/System.Net.Http.dll", + "lib/win8/_._", + "ref/dotnet/System.Net.Http.dll", + "ref/net45/_._", + "ref/netcore50/System.Net.Http.dll", + "ref/win8/_._" + ] + }, + "System.Net.Http.WinHttpHandler/4.0.0-beta-23019": { + "sha512": "C6DBRXVzX3+bkWVlUdMVqHMgIiKbZJU6E08R/rSVENmVTGHxQ9NgSwA8yBCreOeV4hcdHIa187kjFA0X6BYSRA==", + "files": [ + "System.Net.Http.WinHttpHandler.4.0.0-beta-23019.nupkg", + "System.Net.Http.WinHttpHandler.4.0.0-beta-23019.nupkg.sha512", + "System.Net.Http.WinHttpHandler.nuspec", + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec", + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._" + ] + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "sha512": "9waIolEiBpjdMWLtTqQxYjpPplVpTlZEzof6C/6/vitUP7DuJrI7wJltEO5ARMPBqyT2Ohke0h1ZpLiRkZQkCw==", + "files": [ + "System.Net.WebSockets.4.0.0-beta-23019.nupkg", + "System.Net.WebSockets.4.0.0-beta-23019.nupkg.sha512", + "System.Net.WebSockets.nuspec", + "lib/DNXCore50/System.Net.WebSockets.dll", + "lib/net46/System.Net.WebSockets.dll", + "ref/dotnet/System.Net.WebSockets.dll", + "ref/net46/System.Net.WebSockets.dll" + ] + }, + "System.ObjectModel/4.0.0-beta-23019": { + "sha512": "shmwP3YgLhSx8+njPPb82OULH+SteCr8fZ6XaQK8dfuB3UCqqUfITYPW1zknMotwsnBZpVPdXFWmwvTE0XTCGA==", + "files": [ + "License.rtf", + "System.ObjectModel.4.0.0-beta-23019.nupkg", + "System.ObjectModel.4.0.0-beta-23019.nupkg.sha512", + "System.ObjectModel.nuspec", + "lib/net45/_._", + "lib/win8/_._", + "ref/dotnet/System.ObjectModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/win8/_._" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec", + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec", + "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.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec", + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "sha512": "FAp9TewUfCxaydPyY5Glv2/3KdxD5vpZ4qgx26OWV6xtytGinnXpHsxownQKKe7WkeqlRjy7s7cRgjTKZ50AQA==", + "files": [ + "System.Reflection.Emit.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.nuspec", + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "sha512": "5OsJjj6G9WY8aV3EWfI03dJoqH0RvILtP2GJ16JQf90pV0kVmgGsFQSqh+lcnnexh4CEje7DDxF748o/8KamWA==", + "files": [ + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec", + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec", + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec", + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "sha512": "5/WcPvsdnw0d8rwwsCgQKoo9oXFQA1gMHtyNcYjelDjaaYC/dYoU7Eo0JdP+0PMgy9FnBOHVjRHOTcJ2HIjefA==", + "files": [ + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec", + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec", + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec", + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec", + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec", + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec", + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec", + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._" + ] + }, + "System.Security.Claims/4.0.0-beta-23019": { + "sha512": "kKseHxGh5pWjM43MZWtub/ZyBWUV3RHNSJuUtTzapeQD2qND6pGGNekMXcxmEZOxrKwFEBAeTlcgmWo/2e6/SQ==", + "files": [ + "System.Security.Claims.4.0.0-beta-23019.nupkg", + "System.Security.Claims.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Claims.nuspec", + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll" + ] + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23019": { + "sha512": "X3lDbzONEsSurqDDApxmA/ybdViY5F1XAWoGV+B8ZlDKOsSiEbBwsPt8MShROlCkPZezUyRpLzg2b8Jd+anIRQ==", + "files": [ + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.Aes.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll", + "lib/net46/System.Security.Cryptography.Encryption.Aes.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll", + "ref/net46/System.Security.Cryptography.Encryption.Aes.dll" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec", + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll" + ] + }, + "System.Security.Principal/4.0.0-beta-23019": { + "sha512": "2zkK0eJOfso/Jo+77NVXDoJRggzL0jM0ayeXz+vD8pK9pIRnhpWJVbaGmT7MPBWW9KbPwtbJyXejpUS2rBflUQ==", + "files": [ + "System.Security.Principal.4.0.0-beta-23019.nupkg", + "System.Security.Principal.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.nuspec", + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "sha512": "FYvKKTbncuJCMnc1TmccsJlGSjIQrUJPymt2R3o5uSV1plyGD9V3san/rpq2IO4kDbHjGrQjEtZlbehwUucB5Q==", + "files": [ + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.Windows.nuspec", + "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.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec", + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec", + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec", + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "sha512": "7gCVMRey2Nji6WDKleSigGBJuy4gMKXGeVqauROuFoTygHNtFYaUTeToGMy7Obsi+tzgnyEYfd+9uY3Ifc/SjA==", + "files": [ + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.RegularExpressions.nuspec", + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/net46/_._" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec", + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec", + "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.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec", + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec", + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec", + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._" + ] + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "sha512": "pyyzY5FFoZziGVDFyO5VLM094cX7jNN+01EsSJEFreje5uzSz6aKwIPgTe/l2CFiXYFoUNr0O6D3GEc8jPmbPg==", + "files": [ + "System.Xml.XDocument.4.0.10-beta-23019.nupkg", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec", + "lib/dotnet/System.Xml.XDocument.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net46/_._" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.Authentication >= 1.0.0-beta5", + "Microsoft.Framework.NotNullAttribute.Sources >= 1.0.0-beta5", + "Microsoft.IdentityModel.Protocol.Extensions >= 2.0.0-beta5-*" + ], + "DNX,Version=v4.5.1": [ + "fx/System.Net.Http ", + "fx/System.Net.Http.WebRequest " + ], + "DNXCore,Version=v5.0": [ + "System.Collections.Specialized >= 4.0.0-beta-23019", + "System.Net.Http.WinHttpHandler >= 4.0.0-beta-23019" + ] + } +} \ No newline at end of file diff --git a/src/Microsoft.AspNet.Authentication.Twitter/project.json b/src/Microsoft.AspNet.Authentication.Twitter/project.json index 6b2ddf521..a8b77187f 100644 --- a/src/Microsoft.AspNet.Authentication.Twitter/project.json +++ b/src/Microsoft.AspNet.Authentication.Twitter/project.json @@ -1,9 +1,9 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "description": "ASP.NET 5 middleware that enables an application to support Twitter's OAuth 2.0 authentication workflow.", "dependencies": { - "Microsoft.AspNet.Authentication": "1.0.0-*", - "Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-*" } + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-beta5" } }, "frameworks": { "dnx451": { @@ -14,8 +14,8 @@ }, "dnxcore50": { "dependencies": { - "System.Net.Http.WinHttpHandler": "4.0.0-beta-*", - "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-*" + "System.Net.Http.WinHttpHandler": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019" } } } diff --git a/src/Microsoft.AspNet.Authentication.Twitter/project.lock.json b/src/Microsoft.AspNet.Authentication.Twitter/project.lock.json new file mode 100644 index 000000000..1b46247cf --- /dev/null +++ b/src/Microsoft.AspNet.Authentication.Twitter/project.lock.json @@ -0,0 +1,2788 @@ +{ + "locked": true, + "version": -9996, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Authentication.Twitter/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "System.Net.Http.WebRequest", + "System.Net.Http", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.Twitter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.Twitter.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "System.IO", + "System.Security", + "System.Xml", + "System.Xml.Linq", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Authentication.Twitter/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "System.Net.Http.WinHttpHandler": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.Twitter.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.Twitter.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption.Aes": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Linq": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Contracts": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Http/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.dll": {} + } + }, + "System.Net.Http.WinHttpHandler/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Net.Http": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "serviceable": true, + "sha512": "0aGfwSmbVHhNIQSp6dXqz6sLYD07U9Dgnw8rm/wnQDkLFfJ9iPQKBBTk/Oh/6wGwaSg9Ko7mzXTwILE42HZdZA==", + "files": [ + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.xml" + ] + }, + "Microsoft.AspNet.Authentication.Twitter/1.0.0-beta5": { + "serviceable": true, + "sha512": "kyXpMJ3kKloDCa5t9SHtM9bTuAwjF4UoNWtarfOVztyJdPOXEQue1XgbGrXgAnqSCsl2PQPELQDKWCuGX7GTUA==", + "files": [ + "Microsoft.AspNet.Authentication.Twitter.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.Twitter.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.Twitter.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.Twitter.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.Twitter.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Twitter.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Twitter.xml" + ] + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "serviceable": true, + "sha512": "nhCP9Q0TSA3F31w+SXoXh5X9zbGRpyGZrkBhid++k673Mxg1uzkDNa18Z0edF7Yiua2ZHZeA/GPkPUG0pzER/A==", + "files": [ + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Cryptography.Internal.nuspec", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.xml" + ] + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "serviceable": true, + "sha512": "f8oqJIyHUbmsIkgEq+A7QQOKr60s4GoewR2I+ItHGuHdwV6ICuNnu4yKSx7v0k/uh51T49ECcrrMApUepuV2mg==", + "files": [ + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.nuspec", + "lib/dnx451/Microsoft.AspNet.DataProtection.dll", + "lib/dnx451/Microsoft.AspNet.DataProtection.xml", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.xml", + "lib/net451/Microsoft.AspNet.DataProtection.dll", + "lib/net451/Microsoft.AspNet.DataProtection.xml" + ] + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ow8W+rMtA0rsiCtvHtUs+f5wrzMj0rtoSjl+vTgtGNQ0Ib+3tsGbKgA9+l5kzGKG6RUebnCK+vXKP/zCXDZOvw==", + "files": [ + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.Abstractions.nuspec", + "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.FeatureModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "M6ltNGrh4gHU+DiMbV074ZDwDQAIYx1SEOlltX7XzKbiDztYuTAtXiv8M/wkjZBeVdkszkE0NPOlMb/pbfww6g==", + "files": [ + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg", + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.FeatureModel.nuspec", + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll", + "lib/dnx451/Microsoft.AspNet.FeatureModel.xml", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.xml" + ] + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "serviceable": true, + "sha512": "Smn8m/xaNcNK4GKTZ5lfkHL4OqKCyxrt5m+1i3Dpe5wjUHR+Z9qGVjcuT/ZTJLfSZBelpP0yKZHFqcgUCMujFw==", + "files": [ + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "vNdZzaCID7R1k93o+N6LQ9d3Lx49bAoSAwslnzhcKXvbSvbHjZ1DRFDngrHIlY/ckcls0MH+j2qePUtuCTb8NQ==", + "files": [ + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec", + "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.Extensions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ai6Q0oPVzBQwpbeMcS585MZEjsYRAmjd+V6zSqutFb0u9IwxLV0ALr9dNT6Fg3/Wf+LSuBxeCfk5FZ5BjfuYqA==", + "files": [ + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec", + "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.Features/1.0.0-beta5": { + "serviceable": true, + "sha512": "jZi6dVWXrN3cABLWjm0Dgh7CIm0VppzDPpUUuOgIIfnr9E4QcG87Xq7s25JIFsXHkInmPH2DSUn5cp6PA9QrIw==", + "files": [ + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "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.WebUtilities/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ieb9JeaI57V2HRWyFsQE+Ioo7jRE7gp8QgmHAgCuc58RfUUvKf3BdmjMMqw+0DfOQMf4VL9xWpj0yQ/bMA1VDA==", + "files": [ + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec", + "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.Framework.Configuration/1.0.0-beta5": { + "serviceable": true, + "sha512": "UBw3f+fKi4/WHWIz3oTKF5UiLjmfvTiDgU9oCjYYApqKUMIji4VPbgsoqCzEzgXPHpLHDGkBal6Ux0Gcgu15Ig==", + "files": [ + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "dW5gHHlvvNnrFFSGtfOFhKClSi9Eb4WFPVdrrIbZYq2gIVw2Dde740p68H3+v9Fr511sk4yPCkGZ0wqXm1GObw==", + "files": [ + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "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.Binder/1.0.0-beta5": { + "serviceable": true, + "sha512": "xSWVoCC0gtn9h12O/M2Eie6eXehJ0P2ovvGkZU5ZWNh8ycTyisyKrkhAmtObcF0dDdPJO9HXUHbRT5ady9fb8Q==", + "files": [ + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "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.Logging.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "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.NotNullAttribute.Sources/1.0.0-beta5": { + "sha512": "hgETnks4ovIE4ySkFs6mQ+QN195kOIM+3IxgIqQFYtuF9tfNdw1/xkkwm9ip7vUifJlNC4O5d9o7CJ2ou46GyA==", + "files": [ + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "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", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "oK4jCjvQfz1NGBUf73euKqPDhC4aSJ3fkpOrozrOxVL85ToF+QyrD4yWclNCkf0/WnEUjXh6eWsfiEqI9zgODg==", + "files": [ + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml" + ] + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "serviceable": true, + "sha512": "y/2QI2ruRp1Wc3qgIDxQex7ExueFgwd9M5Jw/xJA+tIRuwLlmyDvegDpcBQwqWIanG3pd2Tm5sjcPSTqPLcTyQ==", + "files": [ + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.nuspec", + "lib/dnx451/Microsoft.Framework.WebEncoders.dll", + "lib/dnx451/Microsoft.Framework.WebEncoders.xml", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.xml", + "lib/net45/Microsoft.Framework.WebEncoders.dll", + "lib/net45/Microsoft.Framework.WebEncoders.xml" + ] + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "serviceable": true, + "sha512": "KIwD5E5o4osx5NnSrqppt3W8TDdel2S1mnsdXGZn1N61enxic4v5Al51RPvcbGAPoVPQhru3fFao7FdxmfWGnQ==", + "files": [ + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.Core.nuspec", + "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.Net.Http.Headers/1.0.0-beta5": { + "serviceable": true, + "sha512": "ewp5ueEWtXW+fnzn0QMhTV78gDOHoO/EYgzay6nYzAP92AgaP1r13lTkh1VDpbHaCxm9GWweUkojIWZ196iQUQ==", + "files": [ + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec", + "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.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec", + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec", + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "sha512": "ijnoxLU+SrSf1AItfZOwtnzyx7yEi+WJtKa3d2X93Xf5YHlRsL4RwMZ10M9gLE8E+Rpi3ZJM5wAXi6OFSprDtw==", + "files": [ + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.NonGeneric.nuspec", + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/net46/System.Collections.NonGeneric.dll" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec", + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec", + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._" + ] + }, + "System.Diagnostics.Contracts/4.0.0-beta-23019": { + "sha512": "wi3eWkfN0kZYCHgIaOqRDfJoyl8P8oQLcxZ47ElLDTtOEW0TfGl0wVeqllMg7nMMzR7C1ordTWycpV34yQ7g4Q==", + "files": [ + "System.Diagnostics.Contracts.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Contracts.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec", + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Contracts.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec", + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "sha512": "GB0ki4TLNwFKcT7ZesteTERlZmBytRitEbdD6O1zVwDaeqqY+FZb2/+CH2Q5U1rN7qY9YmM70PxtyPG1t31zkg==", + "files": [ + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Tools.nuspec", + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec", + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec", + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec", + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll" + ] + }, + "System.Globalization.Extensions/4.0.0-beta-23019": { + "sha512": "k3KrctgKowl9Yv8eFbBIrnU/lL5+uUeaoCSJllwXA1XbQaGCLKVIYsMewgwV66UzkDfMU/65d6XhIcGucx9IAg==", + "files": [ + "System.Globalization.Extensions.4.0.0-beta-23019.nupkg", + "System.Globalization.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Extensions.nuspec", + "lib/dotnet/System.Globalization.Extensions.dll", + "lib/net46/System.Globalization.Extensions.dll", + "ref/dotnet/System.Globalization.Extensions.dll", + "ref/net46/System.Globalization.Extensions.dll" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec", + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec", + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec", + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec", + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec", + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "sha512": "YjnsUzXsXx8BdqaXQ2U/hrz4CWdlAfcoYccqO3BSKCpPZPFEbKizEiHR9KJGcqf9gQ4lzRkhlM3xiMIjX27mUQ==", + "files": [ + "runtime.json", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg.sha512", + "System.Linq.Expressions.nuspec", + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll" + ] + }, + "System.Net.Http/4.0.0-beta-23019": { + "sha512": "8mt4X1eIjTMrKVINJuzuFYf7C4GrYFC+tlvc2zH5HtxKPpbFZamMUdJ19ORxZ9ds053aqQASdiha7eH86PN+eg==", + "files": [ + "System.Net.Http.4.0.0-beta-23019.nupkg", + "System.Net.Http.4.0.0-beta-23019.nupkg.sha512", + "System.Net.Http.nuspec", + "lib/DNXCore50/System.Net.Http.dll", + "lib/net45/_._", + "lib/netcore50/System.Net.Http.dll", + "lib/win8/_._", + "ref/dotnet/System.Net.Http.dll", + "ref/net45/_._", + "ref/netcore50/System.Net.Http.dll", + "ref/win8/_._" + ] + }, + "System.Net.Http.WinHttpHandler/4.0.0-beta-23019": { + "sha512": "C6DBRXVzX3+bkWVlUdMVqHMgIiKbZJU6E08R/rSVENmVTGHxQ9NgSwA8yBCreOeV4hcdHIa187kjFA0X6BYSRA==", + "files": [ + "System.Net.Http.WinHttpHandler.4.0.0-beta-23019.nupkg", + "System.Net.Http.WinHttpHandler.4.0.0-beta-23019.nupkg.sha512", + "System.Net.Http.WinHttpHandler.nuspec", + "lib/DNXCore50/System.Net.Http.WinHttpHandler.dll" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec", + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._" + ] + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "sha512": "9waIolEiBpjdMWLtTqQxYjpPplVpTlZEzof6C/6/vitUP7DuJrI7wJltEO5ARMPBqyT2Ohke0h1ZpLiRkZQkCw==", + "files": [ + "System.Net.WebSockets.4.0.0-beta-23019.nupkg", + "System.Net.WebSockets.4.0.0-beta-23019.nupkg.sha512", + "System.Net.WebSockets.nuspec", + "lib/DNXCore50/System.Net.WebSockets.dll", + "lib/net46/System.Net.WebSockets.dll", + "ref/dotnet/System.Net.WebSockets.dll", + "ref/net46/System.Net.WebSockets.dll" + ] + }, + "System.ObjectModel/4.0.0-beta-23019": { + "sha512": "shmwP3YgLhSx8+njPPb82OULH+SteCr8fZ6XaQK8dfuB3UCqqUfITYPW1zknMotwsnBZpVPdXFWmwvTE0XTCGA==", + "files": [ + "License.rtf", + "System.ObjectModel.4.0.0-beta-23019.nupkg", + "System.ObjectModel.4.0.0-beta-23019.nupkg.sha512", + "System.ObjectModel.nuspec", + "lib/net45/_._", + "lib/win8/_._", + "ref/dotnet/System.ObjectModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/win8/_._" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec", + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec", + "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.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec", + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "sha512": "FAp9TewUfCxaydPyY5Glv2/3KdxD5vpZ4qgx26OWV6xtytGinnXpHsxownQKKe7WkeqlRjy7s7cRgjTKZ50AQA==", + "files": [ + "System.Reflection.Emit.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.nuspec", + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "sha512": "5OsJjj6G9WY8aV3EWfI03dJoqH0RvILtP2GJ16JQf90pV0kVmgGsFQSqh+lcnnexh4CEje7DDxF748o/8KamWA==", + "files": [ + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec", + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec", + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec", + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "sha512": "5/WcPvsdnw0d8rwwsCgQKoo9oXFQA1gMHtyNcYjelDjaaYC/dYoU7Eo0JdP+0PMgy9FnBOHVjRHOTcJ2HIjefA==", + "files": [ + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec", + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec", + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec", + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec", + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec", + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec", + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec", + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._" + ] + }, + "System.Security.Claims/4.0.0-beta-23019": { + "sha512": "kKseHxGh5pWjM43MZWtub/ZyBWUV3RHNSJuUtTzapeQD2qND6pGGNekMXcxmEZOxrKwFEBAeTlcgmWo/2e6/SQ==", + "files": [ + "System.Security.Claims.4.0.0-beta-23019.nupkg", + "System.Security.Claims.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Claims.nuspec", + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll" + ] + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23019": { + "sha512": "X3lDbzONEsSurqDDApxmA/ybdViY5F1XAWoGV+B8ZlDKOsSiEbBwsPt8MShROlCkPZezUyRpLzg2b8Jd+anIRQ==", + "files": [ + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.Aes.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll", + "lib/net46/System.Security.Cryptography.Encryption.Aes.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll", + "ref/net46/System.Security.Cryptography.Encryption.Aes.dll" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec", + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll" + ] + }, + "System.Security.Principal/4.0.0-beta-23019": { + "sha512": "2zkK0eJOfso/Jo+77NVXDoJRggzL0jM0ayeXz+vD8pK9pIRnhpWJVbaGmT7MPBWW9KbPwtbJyXejpUS2rBflUQ==", + "files": [ + "System.Security.Principal.4.0.0-beta-23019.nupkg", + "System.Security.Principal.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.nuspec", + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "sha512": "FYvKKTbncuJCMnc1TmccsJlGSjIQrUJPymt2R3o5uSV1plyGD9V3san/rpq2IO4kDbHjGrQjEtZlbehwUucB5Q==", + "files": [ + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.Windows.nuspec", + "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.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec", + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec", + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec", + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "sha512": "7gCVMRey2Nji6WDKleSigGBJuy4gMKXGeVqauROuFoTygHNtFYaUTeToGMy7Obsi+tzgnyEYfd+9uY3Ifc/SjA==", + "files": [ + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.RegularExpressions.nuspec", + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/net46/_._" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec", + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec", + "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.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec", + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec", + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec", + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._" + ] + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "sha512": "pyyzY5FFoZziGVDFyO5VLM094cX7jNN+01EsSJEFreje5uzSz6aKwIPgTe/l2CFiXYFoUNr0O6D3GEc8jPmbPg==", + "files": [ + "System.Xml.XDocument.4.0.10-beta-23019.nupkg", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec", + "lib/dotnet/System.Xml.XDocument.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net46/_._" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.Authentication >= 1.0.0-beta5", + "Microsoft.Framework.NotNullAttribute.Sources >= 1.0.0-beta5" + ], + "DNX,Version=v4.5.1": [ + "fx/System.Net.Http.WebRequest ", + "fx/System.Net.Http " + ], + "DNXCore,Version=v5.0": [ + "System.Net.Http.WinHttpHandler >= 4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms >= 4.0.0-beta-23019" + ] + } +} \ No newline at end of file diff --git a/src/Microsoft.AspNet.Authentication/project.json b/src/Microsoft.AspNet.Authentication/project.json index bdf51537f..8faa8de05 100644 --- a/src/Microsoft.AspNet.Authentication/project.json +++ b/src/Microsoft.AspNet.Authentication/project.json @@ -1,20 +1,20 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "description": "ASP.NET 5 common types used by the various authentication middleware.", "dependencies": { - "Microsoft.AspNet.DataProtection": "1.0.0-*", - "Microsoft.AspNet.Http": "1.0.0-*", - "Microsoft.AspNet.Http.Extensions": "1.0.0-*", - "Microsoft.Framework.Logging.Abstractions": "1.0.0-*", - "Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-*" }, - "Microsoft.Framework.OptionsModel": "1.0.0-*", - "Microsoft.Framework.WebEncoders": "1.0.0-*" + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-beta5" }, + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5" }, "frameworks": { "dnx451": { }, "dnxcore50": { "dependencies": { - "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-*" + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" } } } diff --git a/src/Microsoft.AspNet.Authentication/project.lock.json b/src/Microsoft.AspNet.Authentication/project.lock.json new file mode 100644 index 000000000..cb0023318 --- /dev/null +++ b/src/Microsoft.AspNet.Authentication/project.lock.json @@ -0,0 +1,2631 @@ +{ + "locked": true, + "version": -9996, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "System.IO", + "System.Security", + "System.Xml", + "System.Xml.Linq", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption.Aes": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Linq": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Contracts": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Globalization.Extensions": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "serviceable": true, + "sha512": "0aGfwSmbVHhNIQSp6dXqz6sLYD07U9Dgnw8rm/wnQDkLFfJ9iPQKBBTk/Oh/6wGwaSg9Ko7mzXTwILE42HZdZA==", + "files": [ + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.xml" + ] + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "serviceable": true, + "sha512": "nhCP9Q0TSA3F31w+SXoXh5X9zbGRpyGZrkBhid++k673Mxg1uzkDNa18Z0edF7Yiua2ZHZeA/GPkPUG0pzER/A==", + "files": [ + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Cryptography.Internal.nuspec", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.xml" + ] + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "serviceable": true, + "sha512": "f8oqJIyHUbmsIkgEq+A7QQOKr60s4GoewR2I+ItHGuHdwV6ICuNnu4yKSx7v0k/uh51T49ECcrrMApUepuV2mg==", + "files": [ + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.nuspec", + "lib/dnx451/Microsoft.AspNet.DataProtection.dll", + "lib/dnx451/Microsoft.AspNet.DataProtection.xml", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.xml", + "lib/net451/Microsoft.AspNet.DataProtection.dll", + "lib/net451/Microsoft.AspNet.DataProtection.xml" + ] + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ow8W+rMtA0rsiCtvHtUs+f5wrzMj0rtoSjl+vTgtGNQ0Ib+3tsGbKgA9+l5kzGKG6RUebnCK+vXKP/zCXDZOvw==", + "files": [ + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.Abstractions.nuspec", + "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.FeatureModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "M6ltNGrh4gHU+DiMbV074ZDwDQAIYx1SEOlltX7XzKbiDztYuTAtXiv8M/wkjZBeVdkszkE0NPOlMb/pbfww6g==", + "files": [ + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg", + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.FeatureModel.nuspec", + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll", + "lib/dnx451/Microsoft.AspNet.FeatureModel.xml", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.xml" + ] + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "serviceable": true, + "sha512": "Smn8m/xaNcNK4GKTZ5lfkHL4OqKCyxrt5m+1i3Dpe5wjUHR+Z9qGVjcuT/ZTJLfSZBelpP0yKZHFqcgUCMujFw==", + "files": [ + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "vNdZzaCID7R1k93o+N6LQ9d3Lx49bAoSAwslnzhcKXvbSvbHjZ1DRFDngrHIlY/ckcls0MH+j2qePUtuCTb8NQ==", + "files": [ + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec", + "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.Extensions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ai6Q0oPVzBQwpbeMcS585MZEjsYRAmjd+V6zSqutFb0u9IwxLV0ALr9dNT6Fg3/Wf+LSuBxeCfk5FZ5BjfuYqA==", + "files": [ + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec", + "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.Features/1.0.0-beta5": { + "serviceable": true, + "sha512": "jZi6dVWXrN3cABLWjm0Dgh7CIm0VppzDPpUUuOgIIfnr9E4QcG87Xq7s25JIFsXHkInmPH2DSUn5cp6PA9QrIw==", + "files": [ + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "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.WebUtilities/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ieb9JeaI57V2HRWyFsQE+Ioo7jRE7gp8QgmHAgCuc58RfUUvKf3BdmjMMqw+0DfOQMf4VL9xWpj0yQ/bMA1VDA==", + "files": [ + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec", + "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.Framework.Configuration/1.0.0-beta5": { + "serviceable": true, + "sha512": "UBw3f+fKi4/WHWIz3oTKF5UiLjmfvTiDgU9oCjYYApqKUMIji4VPbgsoqCzEzgXPHpLHDGkBal6Ux0Gcgu15Ig==", + "files": [ + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "dW5gHHlvvNnrFFSGtfOFhKClSi9Eb4WFPVdrrIbZYq2gIVw2Dde740p68H3+v9Fr511sk4yPCkGZ0wqXm1GObw==", + "files": [ + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "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.Binder/1.0.0-beta5": { + "serviceable": true, + "sha512": "xSWVoCC0gtn9h12O/M2Eie6eXehJ0P2ovvGkZU5ZWNh8ycTyisyKrkhAmtObcF0dDdPJO9HXUHbRT5ady9fb8Q==", + "files": [ + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "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.Logging.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "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.NotNullAttribute.Sources/1.0.0-beta5": { + "sha512": "hgETnks4ovIE4ySkFs6mQ+QN195kOIM+3IxgIqQFYtuF9tfNdw1/xkkwm9ip7vUifJlNC4O5d9o7CJ2ou46GyA==", + "files": [ + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "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", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "oK4jCjvQfz1NGBUf73euKqPDhC4aSJ3fkpOrozrOxVL85ToF+QyrD4yWclNCkf0/WnEUjXh6eWsfiEqI9zgODg==", + "files": [ + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml" + ] + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "serviceable": true, + "sha512": "y/2QI2ruRp1Wc3qgIDxQex7ExueFgwd9M5Jw/xJA+tIRuwLlmyDvegDpcBQwqWIanG3pd2Tm5sjcPSTqPLcTyQ==", + "files": [ + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.nuspec", + "lib/dnx451/Microsoft.Framework.WebEncoders.dll", + "lib/dnx451/Microsoft.Framework.WebEncoders.xml", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.xml", + "lib/net45/Microsoft.Framework.WebEncoders.dll", + "lib/net45/Microsoft.Framework.WebEncoders.xml" + ] + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "serviceable": true, + "sha512": "KIwD5E5o4osx5NnSrqppt3W8TDdel2S1mnsdXGZn1N61enxic4v5Al51RPvcbGAPoVPQhru3fFao7FdxmfWGnQ==", + "files": [ + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.Core.nuspec", + "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.Net.Http.Headers/1.0.0-beta5": { + "serviceable": true, + "sha512": "ewp5ueEWtXW+fnzn0QMhTV78gDOHoO/EYgzay6nYzAP92AgaP1r13lTkh1VDpbHaCxm9GWweUkojIWZ196iQUQ==", + "files": [ + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec", + "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.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec", + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec", + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "sha512": "ijnoxLU+SrSf1AItfZOwtnzyx7yEi+WJtKa3d2X93Xf5YHlRsL4RwMZ10M9gLE8E+Rpi3ZJM5wAXi6OFSprDtw==", + "files": [ + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.NonGeneric.nuspec", + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/net46/System.Collections.NonGeneric.dll" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec", + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec", + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._" + ] + }, + "System.Diagnostics.Contracts/4.0.0-beta-23019": { + "sha512": "wi3eWkfN0kZYCHgIaOqRDfJoyl8P8oQLcxZ47ElLDTtOEW0TfGl0wVeqllMg7nMMzR7C1ordTWycpV34yQ7g4Q==", + "files": [ + "System.Diagnostics.Contracts.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Contracts.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec", + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Contracts.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec", + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23019": { + "sha512": "GB0ki4TLNwFKcT7ZesteTERlZmBytRitEbdD6O1zVwDaeqqY+FZb2/+CH2Q5U1rN7qY9YmM70PxtyPG1t31zkg==", + "files": [ + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Tools.nuspec", + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec", + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec", + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec", + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll" + ] + }, + "System.Globalization.Extensions/4.0.0-beta-23019": { + "sha512": "k3KrctgKowl9Yv8eFbBIrnU/lL5+uUeaoCSJllwXA1XbQaGCLKVIYsMewgwV66UzkDfMU/65d6XhIcGucx9IAg==", + "files": [ + "System.Globalization.Extensions.4.0.0-beta-23019.nupkg", + "System.Globalization.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Extensions.nuspec", + "lib/dotnet/System.Globalization.Extensions.dll", + "lib/net46/System.Globalization.Extensions.dll", + "ref/dotnet/System.Globalization.Extensions.dll", + "ref/net46/System.Globalization.Extensions.dll" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec", + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec", + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec", + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec", + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "sha512": "YjnsUzXsXx8BdqaXQ2U/hrz4CWdlAfcoYccqO3BSKCpPZPFEbKizEiHR9KJGcqf9gQ4lzRkhlM3xiMIjX27mUQ==", + "files": [ + "runtime.json", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg.sha512", + "System.Linq.Expressions.nuspec", + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec", + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._" + ] + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "sha512": "9waIolEiBpjdMWLtTqQxYjpPplVpTlZEzof6C/6/vitUP7DuJrI7wJltEO5ARMPBqyT2Ohke0h1ZpLiRkZQkCw==", + "files": [ + "System.Net.WebSockets.4.0.0-beta-23019.nupkg", + "System.Net.WebSockets.4.0.0-beta-23019.nupkg.sha512", + "System.Net.WebSockets.nuspec", + "lib/DNXCore50/System.Net.WebSockets.dll", + "lib/net46/System.Net.WebSockets.dll", + "ref/dotnet/System.Net.WebSockets.dll", + "ref/net46/System.Net.WebSockets.dll" + ] + }, + "System.ObjectModel/4.0.0-beta-23019": { + "sha512": "shmwP3YgLhSx8+njPPb82OULH+SteCr8fZ6XaQK8dfuB3UCqqUfITYPW1zknMotwsnBZpVPdXFWmwvTE0XTCGA==", + "files": [ + "License.rtf", + "System.ObjectModel.4.0.0-beta-23019.nupkg", + "System.ObjectModel.4.0.0-beta-23019.nupkg.sha512", + "System.ObjectModel.nuspec", + "lib/net45/_._", + "lib/win8/_._", + "ref/dotnet/System.ObjectModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/win8/_._" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec", + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec", + "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.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec", + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "sha512": "FAp9TewUfCxaydPyY5Glv2/3KdxD5vpZ4qgx26OWV6xtytGinnXpHsxownQKKe7WkeqlRjy7s7cRgjTKZ50AQA==", + "files": [ + "System.Reflection.Emit.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.nuspec", + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "sha512": "5OsJjj6G9WY8aV3EWfI03dJoqH0RvILtP2GJ16JQf90pV0kVmgGsFQSqh+lcnnexh4CEje7DDxF748o/8KamWA==", + "files": [ + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec", + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec", + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec", + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "sha512": "5/WcPvsdnw0d8rwwsCgQKoo9oXFQA1gMHtyNcYjelDjaaYC/dYoU7Eo0JdP+0PMgy9FnBOHVjRHOTcJ2HIjefA==", + "files": [ + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec", + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec", + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec", + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec", + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec", + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec", + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec", + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._" + ] + }, + "System.Security.Claims/4.0.0-beta-23019": { + "sha512": "kKseHxGh5pWjM43MZWtub/ZyBWUV3RHNSJuUtTzapeQD2qND6pGGNekMXcxmEZOxrKwFEBAeTlcgmWo/2e6/SQ==", + "files": [ + "System.Security.Claims.4.0.0-beta-23019.nupkg", + "System.Security.Claims.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Claims.nuspec", + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll" + ] + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23019": { + "sha512": "X3lDbzONEsSurqDDApxmA/ybdViY5F1XAWoGV+B8ZlDKOsSiEbBwsPt8MShROlCkPZezUyRpLzg2b8Jd+anIRQ==", + "files": [ + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.Aes.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll", + "lib/net46/System.Security.Cryptography.Encryption.Aes.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll", + "ref/net46/System.Security.Cryptography.Encryption.Aes.dll" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec", + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll" + ] + }, + "System.Security.Principal/4.0.0-beta-23019": { + "sha512": "2zkK0eJOfso/Jo+77NVXDoJRggzL0jM0ayeXz+vD8pK9pIRnhpWJVbaGmT7MPBWW9KbPwtbJyXejpUS2rBflUQ==", + "files": [ + "System.Security.Principal.4.0.0-beta-23019.nupkg", + "System.Security.Principal.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.nuspec", + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "sha512": "FYvKKTbncuJCMnc1TmccsJlGSjIQrUJPymt2R3o5uSV1plyGD9V3san/rpq2IO4kDbHjGrQjEtZlbehwUucB5Q==", + "files": [ + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.Windows.nuspec", + "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.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec", + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec", + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec", + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23019": { + "sha512": "7gCVMRey2Nji6WDKleSigGBJuy4gMKXGeVqauROuFoTygHNtFYaUTeToGMy7Obsi+tzgnyEYfd+9uY3Ifc/SjA==", + "files": [ + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.RegularExpressions.nuspec", + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/net46/_._" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec", + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec", + "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.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec", + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec", + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec", + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._" + ] + }, + "System.Xml.XDocument/4.0.10-beta-23019": { + "sha512": "pyyzY5FFoZziGVDFyO5VLM094cX7jNN+01EsSJEFreje5uzSz6aKwIPgTe/l2CFiXYFoUNr0O6D3GEc8jPmbPg==", + "files": [ + "System.Xml.XDocument.4.0.10-beta-23019.nupkg", + "System.Xml.XDocument.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec", + "lib/dotnet/System.Xml.XDocument.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net46/_._" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.DataProtection >= 1.0.0-beta5", + "Microsoft.AspNet.Http >= 1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions >= 1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions >= 1.0.0-beta5", + "Microsoft.Framework.NotNullAttribute.Sources >= 1.0.0-beta5", + "Microsoft.Framework.OptionsModel >= 1.0.0-beta5", + "Microsoft.Framework.WebEncoders >= 1.0.0-beta5" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [ + "System.Security.Cryptography.RandomNumberGenerator >= 4.0.0-beta-23019" + ] + } +} \ No newline at end of file diff --git a/src/Microsoft.AspNet.Authorization/project.json b/src/Microsoft.AspNet.Authorization/project.json index a0b9beb5d..385e08946 100644 --- a/src/Microsoft.AspNet.Authorization/project.json +++ b/src/Microsoft.AspNet.Authorization/project.json @@ -1,11 +1,11 @@ { - "version": "1.0.0-*", + "version": "1.0.0-beta5", "description": "ASP.NET 5 authorization classes.", "dependencies": { - "Microsoft.AspNet.Http.Features": "1.0.0-*", - "Microsoft.Framework.Logging.Abstractions": "1.0.0-*", - "Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-*" }, - "Microsoft.Framework.OptionsModel": "1.0.0-*" + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.NotNullAttribute.Sources": { "type": "build", "version": "1.0.0-beta5" }, + "Microsoft.Framework.OptionsModel": "1.0.0-beta5" }, "frameworks": { "dnx451": { }, diff --git a/src/Microsoft.AspNet.Authorization/project.lock.json b/src/Microsoft.AspNet.Authorization/project.lock.json new file mode 100644 index 000000000..227d58f13 --- /dev/null +++ b/src/Microsoft.AspNet.Authorization/project.lock.json @@ -0,0 +1,1789 @@ +{ + "locked": true, + "version": -9996, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.AspNet.Authorization/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authorization.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authorization.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.AspNet.Authorization/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authorization.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authorization.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.WebSockets": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Linq": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "System.Collections/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23019": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23019": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNet.Authorization/1.0.0-beta5": { + "serviceable": true, + "sha512": "IwrJVFjSTemSQFQst2NLphcN0i8+UsrN4H8NLuTIrA0Hj2O96LNLn4l69YHL80Qcf5YOh7ViCWBOukW9itz1Zw==", + "files": [ + "Microsoft.AspNet.Authorization.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authorization.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authorization.nuspec", + "lib/dnx451/Microsoft.AspNet.Authorization.dll", + "lib/dnx451/Microsoft.AspNet.Authorization.xml", + "lib/dnxcore50/Microsoft.AspNet.Authorization.dll", + "lib/dnxcore50/Microsoft.AspNet.Authorization.xml" + ] + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "serviceable": true, + "sha512": "jZi6dVWXrN3cABLWjm0Dgh7CIm0VppzDPpUUuOgIIfnr9E4QcG87Xq7s25JIFsXHkInmPH2DSUn5cp6PA9QrIw==", + "files": [ + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "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.Framework.Configuration/1.0.0-beta5": { + "serviceable": true, + "sha512": "UBw3f+fKi4/WHWIz3oTKF5UiLjmfvTiDgU9oCjYYApqKUMIji4VPbgsoqCzEzgXPHpLHDGkBal6Ux0Gcgu15Ig==", + "files": [ + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "dW5gHHlvvNnrFFSGtfOFhKClSi9Eb4WFPVdrrIbZYq2gIVw2Dde740p68H3+v9Fr511sk4yPCkGZ0wqXm1GObw==", + "files": [ + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "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.Binder/1.0.0-beta5": { + "serviceable": true, + "sha512": "xSWVoCC0gtn9h12O/M2Eie6eXehJ0P2ovvGkZU5ZWNh8ycTyisyKrkhAmtObcF0dDdPJO9HXUHbRT5ady9fb8Q==", + "files": [ + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "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.Logging.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "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.NotNullAttribute.Sources/1.0.0-beta5": { + "sha512": "hgETnks4ovIE4ySkFs6mQ+QN195kOIM+3IxgIqQFYtuF9tfNdw1/xkkwm9ip7vUifJlNC4O5d9o7CJ2ou46GyA==", + "files": [ + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "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", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "oK4jCjvQfz1NGBUf73euKqPDhC4aSJ3fkpOrozrOxVL85ToF+QyrD4yWclNCkf0/WnEUjXh6eWsfiEqI9zgODg==", + "files": [ + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "System.Collections/4.0.10-beta-23019": { + "sha512": "MHZUp2LFl6sc22mBNHgM1vN5cQcxdcqPuQ3xRThg1UOH+eZ3rJIk5Ja+mkMFOdAiMB626u0fQMNEdNfItRyWuw==", + "files": [ + "System.Collections.4.0.10-beta-23019.nupkg", + "System.Collections.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.nuspec", + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/System.Collections.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23019": { + "sha512": "kMDOCKQdE2wCP5apJkSWTFbke1kG3JokUMDgH2zxeMTcE/2Txs6jGD4F4WIOnbVaJHBFwsA07PTAuMYNsmSZjA==", + "files": [ + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23019.nupkg.sha512", + "System.Collections.Concurrent.nuspec", + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/net46/_._" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "sha512": "ijnoxLU+SrSf1AItfZOwtnzyx7yEi+WJtKa3d2X93Xf5YHlRsL4RwMZ10M9gLE8E+Rpi3ZJM5wAXi6OFSprDtw==", + "files": [ + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.NonGeneric.nuspec", + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/net46/System.Collections.NonGeneric.dll" + ] + }, + "System.ComponentModel/4.0.0-beta-23019": { + "sha512": "ut79bWM/pYNWBhmazpg4noy6FizukKFIYwJ5LHLaT0oER281vIzCb8uJFF/yZC72g0zmB9sYexaWZSun1TfGPQ==", + "files": [ + "System.ComponentModel.4.0.0-beta-23019.nupkg", + "System.ComponentModel.4.0.0-beta-23019.nupkg.sha512", + "System.ComponentModel.nuspec", + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec", + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23019": { + "sha512": "xglZdS0wD8GeImZOnS+R1WGHYj3zcwRc0gpa1OTxb48mT49vgwzr0v3lIuGln7ARIUbj4jCGgQzpLMJf5ip/ag==", + "files": [ + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23019.nupkg.sha512", + "System.Diagnostics.Debug.nuspec", + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23019": { + "sha512": "7g5vg0pHSTHOG6ZeUuEW75LXxQ8jtHZjQEFEi7YAYqngTkU6QEdqT+eqzKnmN++wS08nGiC0riT5QH5o8jZuug==", + "files": [ + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23019.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec", + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll" + ] + }, + "System.Globalization/4.0.10-beta-23019": { + "sha512": "zqYEXW3gedG4xYbX28Bw1TPddUJZWygfj8wWl1UMHtJsk4ihLLYAoSC/9VGq+WuYhSgN2n5WiD/LRt1CDWLDtQ==", + "files": [ + "System.Globalization.4.0.10-beta-23019.nupkg", + "System.Globalization.4.0.10-beta-23019.nupkg.sha512", + "System.Globalization.nuspec", + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/System.Globalization.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec", + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll" + ] + }, + "System.IO/4.0.10-beta-23019": { + "sha512": "/FgcleTGRMbI9XXlZCNNyNCLb+DzLXdyw2KqF1U0Su+Z8ztLBgpXGI9Vv1adnqRXXolBPNSlnHBMNEGqZzMYvA==", + "files": [ + "System.IO.4.0.10-beta-23019.nupkg", + "System.IO.4.0.10-beta-23019.nupkg.sha512", + "System.IO.nuspec", + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/System.IO.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23019": { + "sha512": "esYHMwzj2CoZGYMx0jDEai2pmaYsdIluz+pL9m8sPpdZhQQ8L7+MrOKrV272Sf6xaD7AUslNQsbrJBzEJxAhaA==", + "files": [ + "System.IO.FileSystem.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.nuspec", + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/net46/System.IO.FileSystem.dll" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23019": { + "sha512": "wGjn8X4EAnKEH4+uZ3CjiUCHW9WoXuWFNrzORmMhzvHpmxJUsiZkjvKhXGakclVlqMI+T4yn+MDwbrpC3TGofQ==", + "files": [ + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec", + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/net46/System.IO.FileSystem.Primitives.dll" + ] + }, + "System.Linq/4.0.0-beta-23019": { + "sha512": "jBHOkMRLTew/lr+awaPzEt5+rif4S7L9h/tY17unLaILq9P5muWVtsP2Tg/9YAJmHYoJDoCBKMpdGJ0hA5kqow==", + "files": [ + "System.Linq.4.0.0-beta-23019.nupkg", + "System.Linq.4.0.0-beta-23019.nupkg.sha512", + "System.Linq.nuspec", + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23019": { + "sha512": "YjnsUzXsXx8BdqaXQ2U/hrz4CWdlAfcoYccqO3BSKCpPZPFEbKizEiHR9KJGcqf9gQ4lzRkhlM3xiMIjX27mUQ==", + "files": [ + "runtime.json", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg", + "System.Linq.Expressions.4.0.10-beta-23019.nupkg.sha512", + "System.Linq.Expressions.nuspec", + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec", + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._" + ] + }, + "System.Net.WebSockets/4.0.0-beta-23019": { + "sha512": "9waIolEiBpjdMWLtTqQxYjpPplVpTlZEzof6C/6/vitUP7DuJrI7wJltEO5ARMPBqyT2Ohke0h1ZpLiRkZQkCw==", + "files": [ + "System.Net.WebSockets.4.0.0-beta-23019.nupkg", + "System.Net.WebSockets.4.0.0-beta-23019.nupkg.sha512", + "System.Net.WebSockets.nuspec", + "lib/DNXCore50/System.Net.WebSockets.dll", + "lib/net46/System.Net.WebSockets.dll", + "ref/dotnet/System.Net.WebSockets.dll", + "ref/net46/System.Net.WebSockets.dll" + ] + }, + "System.ObjectModel/4.0.0-beta-23019": { + "sha512": "shmwP3YgLhSx8+njPPb82OULH+SteCr8fZ6XaQK8dfuB3UCqqUfITYPW1zknMotwsnBZpVPdXFWmwvTE0XTCGA==", + "files": [ + "License.rtf", + "System.ObjectModel.4.0.0-beta-23019.nupkg", + "System.ObjectModel.4.0.0-beta-23019.nupkg.sha512", + "System.ObjectModel.nuspec", + "lib/net45/_._", + "lib/win8/_._", + "ref/dotnet/System.ObjectModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/win8/_._" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec", + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._" + ] + }, + "System.Private.Uri/4.0.0-beta-23019": { + "sha512": "LV9WVCQ8W3ivP/hvQlaHH0lZKZyoYcUYiRGVw7xw/q8yfo2ZvwIrleXcLemxQkCSrXy80c5QmT9ErvrlFQK+Nw==", + "files": [ + "System.Private.Uri.4.0.0-beta-23019.nupkg", + "System.Private.Uri.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Uri.nuspec", + "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.Reflection/4.0.10-beta-23019": { + "sha512": "74fA068GDGipNfZxV3cQJe38djfHNrHPbKRrojOCLoecymaXlTGU917/nVxBuRwFehOsYwhMJ/B30m4YVEF/CA==", + "files": [ + "System.Reflection.4.0.10-beta-23019.nupkg", + "System.Reflection.4.0.10-beta-23019.nupkg.sha512", + "System.Reflection.nuspec", + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/System.Reflection.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23019": { + "sha512": "FAp9TewUfCxaydPyY5Glv2/3KdxD5vpZ4qgx26OWV6xtytGinnXpHsxownQKKe7WkeqlRjy7s7cRgjTKZ50AQA==", + "files": [ + "System.Reflection.Emit.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.nuspec", + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23019": { + "sha512": "5OsJjj6G9WY8aV3EWfI03dJoqH0RvILtP2GJ16JQf90pV0kVmgGsFQSqh+lcnnexh4CEje7DDxF748o/8KamWA==", + "files": [ + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec", + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/net45/_._" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23019": { + "sha512": "fU02uzgKfO6lAUxR2eRHo6+JQ3/HqRi4zr38uOnieKtqV2dl8Cs2354gwYrjIxgxhkO1zLo70021P1cbpL7UIA==", + "files": [ + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Extensions.nuspec", + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23019": { + "sha512": "t9KyeV51eRgTby/D9Ri6cIKeA9KUOGH5+EEXBdfaSbkCO/lrJ/7b8BclFu+HKEXJd3/ZpD0lOdw4k8kwIeL3ww==", + "files": [ + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.Primitives.nuspec", + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23019": { + "sha512": "5/WcPvsdnw0d8rwwsCgQKoo9oXFQA1gMHtyNcYjelDjaaYC/dYoU7Eo0JdP+0PMgy9FnBOHVjRHOTcJ2HIjefA==", + "files": [ + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23019.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec", + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23019": { + "sha512": "me0PnbhuwqsRTUmA2ckfj059r6yJP/wQqh3L51zS/iLJ8N0CjSi9ndzAwoRVhfS2BRTgpgHO2xTas3vY2gTwkg==", + "files": [ + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ResourceManager.nuspec", + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll" + ] + }, + "System.Runtime/4.0.20-beta-23019": { + "sha512": "74Ba0KeqUX4ziLuALD5zSDWbYFg2Hw8IloKILkm8UHe5vkFCzHIb9tARXLClDjTxXQ/G/hyXgV8N0YlKHX7dAA==", + "files": [ + "System.Runtime.4.0.20-beta-23019.nupkg", + "System.Runtime.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.nuspec", + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/System.Runtime.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23019": { + "sha512": "G1DElWXwzoQgAWMZX63gwgSMckcLnxA70xTwZTx/VmQQG2+kqDuUoFVywdBeC9yaba0xK2h7Q01+H4/FGDClSg==", + "files": [ + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Runtime.Extensions.nuspec", + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23019": { + "sha512": "7yUKDrX/q6iXj0daFW7LM3Fe5qY0l9hIcd4OxLzb8vcwHvxTvcTK11jMMPwtwlv3xjTqUG+FxYfonKXENQ4a2Q==", + "files": [ + "System.Runtime.Handles.4.0.0-beta-23019.nupkg", + "System.Runtime.Handles.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Handles.nuspec", + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23019": { + "sha512": "KYzLtkN65ySMGpQ/uvHFSdu3hcFmp0Y8Foh16bWCT+xNeHVFIY8A8j5oqUYHbOwJuPNrwoIBOsHisVrD6mRfkA==", + "files": [ + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23019.nupkg.sha512", + "System.Runtime.InteropServices.nuspec", + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec", + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._" + ] + }, + "System.Security.Claims/4.0.0-beta-23019": { + "sha512": "kKseHxGh5pWjM43MZWtub/ZyBWUV3RHNSJuUtTzapeQD2qND6pGGNekMXcxmEZOxrKwFEBAeTlcgmWo/2e6/SQ==", + "files": [ + "System.Security.Claims.4.0.0-beta-23019.nupkg", + "System.Security.Claims.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Claims.nuspec", + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec", + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec", + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec", + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll" + ] + }, + "System.Security.Principal/4.0.0-beta-23019": { + "sha512": "2zkK0eJOfso/Jo+77NVXDoJRggzL0jM0ayeXz+vD8pK9pIRnhpWJVbaGmT7MPBWW9KbPwtbJyXejpUS2rBflUQ==", + "files": [ + "System.Security.Principal.4.0.0-beta-23019.nupkg", + "System.Security.Principal.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.nuspec", + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "sha512": "FYvKKTbncuJCMnc1TmccsJlGSjIQrUJPymt2R3o5uSV1plyGD9V3san/rpq2IO4kDbHjGrQjEtZlbehwUucB5Q==", + "files": [ + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.Windows.nuspec", + "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.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec", + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll" + ] + }, + "System.Text.Encoding/4.0.10-beta-23019": { + "sha512": "NKMM7EowhH4JzVRNip0l8RZqMy934A98sLGUpddQslUus5N3Qsbg+mUTpGjd3X0ns2kASjmJFvvh5i8hh9qMMQ==", + "files": [ + "System.Text.Encoding.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.nuspec", + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23019": { + "sha512": "LBtVrbFvCa0GAAT7z5m/w0dMSynoqPi+11C670me7+1tmW9rnj5O0DGTR9x1GgUgcqf1I+t5lGFyvrHO14++oQ==", + "files": [ + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23019.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec", + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll" + ] + }, + "System.Threading/4.0.10-beta-23019": { + "sha512": "ss8p5o4C+f+rjpq0hxrcFsRXGUF+ojzjsW9MKfLrAqTuXhQywwDAPiTEvvEmDG8ptpwfQHWR09jlhcBNFhkG6w==", + "files": [ + "System.Threading.4.0.10-beta-23019.nupkg", + "System.Threading.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.nuspec", + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/System.Threading.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23019": { + "sha512": "oiv9uNcR5hz20g6x6Ci1BgAREWBNu7yLhAJ1/zTWbBgmUusM6g/QITdynCp3EFgLs5vO36WaCV9Ct8iNwnmRfw==", + "files": [ + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Overlapped.nuspec", + "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.Tasks/4.0.10-beta-23019": { + "sha512": "drgS00Han7hhU1Wpw8aVCrVrZxaSlHddAsHZTomgZqDioG3IFblN09RMeNtaL4m5DLHt+cuzyvNFKUMdjxiklg==", + "files": [ + "System.Threading.Tasks.4.0.10-beta-23019.nupkg", + "System.Threading.Tasks.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.Tasks.nuspec", + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec", + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.Http.Features >= 1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions >= 1.0.0-beta5", + "Microsoft.Framework.NotNullAttribute.Sources >= 1.0.0-beta5", + "Microsoft.Framework.OptionsModel >= 1.0.0-beta5" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [] + } +} \ No newline at end of file diff --git a/test/Microsoft.AspNet.Authentication.Test/project.json b/test/Microsoft.AspNet.Authentication.Test/project.json index c7f594c4f..9494e197b 100644 --- a/test/Microsoft.AspNet.Authentication.Test/project.json +++ b/test/Microsoft.AspNet.Authentication.Test/project.json @@ -3,17 +3,17 @@ "warningsAsErrors": "true" }, "dependencies": { - "Microsoft.AspNet.Authentication.Cookies": "1.0.0-*", - "Microsoft.AspNet.Authentication.Facebook": "1.0.0-*", - "Microsoft.AspNet.Authentication.Google": "1.0.0-*", - "Microsoft.AspNet.Authentication.MicrosoftAccount": "1.0.0-*", - "Microsoft.AspNet.Authentication.OAuthBearer": "1.0.0-*", - "Microsoft.AspNet.Authentication.OpenIdConnect": "1.0.0-*", - "Microsoft.AspNet.Authentication.Twitter": "1.0.0-*", - "Microsoft.AspNet.DataProtection": "1.0.0-*", - "Microsoft.AspNet.TestHost": "1.0.0-*", + "Microsoft.AspNet.Authentication.Cookies": "1.0.0-beta5", + "Microsoft.AspNet.Authentication.Facebook": "1.0.0-beta5", + "Microsoft.AspNet.Authentication.Google": "1.0.0-beta5", + "Microsoft.AspNet.Authentication.MicrosoftAccount": "1.0.0-beta5", + "Microsoft.AspNet.Authentication.OAuthBearer": "1.0.0-beta5", + "Microsoft.AspNet.Authentication.OpenIdConnect": "1.0.0-beta5", + "Microsoft.AspNet.Authentication.Twitter": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.TestHost": "1.0.0-beta5", "Moq": "4.2.1312.1622", - "xunit.runner.aspnet": "2.0.0-aspnet-*" + "xunit.runner.aspnet": "2.0.0-aspnet-beta5" }, "commands": { "test": "xunit.runner.aspnet" diff --git a/test/Microsoft.AspNet.Authentication.Test/project.lock.json b/test/Microsoft.AspNet.Authentication.Test/project.lock.json new file mode 100644 index 000000000..46c020157 --- /dev/null +++ b/test/Microsoft.AspNet.Authentication.Test/project.lock.json @@ -0,0 +1,1788 @@ +{ + "locked": true, + "version": -9996, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Authentication.Cookies/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.Cookies.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.Cookies.dll": {} + } + }, + "Microsoft.AspNet.Authentication.Facebook/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication.OAuth": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.Facebook.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.Facebook.dll": {} + } + }, + "Microsoft.AspNet.Authentication.Google/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication.OAuth": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.Google.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.Google.dll": {} + } + }, + "Microsoft.AspNet.Authentication.OAuth/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "System.Net.Http.WebRequest", + "System.Net.Http", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.OAuth.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.OAuth.dll": {} + } + }, + "Microsoft.AspNet.Authentication.Twitter/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "System.Net.Http.WebRequest", + "System.Net.Http", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.Twitter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.Twitter.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta5", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "System.IO", + "System.Security", + "System.Xml", + "System.Xml.Linq", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta5", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http": "1.0.0-beta5", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta5", + "Microsoft.Framework.Configuration": "1.0.0-beta5", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta5", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta5", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta5", + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5", + "Microsoft.Net.Http.Headers": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "System.Net.Http", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.TestHost.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "System.Collections.Concurrent", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "System.Collections", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Xml", + "System.Xml.Linq", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.IdentityModel.Logging/1.0.0-beta5-206011020": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.IdentityModel.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.IdentityModel.Logging.dll": {} + } + }, + "Microsoft.IdentityModel.Protocol.Extensions/2.0.0-beta5-206011020": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "System.IdentityModel.Tokens": "5.0.0-beta5-206011020", + "Microsoft.IdentityModel.Logging": "1.0.0-beta5-206011020" + }, + "frameworkAssemblies": [ + "System.Net.Http", + "System.IO", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.IdentityModel.Protocol.Extensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.IdentityModel.Protocol.Extensions.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Moq/4.2.1312.1622": { + "compile": { + "lib/net40/Moq.dll": {} + }, + "runtime": { + "lib/net40/Moq.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Shouldly/1.1.1.1": { + "compile": { + "lib/35/Shouldly.dll": {} + }, + "runtime": { + "lib/35/Shouldly.dll": {} + } + }, + "System.IdentityModel.Tokens/5.0.0-beta5-206011020": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "Microsoft.IdentityModel.Logging": "1.0.0-beta5-206011020" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/System.IdentityModel.Tokens.dll": {} + }, + "runtime": { + "lib/dnx451/System.IdentityModel.Tokens.dll": {} + } + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.0.0-rc3-build2880": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880", + "xunit.extensibility.core": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "System.Collections", + "System.Diagnostics.Debug", + "System.Globalization", + "System.Linq", + "System.Reflection", + "System.Reflection.Extensions", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading.Tasks", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/xunit.execution.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.AspNet.dll": {} + } + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "dependencies": { + "xunit.abstractions": "[2.0.0-rc3-build2880]" + }, + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.assert": "2.0.0-rc3-build2880", + "xunit.execution.AspNet": "2.0.0-aspnet-beta5", + "xunit.runner.utility.AspNet": "2.0.0-aspnet-beta5" + }, + "frameworkAssemblies": [ + "System.ObjectModel", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/xunit.runner.aspnet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.aspnet.dll": {} + } + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "System.Collections", + "System.Reflection", + "System.Runtime", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNet.Authentication/1.0.0-beta5": { + "serviceable": true, + "sha512": "0aGfwSmbVHhNIQSp6dXqz6sLYD07U9Dgnw8rm/wnQDkLFfJ9iPQKBBTk/Oh/6wGwaSg9Ko7mzXTwILE42HZdZA==", + "files": [ + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.xml" + ] + }, + "Microsoft.AspNet.Authentication.Cookies/1.0.0-beta5": { + "serviceable": true, + "sha512": "slpGZOh7Gp8YFE9cdlzce67LFUAspBAp6WfjzhH270Ck/D8lzY83DiDLe2IQOhgH+MxlYi+r4bb7PvOhmoSM7g==", + "files": [ + "Microsoft.AspNet.Authentication.Cookies.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.Cookies.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.Cookies.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.Cookies.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.Cookies.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Cookies.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Cookies.xml" + ] + }, + "Microsoft.AspNet.Authentication.Facebook/1.0.0-beta5": { + "serviceable": true, + "sha512": "iBqWKsJPCS+ajVOrd4QQsuQ16Q6hNL5aCESEjyVlGLJXJbqMPkWraKxTWRJYNLm1PN8cKXkAhuB4v91hqne1Pg==", + "files": [ + "Microsoft.AspNet.Authentication.Facebook.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.Facebook.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.Facebook.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.Facebook.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.Facebook.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Facebook.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Facebook.xml" + ] + }, + "Microsoft.AspNet.Authentication.Google/1.0.0-beta5": { + "serviceable": true, + "sha512": "H0nhpZSn0U49CTURDESV9AB7t/WqssJiOOy4h61euZ+D0BvAsxzbm9fhvY3Nsm3LXesPeJy/y6SLtwh4g0u4mw==", + "files": [ + "Microsoft.AspNet.Authentication.Google.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.Google.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.Google.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.Google.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.Google.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Google.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Google.xml" + ] + }, + "Microsoft.AspNet.Authentication.OAuth/1.0.0-beta5": { + "serviceable": true, + "sha512": "BiqoBm029GJULff0YlvBv3A1aH7MdHhJaV6RkMKDxFtIN2r2KwK9eNsEKvpYgv7jwqbX/mhMzrcp5jKld3+Mlw==", + "files": [ + "Microsoft.AspNet.Authentication.OAuth.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.OAuth.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.OAuth.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.OAuth.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.OAuth.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.OAuth.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.OAuth.xml" + ] + }, + "Microsoft.AspNet.Authentication.Twitter/1.0.0-beta5": { + "serviceable": true, + "sha512": "kyXpMJ3kKloDCa5t9SHtM9bTuAwjF4UoNWtarfOVztyJdPOXEQue1XgbGrXgAnqSCsl2PQPELQDKWCuGX7GTUA==", + "files": [ + "Microsoft.AspNet.Authentication.Twitter.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authentication.Twitter.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authentication.Twitter.nuspec", + "lib/dnx451/Microsoft.AspNet.Authentication.Twitter.dll", + "lib/dnx451/Microsoft.AspNet.Authentication.Twitter.xml", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Twitter.dll", + "lib/dnxcore50/Microsoft.AspNet.Authentication.Twitter.xml" + ] + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta5": { + "serviceable": true, + "sha512": "nhCP9Q0TSA3F31w+SXoXh5X9zbGRpyGZrkBhid++k673Mxg1uzkDNa18Z0edF7Yiua2ZHZeA/GPkPUG0pzER/A==", + "files": [ + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Cryptography.Internal.nuspec", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.xml", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.dll", + "lib/net451/Microsoft.AspNet.Cryptography.Internal.xml" + ] + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta5": { + "serviceable": true, + "sha512": "f8oqJIyHUbmsIkgEq+A7QQOKr60s4GoewR2I+ItHGuHdwV6ICuNnu4yKSx7v0k/uh51T49ECcrrMApUepuV2mg==", + "files": [ + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.nuspec", + "lib/dnx451/Microsoft.AspNet.DataProtection.dll", + "lib/dnx451/Microsoft.AspNet.DataProtection.xml", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.xml", + "lib/net451/Microsoft.AspNet.DataProtection.dll", + "lib/net451/Microsoft.AspNet.DataProtection.xml" + ] + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ow8W+rMtA0rsiCtvHtUs+f5wrzMj0rtoSjl+vTgtGNQ0Ib+3tsGbKgA9+l5kzGKG6RUebnCK+vXKP/zCXDZOvw==", + "files": [ + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.DataProtection.Abstractions.nuspec", + "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.FeatureModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "M6ltNGrh4gHU+DiMbV074ZDwDQAIYx1SEOlltX7XzKbiDztYuTAtXiv8M/wkjZBeVdkszkE0NPOlMb/pbfww6g==", + "files": [ + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg", + "Microsoft.AspNet.FeatureModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.FeatureModel.nuspec", + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll", + "lib/dnx451/Microsoft.AspNet.FeatureModel.xml", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.xml" + ] + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Az9I0ufHV2uLCmLtle7amzWUrOVkpbOma36HIH6NKuOSDdKtCdn83Ycd3SMXQb0dSA6LgDrJQJypbdAEKq45Eg==", + "files": [ + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Abstractions.nuspec", + "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.Physical/1.0.0-beta5": { + "serviceable": true, + "sha512": "kjyV734jm7qapKPlr5jmUnlPvjBWTeVY8w9l66MvczxgmUxMqkfO76o7ttFAnlXZg7Pt08Mf4GLx4vMLDJ2IIg==", + "files": [ + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta5.nupkg", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Physical.nuspec", + "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.Hosting/1.0.0-beta5": { + "serviceable": true, + "sha512": "sUkpWUOM16vhFoHiKNvhU01rV3b2vdCDrBj+orvoZrNozVV1qvEU+/tESW3xBG+nOFeWOB5P/vpYJsLIqvFJ3w==", + "files": [ + "Microsoft.AspNet.Hosting.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Hosting.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Hosting.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "SxPZMIOQrLgpxMT7W5ezkvpvVGocDREAkMMCsb8tfbeFrqsS6ONgjz3Q8HDPLq/sLkfPXvhi9Pu85yDTKW45lg==", + "files": [ + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Hosting.Abstractions.nuspec", + "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.Server.Abstractions/1.0.0-beta5": { + "sha512": "Z9zKH1kFlhGAZ6hO1s4IYeAN2fZeoIgUO7Rt4HWp4EBf4w2caBCrSWUlqEmVO26ZF+rfQpagvZNlBjL0B80V3A==", + "files": [ + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Hosting.Server.Abstractions.nuspec", + "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.Http/1.0.0-beta5": { + "serviceable": true, + "sha512": "Smn8m/xaNcNK4GKTZ5lfkHL4OqKCyxrt5m+1i3Dpe5wjUHR+Z9qGVjcuT/ZTJLfSZBelpP0yKZHFqcgUCMujFw==", + "files": [ + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "vNdZzaCID7R1k93o+N6LQ9d3Lx49bAoSAwslnzhcKXvbSvbHjZ1DRFDngrHIlY/ckcls0MH+j2qePUtuCTb8NQ==", + "files": [ + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec", + "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.Extensions/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ai6Q0oPVzBQwpbeMcS585MZEjsYRAmjd+V6zSqutFb0u9IwxLV0ALr9dNT6Fg3/Wf+LSuBxeCfk5FZ5BjfuYqA==", + "files": [ + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec", + "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.Features/1.0.0-beta5": { + "serviceable": true, + "sha512": "jZi6dVWXrN3cABLWjm0Dgh7CIm0VppzDPpUUuOgIIfnr9E4QcG87Xq7s25JIFsXHkInmPH2DSUn5cp6PA9QrIw==", + "files": [ + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "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.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "eIcd2JgD6siWLEkJQZ8NYEKR2vNrOhzBOykT7h1GNVjIfHocETXAz2a9PG6f0n+wrklzJXroQSy0MqKDcog0Bg==", + "files": [ + "Microsoft.AspNet.TestHost.1.0.0-beta5.nupkg", + "Microsoft.AspNet.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.TestHost.nuspec", + "lib/dnx451/Microsoft.AspNet.TestHost.dll", + "lib/dnx451/Microsoft.AspNet.TestHost.xml", + "lib/dnxcore50/Microsoft.AspNet.TestHost.dll", + "lib/dnxcore50/Microsoft.AspNet.TestHost.xml" + ] + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta5": { + "serviceable": true, + "sha512": "Ieb9JeaI57V2HRWyFsQE+Ioo7jRE7gp8QgmHAgCuc58RfUUvKf3BdmjMMqw+0DfOQMf4VL9xWpj0yQ/bMA1VDA==", + "files": [ + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec", + "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.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec", + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "qPWM85eWgzWYtt8QMydu4c4uaAO65QXieuxiPZ/QGlIiLKx2sZv8gsc8yFbu4IfM7SPfrixypckD/gIVv67Wdw==", + "files": [ + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "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.CommandLineUtils.Sources/1.0.0-beta5": { + "sha512": "sZIlSWm9r2CFDI5JB21lKwa8Hq7DZPBYx3LcBnuxZnhSh2AwrhrS88YUZSMP6QCV+PHMwj0udTdnS1eZ2DbM7w==", + "files": [ + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.CommandLineUtils.Sources.nuspec", + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.xml", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.xml", + "shared/AnsiConsole.cs", + "shared/CommandArgument.cs", + "shared/CommandLineApplication.cs", + "shared/CommandOption.cs", + "shared/CommandOptionType.cs" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "serviceable": true, + "sha512": "UBw3f+fKi4/WHWIz3oTKF5UiLjmfvTiDgU9oCjYYApqKUMIji4VPbgsoqCzEzgXPHpLHDGkBal6Ux0Gcgu15Ig==", + "files": [ + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "dW5gHHlvvNnrFFSGtfOFhKClSi9Eb4WFPVdrrIbZYq2gIVw2Dde740p68H3+v9Fr511sk4yPCkGZ0wqXm1GObw==", + "files": [ + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "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.Binder/1.0.0-beta5": { + "serviceable": true, + "sha512": "xSWVoCC0gtn9h12O/M2Eie6eXehJ0P2ovvGkZU5ZWNh8ycTyisyKrkhAmtObcF0dDdPJO9HXUHbRT5ady9fb8Q==", + "files": [ + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml" + ] + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta5": { + "serviceable": true, + "sha512": "yVOjzNMYtfAaOE0cG5vTDkNvZ4lI6y30F5m9/9IjTkEtsYb1wa8wA4nppiquWKE3Hui0rCOGwQsGibh+s/krew==", + "files": [ + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.CommandLine.nuspec", + "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.EnvironmentVariables/1.0.0-beta5": { + "serviceable": true, + "sha512": "Tfm9RDrFJI2xhQy2glkmJnC8gMY9991gMyNGO/Ndt2SFlCXMZFJpVxlbrdJoL7K1hWfRqHkUnPWddxKtVFyIcA==", + "files": [ + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.EnvironmentVariables.nuspec", + "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.Ini/1.0.0-beta5": { + "serviceable": true, + "sha512": "wcqJbcZzrVxp9TJ5skkWn/amgebKiRElPIxP9cWe3ww7igJh9VuCjRyuRjZlMIl8z6Ezqhs0JpaCXz/Da/ieAQ==", + "files": [ + "Microsoft.Framework.Configuration.Ini.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Ini.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Ini.nuspec", + "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.DependencyInjection/1.0.0-beta5": { + "serviceable": true, + "sha512": "Jau27ULONglLGNu4FAwk7XjC3JXB4LsSWb8QsSlCotiJmOXHG7x+MEVz0nAgmFFkN2VGjFjK0Klnz0z9aDaBaw==", + "files": [ + "Microsoft.Framework.DependencyInjection.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "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.Logging/1.0.0-beta5": { + "serviceable": true, + "sha512": "YbfHijwmKd3PsNSJ6iYRARwSeCPwkZKY9s3qb+jNFqom2QnD9PDq9q0yIZZBWZMJ3EAsRIZa92FYuKnNKPfX9g==", + "files": [ + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "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.NotNullAttribute.Sources/1.0.0-beta5": { + "sha512": "hgETnks4ovIE4ySkFs6mQ+QN195kOIM+3IxgIqQFYtuF9tfNdw1/xkkwm9ip7vUifJlNC4O5d9o7CJ2ou46GyA==", + "files": [ + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "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", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "oK4jCjvQfz1NGBUf73euKqPDhC4aSJ3fkpOrozrOxVL85ToF+QyrD4yWclNCkf0/WnEUjXh6eWsfiEqI9zgODg==", + "files": [ + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec", + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec", + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec", + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml" + ] + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta5": { + "serviceable": true, + "sha512": "y/2QI2ruRp1Wc3qgIDxQex7ExueFgwd9M5Jw/xJA+tIRuwLlmyDvegDpcBQwqWIanG3pd2Tm5sjcPSTqPLcTyQ==", + "files": [ + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.nuspec", + "lib/dnx451/Microsoft.Framework.WebEncoders.dll", + "lib/dnx451/Microsoft.Framework.WebEncoders.xml", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.xml", + "lib/net45/Microsoft.Framework.WebEncoders.dll", + "lib/net45/Microsoft.Framework.WebEncoders.xml" + ] + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta5": { + "serviceable": true, + "sha512": "KIwD5E5o4osx5NnSrqppt3W8TDdel2S1mnsdXGZn1N61enxic4v5Al51RPvcbGAPoVPQhru3fFao7FdxmfWGnQ==", + "files": [ + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.WebEncoders.Core.nuspec", + "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.IdentityModel.Logging/1.0.0-beta5-206011020": { + "serviceable": true, + "sha512": "j9tEQEtYqlfhj3eHq49Oo48398en2HL4nYOhjLXtItaa4Wb03LV8dvjr3JdnJEBpyXOyYJXnzCAwLzcjnISOpw==", + "files": [ + "Microsoft.IdentityModel.Logging.1.0.0-beta5-206011020.nupkg", + "Microsoft.IdentityModel.Logging.1.0.0-beta5-206011020.nupkg.sha512", + "Microsoft.IdentityModel.Logging.nuspec", + "lib/dnx451/Microsoft.IdentityModel.Logging.dll", + "lib/dnx451/Microsoft.IdentityModel.Logging.xml", + "lib/dnxcore50/Microsoft.IdentityModel.Logging.dll", + "lib/dnxcore50/Microsoft.IdentityModel.Logging.xml" + ] + }, + "Microsoft.IdentityModel.Protocol.Extensions/2.0.0-beta5-206011020": { + "serviceable": true, + "sha512": "kOWExUXDJI1rySKc/2zxZyECwR84Rn2u7/QI2d0hwkunsDCiiLu95WCDSPpw2WQjzuGiRWTieL7mt8KN++UJog==", + "files": [ + "Microsoft.IdentityModel.Protocol.Extensions.2.0.0-beta5-206011020.nupkg", + "Microsoft.IdentityModel.Protocol.Extensions.2.0.0-beta5-206011020.nupkg.sha512", + "Microsoft.IdentityModel.Protocol.Extensions.nuspec", + "lib/dnx451/Microsoft.IdentityModel.Protocol.Extensions.dll", + "lib/dnx451/Microsoft.IdentityModel.Protocol.Extensions.xml", + "lib/dnxcore50/Microsoft.IdentityModel.Protocol.Extensions.dll", + "lib/dnxcore50/Microsoft.IdentityModel.Protocol.Extensions.xml" + ] + }, + "Microsoft.Net.Http.Headers/1.0.0-beta5": { + "serviceable": true, + "sha512": "ewp5ueEWtXW+fnzn0QMhTV78gDOHoO/EYgzay6nYzAP92AgaP1r13lTkh1VDpbHaCxm9GWweUkojIWZ196iQUQ==", + "files": [ + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-beta5.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec", + "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" + ] + }, + "Moq/4.2.1312.1622": { + "sha512": "mPAjm1Kv9jX745D3hEYDBycRT0T8gnAJE2dutbfP9meyHiRrCgQarHajEvKh5SMKM1D3RcHGr/Pg3JJEtKhu9Q==", + "files": [ + "Moq.4.2.1312.1622.nupkg", + "Moq.4.2.1312.1622.nupkg.sha512", + "Moq.nuspec", + "lib/net35/Moq.dll", + "lib/net35/Moq.xml", + "lib/net40/Moq.dll", + "lib/net40/Moq.xml", + "lib/sl4/Moq.Silverlight.dll", + "lib/sl4/Moq.Silverlight.xml" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "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", + "tools/install.ps1" + ] + }, + "Shouldly/1.1.1.1": { + "sha512": "35Khi6HJWKoP8OOpJ07A73saxIQMnJOqS8j34I+esHwDraSm/nRah1Oldl1Lznj0nC746pV437/iPAoEEZRtYw==", + "files": [ + "BREAKING CHANGES.txt", + "LICENSE.txt", + "README.txt", + "Shouldly.1.1.1.1.nupkg", + "Shouldly.1.1.1.1.nupkg.sha512", + "Shouldly.nuspec", + "lib/35/Shouldly.dll", + "lib/35/Shouldly.pdb" + ] + }, + "System.IdentityModel.Tokens/5.0.0-beta5-206011020": { + "serviceable": true, + "sha512": "KCAG0ne31aJxRcHI5rVY7002bvXG9evX85mmWFe42+YcZ1tIvwlUL6c3C+f+wbL4/Q3vqeVUwD+iX4MZSrtSHQ==", + "files": [ + "System.IdentityModel.Tokens.5.0.0-beta5-206011020.nupkg", + "System.IdentityModel.Tokens.5.0.0-beta5-206011020.nupkg.sha512", + "System.IdentityModel.Tokens.nuspec", + "lib/dnx451/System.IdentityModel.Tokens.dll", + "lib/dnx451/System.IdentityModel.Tokens.xml", + "lib/dnxcore50/System.IdentityModel.Tokens.dll", + "lib/dnxcore50/System.IdentityModel.Tokens.xml" + ] + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "sha512": "TkElLDkB9UwDl9Ka8lCRlANpI8OOIprWchSbVOkSRUcFTOFT42B7+t5RWYZeayQluAqAiYpT4tw7zQZdghWSYA==", + "files": [ + "xunit.abstractions.2.0.0-rc3-build2880.nupkg", + "xunit.abstractions.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.abstractions.nuspec", + "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.assert/2.0.0-rc3-build2880": { + "sha512": "8ytSE6XlpeLIkuba3bWKmqX07vMVN3cCRZ+9cZmCYwuNOgHP3T9YYz+pWLjUbdBhM8uXdzueIZkJN/Ig6YIGkg==", + "files": [ + "xunit.assert.2.0.0-rc3-build2880.nupkg", + "xunit.assert.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.assert.nuspec", + "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.execution.AspNet/2.0.0-aspnet-beta5": { + "sha512": "hsX/BOW0xd29ZDX0nLzDgo2iCDTS06VhDcv9ZRkQzZpeAkOvIaFgkHX/5neGrtCiItnEfRiUWP476rlzYVdKcA==", + "files": [ + "xunit.execution.AspNet.2.0.0-aspnet-beta5.nupkg", + "xunit.execution.AspNet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.execution.AspNet.nuspec", + "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.extensibility.core/2.0.0-rc3-build2880": { + "sha512": "h5qu03ot74RyjJt69AozLZPUCRklHqfA9IAQtu9wCQ1MmPXN0X+q7vu3ZH+moXfFlDRfsaDtuKr7DdaxhZaw4Q==", + "files": [ + "xunit.extensibility.core.2.0.0-rc3-build2880.nupkg", + "xunit.extensibility.core.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.extensibility.core.nuspec", + "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.runner.aspnet/2.0.0-aspnet-beta5": { + "sha512": "yGmIP+ED7HTFa/oCY/OjDMn3QOTtsquhFO+l7ZPJ0kKGWJ84p3rnD4E0Hvo/7t7pEMpUAkzXSeqOwobsf1VleA==", + "files": [ + "xunit.runner.aspnet.2.0.0-aspnet-beta5.nupkg", + "xunit.runner.aspnet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.runner.aspnet.nuspec", + "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.utility.AspNet/2.0.0-aspnet-beta5": { + "sha512": "sydRLOseu0P8iod7Zezt0GimHoKuEQCRlwvTEqY/0WcDLdCCoca/+tvLrd8NumBA0hHUj1OsxOkvURW+hTA9zw==", + "files": [ + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta5.nupkg", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.runner.utility.AspNet.nuspec", + "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" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.Authentication.Cookies >= 1.0.0-beta5", + "Microsoft.AspNet.Authentication.Facebook >= 1.0.0-beta5", + "Microsoft.AspNet.Authentication.Google >= 1.0.0-beta5", + "Microsoft.AspNet.Authentication.MicrosoftAccount >= 1.0.0-beta5", + "Microsoft.AspNet.Authentication.OAuthBearer >= 1.0.0-beta5", + "Microsoft.AspNet.Authentication.OpenIdConnect >= 1.0.0-beta5", + "Microsoft.AspNet.Authentication.Twitter >= 1.0.0-beta5", + "Microsoft.AspNet.DataProtection >= 1.0.0-beta5", + "Microsoft.AspNet.TestHost >= 1.0.0-beta5", + "Moq >= 4.2.1312.1622", + "xunit.runner.aspnet >= 2.0.0-aspnet-beta5" + ], + "DNX,Version=v4.5.1": [ + "Shouldly >= 1.1.1.1" + ] + } +} \ No newline at end of file diff --git a/test/Microsoft.AspNet.Authorization.Test/project.json b/test/Microsoft.AspNet.Authorization.Test/project.json index 065ecb7d3..fbde21dcb 100644 --- a/test/Microsoft.AspNet.Authorization.Test/project.json +++ b/test/Microsoft.AspNet.Authorization.Test/project.json @@ -3,10 +3,10 @@ "warningsAsErrors": "true" }, "dependencies": { - "Microsoft.AspNet.Authorization": "1.0.0-*", - "Microsoft.Framework.DependencyInjection": "1.0.0-*", + "Microsoft.AspNet.Authorization": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta5", "Moq": "4.2.1312.1622", - "xunit.runner.aspnet": "2.0.0-aspnet-*" + "xunit.runner.aspnet": "2.0.0-aspnet-beta5" }, "commands": { "test": "xunit.runner.aspnet" diff --git a/test/Microsoft.AspNet.Authorization.Test/project.lock.json b/test/Microsoft.AspNet.Authorization.Test/project.lock.json new file mode 100644 index 000000000..95491d089 --- /dev/null +++ b/test/Microsoft.AspNet.Authorization.Test/project.lock.json @@ -0,0 +1,858 @@ +{ + "locked": true, + "version": -9996, + "targets": { + "DNX,Version=v4.5.1": { + "Microsoft.AspNet.Authorization/1.0.0-beta5": { + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.OptionsModel": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authorization.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authorization.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "System.Collections.Concurrent", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.NotNullAttribute.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.NotNullAttribute.Sources.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta5", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "System.Collections", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Xml", + "System.Xml.Linq", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Moq/4.2.1312.1622": { + "compile": { + "lib/net40/Moq.dll": {} + }, + "runtime": { + "lib/net40/Moq.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Shouldly/1.1.1.1": { + "compile": { + "lib/35/Shouldly.dll": {} + }, + "runtime": { + "lib/35/Shouldly.dll": {} + } + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.0.0-rc3-build2880": { + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.execution.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880", + "xunit.extensibility.core": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "System.Collections", + "System.Diagnostics.Debug", + "System.Globalization", + "System.Linq", + "System.Reflection", + "System.Reflection.Extensions", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading.Tasks", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/xunit.execution.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.AspNet.dll": {} + } + }, + "xunit.extensibility.core/2.0.0-rc3-build2880": { + "dependencies": { + "xunit.abstractions": "[2.0.0-rc3-build2880]" + }, + "compile": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.runner.aspnet/2.0.0-aspnet-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.assert": "2.0.0-rc3-build2880", + "xunit.execution.AspNet": "2.0.0-aspnet-beta5", + "xunit.runner.utility.AspNet": "2.0.0-aspnet-beta5" + }, + "frameworkAssemblies": [ + "System.ObjectModel", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/xunit.runner.aspnet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.aspnet.dll": {} + } + }, + "xunit.runner.utility.AspNet/2.0.0-aspnet-beta5": { + "dependencies": { + "xunit.abstractions": "2.0.0-rc3-build2880" + }, + "frameworkAssemblies": [ + "System.Collections", + "System.Reflection", + "System.Runtime", + "mscorlib", + "System", + "System.Core", + "Microsoft.CSharp" + ], + "compile": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.AspNet.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.AspNet.Authorization/1.0.0-beta5": { + "serviceable": true, + "sha512": "IwrJVFjSTemSQFQst2NLphcN0i8+UsrN4H8NLuTIrA0Hj2O96LNLn4l69YHL80Qcf5YOh7ViCWBOukW9itz1Zw==", + "files": [ + "Microsoft.AspNet.Authorization.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Authorization.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Authorization.nuspec", + "lib/dnx451/Microsoft.AspNet.Authorization.dll", + "lib/dnx451/Microsoft.AspNet.Authorization.xml", + "lib/dnxcore50/Microsoft.AspNet.Authorization.dll", + "lib/dnxcore50/Microsoft.AspNet.Authorization.xml" + ] + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta5": { + "serviceable": true, + "sha512": "jZi6dVWXrN3cABLWjm0Dgh7CIm0VppzDPpUUuOgIIfnr9E4QcG87Xq7s25JIFsXHkInmPH2DSUn5cp6PA9QrIw==", + "files": [ + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta5.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "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.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec", + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml" + ] + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta5": { + "sha512": "sZIlSWm9r2CFDI5JB21lKwa8Hq7DZPBYx3LcBnuxZnhSh2AwrhrS88YUZSMP6QCV+PHMwj0udTdnS1eZ2DbM7w==", + "files": [ + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.CommandLineUtils.Sources.nuspec", + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.xml", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.xml", + "shared/AnsiConsole.cs", + "shared/CommandArgument.cs", + "shared/CommandLineApplication.cs", + "shared/CommandOption.cs", + "shared/CommandOptionType.cs" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta5": { + "serviceable": true, + "sha512": "UBw3f+fKi4/WHWIz3oTKF5UiLjmfvTiDgU9oCjYYApqKUMIji4VPbgsoqCzEzgXPHpLHDGkBal6Ux0Gcgu15Ig==", + "files": [ + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "dW5gHHlvvNnrFFSGtfOFhKClSi9Eb4WFPVdrrIbZYq2gIVw2Dde740p68H3+v9Fr511sk4yPCkGZ0wqXm1GObw==", + "files": [ + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "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.Binder/1.0.0-beta5": { + "serviceable": true, + "sha512": "xSWVoCC0gtn9h12O/M2Eie6eXehJ0P2ovvGkZU5ZWNh8ycTyisyKrkhAmtObcF0dDdPJO9HXUHbRT5ady9fb8Q==", + "files": [ + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta5": { + "serviceable": true, + "sha512": "Jau27ULONglLGNu4FAwk7XjC3JXB4LsSWb8QsSlCotiJmOXHG7x+MEVz0nAgmFFkN2VGjFjK0Klnz0z9aDaBaw==", + "files": [ + "Microsoft.Framework.DependencyInjection.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "/WgY/P0YftvScIfLyLee36H7fb6EUG2L6p5qZMp7quJ3aUEHUolZpXBbYQ9XP21KuX4ab0/zH8DD0mpMKjGDsw==", + "files": [ + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "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.Logging/1.0.0-beta5": { + "serviceable": true, + "sha512": "YbfHijwmKd3PsNSJ6iYRARwSeCPwkZKY9s3qb+jNFqom2QnD9PDq9q0yIZZBWZMJ3EAsRIZa92FYuKnNKPfX9g==", + "files": [ + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "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.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "roTRT5h5eSEIS1on9K4M+IhI/YD1vXDpslXXebmxWqRN+9TbAd2xc/j5KgAOZd0hBem1R5rPiiBkBnNa+FSeBA==", + "files": [ + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "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.NotNullAttribute.Sources/1.0.0-beta5": { + "sha512": "hgETnks4ovIE4ySkFs6mQ+QN195kOIM+3IxgIqQFYtuF9tfNdw1/xkkwm9ip7vUifJlNC4O5d9o7CJ2ou46GyA==", + "files": [ + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.NotNullAttribute.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.NotNullAttribute.Sources.nuspec", + "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", + "shared/NotNullAttribute.cs" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta5": { + "serviceable": true, + "sha512": "oK4jCjvQfz1NGBUf73euKqPDhC4aSJ3fkpOrozrOxVL85ToF+QyrD4yWclNCkf0/WnEUjXh6eWsfiEqI9zgODg==", + "files": [ + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec", + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec", + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec", + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml" + ] + }, + "Moq/4.2.1312.1622": { + "sha512": "mPAjm1Kv9jX745D3hEYDBycRT0T8gnAJE2dutbfP9meyHiRrCgQarHajEvKh5SMKM1D3RcHGr/Pg3JJEtKhu9Q==", + "files": [ + "Moq.4.2.1312.1622.nupkg", + "Moq.4.2.1312.1622.nupkg.sha512", + "Moq.nuspec", + "lib/net35/Moq.dll", + "lib/net35/Moq.xml", + "lib/net40/Moq.dll", + "lib/net40/Moq.xml", + "lib/sl4/Moq.Silverlight.dll", + "lib/sl4/Moq.Silverlight.xml" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "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", + "tools/install.ps1" + ] + }, + "Shouldly/1.1.1.1": { + "sha512": "35Khi6HJWKoP8OOpJ07A73saxIQMnJOqS8j34I+esHwDraSm/nRah1Oldl1Lznj0nC746pV437/iPAoEEZRtYw==", + "files": [ + "BREAKING CHANGES.txt", + "LICENSE.txt", + "README.txt", + "Shouldly.1.1.1.1.nupkg", + "Shouldly.1.1.1.1.nupkg.sha512", + "Shouldly.nuspec", + "lib/35/Shouldly.dll", + "lib/35/Shouldly.pdb" + ] + }, + "xunit.abstractions/2.0.0-rc3-build2880": { + "sha512": "TkElLDkB9UwDl9Ka8lCRlANpI8OOIprWchSbVOkSRUcFTOFT42B7+t5RWYZeayQluAqAiYpT4tw7zQZdghWSYA==", + "files": [ + "xunit.abstractions.2.0.0-rc3-build2880.nupkg", + "xunit.abstractions.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.abstractions.nuspec", + "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.assert/2.0.0-rc3-build2880": { + "sha512": "8ytSE6XlpeLIkuba3bWKmqX07vMVN3cCRZ+9cZmCYwuNOgHP3T9YYz+pWLjUbdBhM8uXdzueIZkJN/Ig6YIGkg==", + "files": [ + "xunit.assert.2.0.0-rc3-build2880.nupkg", + "xunit.assert.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.assert.nuspec", + "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.execution.AspNet/2.0.0-aspnet-beta5": { + "sha512": "hsX/BOW0xd29ZDX0nLzDgo2iCDTS06VhDcv9ZRkQzZpeAkOvIaFgkHX/5neGrtCiItnEfRiUWP476rlzYVdKcA==", + "files": [ + "xunit.execution.AspNet.2.0.0-aspnet-beta5.nupkg", + "xunit.execution.AspNet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.execution.AspNet.nuspec", + "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.extensibility.core/2.0.0-rc3-build2880": { + "sha512": "h5qu03ot74RyjJt69AozLZPUCRklHqfA9IAQtu9wCQ1MmPXN0X+q7vu3ZH+moXfFlDRfsaDtuKr7DdaxhZaw4Q==", + "files": [ + "xunit.extensibility.core.2.0.0-rc3-build2880.nupkg", + "xunit.extensibility.core.2.0.0-rc3-build2880.nupkg.sha512", + "xunit.extensibility.core.nuspec", + "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.runner.aspnet/2.0.0-aspnet-beta5": { + "sha512": "yGmIP+ED7HTFa/oCY/OjDMn3QOTtsquhFO+l7ZPJ0kKGWJ84p3rnD4E0Hvo/7t7pEMpUAkzXSeqOwobsf1VleA==", + "files": [ + "xunit.runner.aspnet.2.0.0-aspnet-beta5.nupkg", + "xunit.runner.aspnet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.runner.aspnet.nuspec", + "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.utility.AspNet/2.0.0-aspnet-beta5": { + "sha512": "sydRLOseu0P8iod7Zezt0GimHoKuEQCRlwvTEqY/0WcDLdCCoca/+tvLrd8NumBA0hHUj1OsxOkvURW+hTA9zw==", + "files": [ + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta5.nupkg", + "xunit.runner.utility.AspNet.2.0.0-aspnet-beta5.nupkg.sha512", + "xunit.runner.utility.AspNet.nuspec", + "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" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.Authorization >= 1.0.0-beta5", + "Microsoft.Framework.DependencyInjection >= 1.0.0-beta5", + "Moq >= 4.2.1312.1622", + "xunit.runner.aspnet >= 2.0.0-aspnet-beta5" + ], + "DNX,Version=v4.5.1": [ + "Shouldly >= 1.1.1.1" + ] + } +} \ No newline at end of file