From 0a320419c3a44e5f3dcd981b0f7c619a200fd35e Mon Sep 17 00:00:00 2001 From: Richard Lander Date: Sat, 25 Jul 2015 21:15:21 -0700 Subject: [PATCH] Initial version of getdotnet app --- framework-versions.json | 108 + tellver/Controllers/VersionController.cs | 110 + tellver/Models/FrameworkVersion.cs | 30 + tellver/Startup.cs | 25 + tellver/project.json | 20 + tellver/project.lock.json | 6171 ++++++++++++++++++++++ 6 files changed, 6464 insertions(+) create mode 100644 framework-versions.json create mode 100644 tellver/Controllers/VersionController.cs create mode 100644 tellver/Models/FrameworkVersion.cs create mode 100644 tellver/Startup.cs create mode 100644 tellver/project.json create mode 100644 tellver/project.lock.json diff --git a/framework-versions.json b/framework-versions.json new file mode 100644 index 0000000..2a27f1a --- /dev/null +++ b/framework-versions.json @@ -0,0 +1,108 @@ +{ + "frameworkVersions" : + [ + { + "target" : ".NETFramework,Version=v4.6", + "version" : "4.6", + "info":"http://blogs.msdn.com/b/dotnet/archive/2015/07/20/announcing-net-framework-4-6.aspx", + "download" : "http://go.microsoft.com/fwlink/?LinkId=528259", + "webInstaller" : "http://go.microsoft.com/fwlink/?LinkId=528222", + "offlineInstaller" : "http://go.microsoft.com/fwlink/?LinkId=528232", + "targetingPack" : "http://go.microsoft.com/fwlink/?LinkId=528261", + "languagePack" : "https://support.microsoft.com/en-us/kb/3045556" + }, + { + "target" : ".NETFramework,Version=v4.5.2", + "info":"http://blogs.msdn.com/b/dotnet/archive/2014/05/05/announcing-the-net-framework-4-5-2-release.aspx", + "version" : "4.5.2", + "preferVersion" : "4.6", + "download" : "http://go.microsoft.com/fwlink/?LinkId=397674", + "webInstaller" : "http://go.microsoft.com/fwlink/?LinkId=397674", + "offlineInstaller" : "http://go.microsoft.com/fwlink/?LinkId=328856", + "targetingPack" : "http://go.microsoft.com/fwlink/?LinkId=328857", + "languagePack" : "http://go.microsoft.com/fwlink/?LinkId=328858" + }, + { + "target" : ".NETFramework,Version=v4.5.1", + "version" : "4.5.1", + "preferVersion" : "4.6", + "info" : "http://blogs.msdn.com/b/dotnet/archive/2013/10/17/net-framework-4-5-1-rtm-gt-start-coding.aspx", + "download" : "http://go.microsoft.com/fwlink/?LinkId=308918" + }, + { + "target" : ".NETFramework,Version=v4.5", + "version" : "4.5", + "preferVersion" : "4.6", + "download" : "http://go.microsoft.com/fwlink/?LinkId=229538" + }, + { + "target" : ".NETFramework,Version=v4.0.3", + "aliases" : [".NETFramework,Version=v4.0.3,Profile=Client"], + "version" : "4.0.3", + "preferVersion" : "4.6", + "download" : "http://go.microsoft.com/fwlink/?LinkID=229541" + }, + { + "target" : ".NETFramework,Version=v4.0.2", + "aliases" : [".NETFramework,Version=v4.0.2,Profile=Client"], + "version" : "4.0.2", + "preferVersion" : "4.6", + "download" : "http://go.microsoft.com/fwlink/?LinkID=229539" + }, + { + "target" : ".NETFramework,Version=v4.0.1", + "aliases" : [".NETFramework,Version=v4.0.1,Profile=Client"], + "version" : "4.0.1", + "preferVersion" : "4.6", + "download" : "http://go.microsoft.com/fwlink/?LinkID=213996" + }, + { + "target" : ".NETFramework,Version=v4.0", + "aliases": ["v4.0", "v4.0.30319",".NETFramework,Version=v4.0,Profile=Client"], + "version" : "4", + "preferVersion" : "4.6", + "download" : "http://go.microsoft.com/fwlink/?LinkId=213834" + }, + { + "target" : "3.5", + "aliases" : ["Client"], + "version" : "3.5", + "download" : "http://go.microsoft.com/fwlink/?LinkId=213828", + "webInstaller" : "http://download.microsoft.com/download/2/0/E/20E90413-712F-438C-988E-FDAA79A8AC3D/dotnetfx35.exe" + }, + { + "target" : "v2.0.50727", + "version" : "2", + "preferVersion" : "3.5", + "download" : "http://go.microsoft.com/fwlink/?LinkId=213823" + }, + { + "target" : "v1.1.4322", + "version" : "1.1", + "preferVersion" : "3.5", + "download" : "http://go.microsoft.com/fwlink/?LinkID=213810" + }, + { + "target" : "v1.0.3705", + "version" : "1", + "preferVersion" : "3.5", + "download" : "http://go.microsoft.com/fwlink/?LinkId=214025" + } + ], + "help" : + [ + { + "name" : "dotnet-45-xp", + "info" : "http://getdotnet.azurewebsites.net/help/dotnet45-xp.html" + }, + { + "name" : "dotnet-4-xp", + "info" : "http://getdotnet.azurewebsites.net/help/dotnet4-xp.html" + }, + { + "name" : "dotnet-versions", + "info" : "http://getdotnet.azurewebsites.net/install-dotnet.html" + } + + ] +} \ No newline at end of file diff --git a/tellver/Controllers/VersionController.cs b/tellver/Controllers/VersionController.cs new file mode 100644 index 0000000..1e0d56a --- /dev/null +++ b/tellver/Controllers/VersionController.cs @@ -0,0 +1,110 @@ +using System.IO; +using System.Collections.Generic; +using System.Linq; +using Microsoft.AspNet.Mvc; +using Newtonsoft.Json; +using Newtonsoft.Json.Linq; +using GetDotnet.Models; + +namespace GetDotnet.Controllers +{ + [Route("api/[controller]")] + public class VersionController : Controller + { + static string s_dotnetVersions = Path.Combine("../","framework-versions.json"); + static List s_frameworkVersions; + static List> s_help; + + static VersionController() + { + using (var stream = new FileStream(s_dotnetVersions,FileMode.Open)) + using (var reader = new StreamReader(stream)) + { + var json = reader.ReadToEnd(); + var jsonObj = JsonConvert.DeserializeObject>(json); + s_frameworkVersions = jsonObj["frameworkVersions"].ToObject>(); + s_help = jsonObj["help"].ToObject>>(); + } + + } + + [HttpDeleteAttribute] + public IEnumerable GetAll() + { + return from version in s_frameworkVersions + select version.Target; + } + + + public FrameworkVersion GetVersion44WithPolicy(string inputVersion, string os = "7") + { + + var version = (from v in s_frameworkVersions + where v.Target == inputVersion || (v.Aliases!=null && v.Aliases.Contains(inputVersion)) + select v).First(); + + + + return version; + } + + [HttpGet] + public FrameworkVersion GetVersionWithPolicy(string inputVersion, string OS = "7") + { + + var version = (from v in s_frameworkVersions + where v.Target == inputVersion || (v.Aliases!=null && v.Aliases.Contains(inputVersion)) + select v).First(); + + if (OS.ToLowerInvariant() == "xp") + { + var stringEmpty = string.IsNullOrEmpty(version.Version); + var majVersion = 0; + var minVersion = 0; + + if (!stringEmpty && version.Version.Length > 0) + { + majVersion = version.Version[0] - '0'; + } + + if (!stringEmpty && version.Version.Length > 2 && version.Version[1] == '.') + { + minVersion = version.Version[2] - '0'; + } + + if (majVersion == 4) + { + if (minVersion >= 5) + { + version.HelpInfo = (from page in s_help + where page["name"] == "dotnet-45-xp" + select page).First()["info"]; + } + else + { + version.HelpInfo = (from page in s_help + where page["name"] == "dotnet-4-xp" + select page).First()["info"]; + } + return version; + } + else if (majVersion <0 || majVersion >4) + { + version.HelpInfo = (from page in s_help + where page["name"] == "dotnet-versions" + select page).First()["info"]; + return version; + } + } + + if (!string.IsNullOrEmpty(version.PreferVersion)) + { + version = (from v in s_frameworkVersions + where v.Version == version.PreferVersion + select v).First(); + } + + return version; + } + } +} \ No newline at end of file diff --git a/tellver/Models/FrameworkVersion.cs b/tellver/Models/FrameworkVersion.cs new file mode 100644 index 0000000..8f40747 --- /dev/null +++ b/tellver/Models/FrameworkVersion.cs @@ -0,0 +1,30 @@ +using System.Collections.Generic; + +namespace GetDotnet.Models +{ + public class FrameworkVersion + { + public string Target {get;set;} + public List Aliases {get;set;} + public string Version {get;set;} + public string PreferVersion {get;set;} + public string Info {get;set;} + public string HelpInfo {get;set;} + public string Download {get;set;} + public string WebInstaller {get;set;} + public string OfflineInstaller {get;set;} + } +} + +/* + { + "target" : ".NETFramework,Version=v4.6", + "version" : "4.6", + "info":"http://blogs.msdn.com/b/dotnet/archive/2015/07/20/announcing-net-framework-4-6.aspx", + "download" : "http://go.microsoft.com/fwlink/?LinkId=528259", + "webInstaller" : "http://go.microsoft.com/fwlink/?LinkId=528222", + "offlineInstaller" : "http://go.microsoft.com/fwlink/?LinkId=528232", + "targetingPack" : "http://go.microsoft.com/fwlink/?LinkId=528261", + "languagePack" : "https://support.microsoft.com/en-us/kb/3045556" + } +*/ \ No newline at end of file diff --git a/tellver/Startup.cs b/tellver/Startup.cs new file mode 100644 index 0000000..0cceb63 --- /dev/null +++ b/tellver/Startup.cs @@ -0,0 +1,25 @@ +using Microsoft.AspNet.Builder; +using Microsoft.Framework.DependencyInjection; +using Microsoft.Framework.Logging; + +namespace GetDotnet +{ + public class Startup + { + public void ConfigureServices(IServiceCollection services) + { + services.AddMvc(); + } + + public void Configure(IApplicationBuilder app, ILoggerFactory loggerFactory) + { + loggerFactory.AddConsole(); + + app.UseErrorPage(); + + app.UseMvcWithDefaultRoute(); + + app.UseWelcomePage(); + } + } +} \ No newline at end of file diff --git a/tellver/project.json b/tellver/project.json new file mode 100644 index 0000000..cba8551 --- /dev/null +++ b/tellver/project.json @@ -0,0 +1,20 @@ +{ + "dependencies": { + "System.Runtime.Extensions": "4.0.10-beta-*", + "Microsoft.AspNet.Diagnostics": "1.0.0-*", + "Microsoft.AspNet.Mvc": "6.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-*", + "Newtonsoft.Json": "7.0.1" + }, + "commands": { + "web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:5001", + "kestrel": "Microsoft.AspNet.Hosting --server Kestrel --server.urls http://localhost:5004" + }, + "frameworks": { + "dnx451": { }, + "dnxcore50": { } + } +} \ No newline at end of file diff --git a/tellver/project.lock.json b/tellver/project.lock.json new file mode 100644 index 0000000..8806ab6 --- /dev/null +++ b/tellver/project.lock.json @@ -0,0 +1,6171 @@ +{ + "locked": false, + "version": 1, + "targets": { + "DNX,Version=v4.5.1": { + "Kestrel/1.0.0-beta6-11962": { + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta6-12109", + "Microsoft.AspNet.Server.Kestrel": "1.0.0-beta6-11962" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Kestrel.dll": {} + }, + "runtime": { + "lib/dnx451/Kestrel.dll": {} + } + }, + "Microsoft.AspNet.Antiforgery/1.0.0-beta6-10134": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta6-11606", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6-11709", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta6-11709", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6-11571", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6-11540", + "Microsoft.Framework.WebEncoders": "1.0.0-beta6-11709" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Antiforgery.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Antiforgery.dll": {} + } + }, + "Microsoft.AspNet.Authentication/1.0.0-beta6-12664": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta6-11606", + "Microsoft.AspNet.Http": "1.0.0-beta6-11709", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta6-11709", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6-11573", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6-11540", + "Microsoft.Framework.WebEncoders": "1.0.0-beta6-11709" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Authorization/1.0.0-beta6-12664": { + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta6-11709", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6-11573", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6-11540" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Authorization.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Authorization.dll": {} + } + }, + "Microsoft.AspNet.Cors.Core/1.0.0-beta6-10655": { + "dependencies": { + "Microsoft.AspNet.Http": "1.0.0-beta6-11709", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6-11569", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6-11571", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6-11540" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Cors.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Cors.Core.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta6-11606": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta6-11606": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta6-11606", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta6-11606", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6-11571", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6-11573", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6-11540" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Security", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta6-11606": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6-12189" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Diagnostics/1.0.0-beta6-13372": { + "dependencies": { + "Microsoft.AspNet.Diagnostics.Abstractions": "1.0.0-beta6-13372", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta6-11709", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta6-11709", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6-11573", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6-11540", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6-12189", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6-11709" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Diagnostics.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Diagnostics.dll": {} + } + }, + "Microsoft.AspNet.Diagnostics.Abstractions/1.0.0-beta6-13372": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Diagnostics.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Diagnostics.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta6-11709": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta6-11606": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6-11592" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta6-11606": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta6-11606" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-beta6-12109": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta6-11606", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta6-12109", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta6-12109", + "Microsoft.AspNet.Http": "1.0.0-beta6-11709", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta6-11709", + "Microsoft.Framework.Configuration": "1.0.0-beta6-11569", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta6-11569", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta6-11569", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta6-11569", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6-11571", + "Microsoft.Framework.Logging": "1.0.0-beta6-11573", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6-12189", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta6-12109": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta6-11606", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6-11709" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta6-12109": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta6-11709", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6-11569" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta6-11709": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta6-11709", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6-11709", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta6-11709", + "Microsoft.Net.Http.Headers": "1.0.0-beta6-11709" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta6-11709": { + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta6-11709", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6-11709" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta6-11709": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6-11709", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6-11709", + "Microsoft.Net.Http.Headers": "1.0.0-beta6-11709" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta6-11709": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.JsonPatch/1.0.0-beta6-14261": { + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta6-11709", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.JsonPatch.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.JsonPatch.dll": {} + } + }, + "Microsoft.AspNet.Loader.IIS/1.0.0-beta6-12036": { + "dependencies": { + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta6-11606", + "Microsoft.AspNet.Hosting": "1.0.0-beta6-12109", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta6-11569", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta6-11569", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6-12189", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6-11709" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Loader.IIS.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Loader.IIS.dll": {} + } + }, + "Microsoft.AspNet.Loader.IIS.Interop/1.0.0-beta6-12036": {}, + "Microsoft.AspNet.Mvc/6.0.0-beta6-14261": { + "dependencies": { + "Microsoft.AspNet.Mvc.ApiExplorer": "6.0.0-beta6-14261", + "Microsoft.AspNet.Mvc.Cors": "6.0.0-beta6-14261", + "Microsoft.AspNet.Mvc.DataAnnotations": "6.0.0-beta6-14261", + "Microsoft.AspNet.Mvc.Formatters.Json": "6.0.0-beta6-14261", + "Microsoft.AspNet.Mvc.Razor": "6.0.0-beta6-14261", + "Microsoft.AspNet.Mvc.ViewFeatures": "6.0.0-beta6-14261", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6-11592", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6-11571" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Mvc.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Mvc.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Abstractions/6.0.0-beta6-14261": { + "dependencies": { + "Microsoft.AspNet.Routing": "1.0.0-beta6-11976" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Mvc.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Mvc.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Mvc.ApiExplorer/6.0.0-beta6-14261": { + "dependencies": { + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta6-14261" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Mvc.ApiExplorer.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Mvc.ApiExplorer.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Core/6.0.0-beta6-14261": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta6-12664", + "Microsoft.AspNet.Authorization": "1.0.0-beta6-12664", + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta6-11606", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta6-12109", + "Microsoft.AspNet.Http": "1.0.0-beta6-11709", + "Microsoft.AspNet.Mvc.Abstractions": "6.0.0-beta6-14261", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta6-11709", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6-11573", + "Microsoft.Framework.Notification": "1.0.0-beta6-10209", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6-12189", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Mvc.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Mvc.Core.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Cors/6.0.0-beta6-14261": { + "dependencies": { + "Microsoft.AspNet.Cors.Core": "1.0.0-beta6-10655", + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta6-14261" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Mvc.Cors.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Mvc.Cors.dll": {} + } + }, + "Microsoft.AspNet.Mvc.DataAnnotations/6.0.0-beta6-14261": { + "dependencies": { + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta6-14261" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Mvc.DataAnnotations.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Mvc.DataAnnotations.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Formatters.Json/6.0.0-beta6-14261": { + "dependencies": { + "Microsoft.AspNet.JsonPatch": "1.0.0-beta6-14261", + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta6-14261", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Mvc.Formatters.Json.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Mvc.Formatters.Json.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Razor/6.0.0-beta6-14261": { + "dependencies": { + "Microsoft.AspNet.Mvc.Razor.Host": "6.0.0-beta6-14261", + "Microsoft.AspNet.Mvc.ViewFeatures": "6.0.0-beta6-14261", + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces": "1.0.0-beta6-14261", + "Microsoft.Framework.Runtime.Roslyn.Abstractions": "1.0.0-beta6-12189", + "Microsoft.Framework.Runtime.Roslyn.Common": "1.0.0-beta6-12189" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Mvc.Razor.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Mvc.Razor.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Razor.Host/6.0.0-beta6-14261": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta6-11606", + "Microsoft.AspNet.Razor.Runtime": "4.0.0-beta6-11665", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6-11592", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6-12189" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Mvc.Razor.Host.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Mvc.Razor.Host.dll": {} + } + }, + "Microsoft.AspNet.Mvc.ViewFeatures/6.0.0-beta6-14261": { + "dependencies": { + "Microsoft.AspNet.Antiforgery": "1.0.0-beta6-10134", + "Microsoft.AspNet.Diagnostics.Abstractions": "1.0.0-beta6-13372", + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta6-14261", + "Microsoft.AspNet.Mvc.Formatters.Json": "6.0.0-beta6-14261" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Mvc.ViewFeatures.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Mvc.ViewFeatures.dll": {} + } + }, + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces/1.0.0-beta6-14261": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.PageExecutionInstrumentation.Interfaces.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.PageExecutionInstrumentation.Interfaces.dll": {} + } + }, + "Microsoft.AspNet.Razor/4.0.0-beta6-11665": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Razor.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Razor.dll": {} + } + }, + "Microsoft.AspNet.Razor.Runtime/4.0.0-beta6-11665": { + "dependencies": { + "Microsoft.AspNet.Razor": "4.0.0-beta6-11665" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Razor.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Razor.Runtime.dll": {} + } + }, + "Microsoft.AspNet.Routing/1.0.0-beta6-11976": { + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta6-11709", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6-11573", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6-11540" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Routing.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Routing.dll": {} + } + }, + "Microsoft.AspNet.Server.IIS/1.0.0-beta6-12036": { + "dependencies": { + "Microsoft.AspNet.Loader.IIS": "1.0.0-beta6-12036", + "Microsoft.AspNet.Loader.IIS.Interop": "1.0.0-beta6-12036" + } + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta6-11962": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6-12189" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll": {} + } + }, + "Microsoft.AspNet.Server.WebListener/1.0.0-beta6-12421": { + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta6-12109", + "Microsoft.Net.Http.Headers": "1.0.0-beta6-11709", + "Microsoft.Net.Http.Server": "1.0.0-beta6-12421" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Server.WebListener.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Server.WebListener.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta6-11709": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6-11709" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150618-03": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150618-03": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150618-03]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150618-03": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150618-03]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6-11592": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6-11592": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6-11592", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6-11571", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6-11540" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6-11569": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6-11569" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6-11569": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6-11569": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6-11569" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta6-11569": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6-11569" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6-11569": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6-11569" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta6-11569": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6-11569" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6-11571": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6-11571" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6-11571": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6-11573": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6-11571", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6-11573" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6-11573": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Console/1.0.0-beta6-11573": { + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6-11573" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Console.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Console.dll": {} + } + }, + "Microsoft.Framework.Notification/1.0.0-beta6-10209": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6-11571" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core", + "System.Linq" + ], + "compile": { + "lib/net45/Microsoft.Framework.Notification.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Notification.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6-11540": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6-11569", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6-11569", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6-11571" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6-12189": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn.Abstractions/1.0.0-beta6-12189": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.0.0-rc3-20150618-03", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6-12189" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn.Common/1.0.0-beta6-12189": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.0.0-rc3-20150618-03", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6-12189" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Runtime" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Common.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Common.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta6-11709": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6-11571", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6-11540", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6-11709" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta6-11709": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta6-11709": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Net.Http.Server/1.0.0-beta6-12421": { + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6-11573", + "Microsoft.Net.WebSockets": "1.0.0-beta6-12421" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Server.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Server.dll": {} + } + }, + "Microsoft.Net.WebSockets/1.0.0-beta6-12421": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.WebSockets.dll": {} + } + }, + "Newtonsoft.Json/7.0.1": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23107": { + "compile": { + "ref/dotnet/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23107": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23107" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Kestrel/1.0.0-beta6-11962": { + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta6-12109", + "Microsoft.AspNet.Server.Kestrel": "1.0.0-beta6-11962", + "System.Runtime": "4.0.20-beta-23107" + }, + "compile": { + "lib/dnxcore50/Kestrel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Kestrel.dll": {} + } + }, + "Microsoft.AspNet.Antiforgery/1.0.0-beta6-10134": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta6-11606", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6-11709", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta6-11709", + "Microsoft.CSharp": "4.0.0-beta-23107", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6-11571", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6-11540", + "Microsoft.Framework.WebEncoders": "1.0.0-beta6-11709", + "System.Collections": "4.0.10-beta-23107", + "System.Linq": "4.0.0-beta-23107", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23107", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23107", + "System.Threading": "4.0.10-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Antiforgery.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Antiforgery.dll": {} + } + }, + "Microsoft.AspNet.Authentication/1.0.0-beta6-12664": { + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta6-11606", + "Microsoft.AspNet.Http": "1.0.0-beta6-11709", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta6-11709", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6-11573", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6-11540", + "Microsoft.Framework.WebEncoders": "1.0.0-beta6-11709", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authentication.dll": {} + } + }, + "Microsoft.AspNet.Authorization/1.0.0-beta6-12664": { + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta6-11709", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6-11573", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6-11540" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authorization.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authorization.dll": {} + } + }, + "Microsoft.AspNet.Cors.Core/1.0.0-beta6-10655": { + "dependencies": { + "Microsoft.AspNet.Http": "1.0.0-beta6-11709", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6-11569", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6-11571", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6-11540", + "System.Runtime": "4.0.20-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Cors.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Cors.Core.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta6-11606": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23107", + "System.Globalization": "4.0.10-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Handles": "4.0.0-beta-23107", + "System.Runtime.InteropServices": "4.0.20-beta-23107", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23107", + "System.Threading": "4.0.10-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta6-11606": { + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta6-11606", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta6-11606", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6-11571", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6-11573", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6-11540", + "Microsoft.Win32.Registry": "4.0.0-beta-23107", + "System.IO": "4.0.10-beta-23107", + "System.IO.FileSystem": "4.0.0-beta-23107", + "System.Linq": "4.0.0-beta-23107", + "System.Reflection.Extensions": "4.0.0-beta-23107", + "System.Reflection.TypeExtensions": "4.0.0-beta-23107", + "System.Security.Claims": "4.0.0-beta-23107", + "System.Security.Cryptography.Encryption.Aes": "4.0.0-beta-23107", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23107", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23107", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23107", + "System.Security.Principal.Windows": "4.0.0-beta-23107", + "System.Text.Encoding.Extensions": "4.0.10-beta-23107", + "System.Xml.XDocument": "4.0.10-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta6-11606": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6-12189", + "System.ComponentModel": "4.0.0-beta-23107", + "System.Diagnostics.Debug": "4.0.10-beta-23107", + "System.Reflection": "4.0.10-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23107", + "System.Text.Encoding.Extensions": "4.0.10-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Diagnostics/1.0.0-beta6-13372": { + "dependencies": { + "Microsoft.AspNet.Diagnostics.Abstractions": "1.0.0-beta6-13372", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta6-11709", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta6-11709", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6-11573", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6-11540", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6-12189", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6-11709", + "System.Reflection.Extensions": "4.0.0-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Diagnostics.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Diagnostics.dll": {} + } + }, + "Microsoft.AspNet.Diagnostics.Abstractions/1.0.0-beta6-13372": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Diagnostics.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Diagnostics.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta6-11709": { + "dependencies": { + "System.Collections": "4.0.10-beta-23107", + "System.Linq": "4.0.0-beta-23107", + "System.Reflection": "4.0.10-beta-23107", + "System.Reflection.TypeExtensions": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.InteropServices": "4.0.20-beta-23107", + "System.Threading": "4.0.10-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta6-11606": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6-11592", + "System.IO": "4.0.10-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta6-11606": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta6-11606", + "System.Collections": "4.0.10-beta-23107", + "System.Collections.Concurrent": "4.0.10-beta-23107", + "System.IO.FileSystem": "4.0.0-beta-23107", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23107", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Text.RegularExpressions": "4.0.10-beta-23107", + "System.Threading": "4.0.10-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-beta6-12109": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta6-11606", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta6-12109", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta6-12109", + "Microsoft.AspNet.Http": "1.0.0-beta6-11709", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta6-11709", + "Microsoft.Framework.Configuration": "1.0.0-beta6-11569", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta6-11569", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta6-11569", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta6-11569", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6-11571", + "Microsoft.Framework.Logging": "1.0.0-beta6-11573", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6-12189", + "Newtonsoft.Json": "6.0.6", + "System.Console": "4.0.0-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta6-12109": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta6-11606", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6-11709" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta6-12109": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta6-11709", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6-11569" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta6-11709": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta6-11709", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6-11709", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta6-11709", + "Microsoft.Net.Http.Headers": "1.0.0-beta6-11709", + "System.Diagnostics.Debug": "4.0.10-beta-23107", + "System.Text.Encoding": "4.0.10-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta6-11709": { + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta6-11709", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6-11709", + "System.Collections": "4.0.10-beta-23107", + "System.Diagnostics.Tools": "4.0.0-beta-23107", + "System.Globalization": "4.0.10-beta-23107", + "System.Globalization.Extensions": "4.0.0-beta-23107", + "System.Linq": "4.0.0-beta-23107", + "System.Linq.Expressions": "4.0.10-beta-23107", + "System.Net.Primitives": "4.0.10-beta-23107", + "System.Net.WebSockets": "4.0.0-beta-23107", + "System.Reflection.TypeExtensions": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.InteropServices": "4.0.20-beta-23107", + "System.Security.Claims": "4.0.0-beta-23107", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23107", + "System.Security.Principal": "4.0.0-beta-23107", + "System.Threading.Tasks": "4.0.10-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta6-11709": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6-11709", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6-11709", + "Microsoft.Net.Http.Headers": "1.0.0-beta6-11709", + "System.IO.FileSystem": "4.0.0-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta6-11709": { + "dependencies": { + "System.Collections": "4.0.10-beta-23107", + "System.Net.Primitives": "4.0.10-beta-23107", + "System.Net.WebSockets": "4.0.0-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Security.Claims": "4.0.0-beta-23107", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23107", + "System.Security.Principal": "4.0.0-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.JsonPatch/1.0.0-beta6-14261": { + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta6-11709", + "Microsoft.CSharp": "4.0.0-beta-23107", + "Newtonsoft.Json": "6.0.6", + "System.Collections.Concurrent": "4.0.10-beta-23107", + "System.ComponentModel.TypeConverter": "4.0.0-beta-23107", + "System.Globalization": "4.0.10-beta-23107", + "System.Reflection.Extensions": "4.0.0-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Text.Encoding.Extensions": "4.0.10-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.JsonPatch.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.JsonPatch.dll": {} + } + }, + "Microsoft.AspNet.Loader.IIS/1.0.0-beta6-12036": { + "dependencies": { + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta6-11606", + "Microsoft.AspNet.Hosting": "1.0.0-beta6-12109", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta6-11569", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta6-11569", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6-12189", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6-11709", + "Microsoft.Win32.Registry": "4.0.0-beta-23107", + "System.Diagnostics.Process": "4.0.0-beta-23107", + "System.Net.NetworkInformation": "4.0.10-beta-23107", + "System.Security.Principal.Windows": "4.0.0-beta-23107", + "System.Text.Encoding": "4.0.10-beta-23107", + "System.Text.Encoding.Extensions": "4.0.10-beta-23107", + "System.Threading": "4.0.10-beta-23107", + "System.Threading.ThreadPool": "4.0.10-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Loader.IIS.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Loader.IIS.dll": {} + } + }, + "Microsoft.AspNet.Loader.IIS.Interop/1.0.0-beta6-12036": {}, + "Microsoft.AspNet.Mvc/6.0.0-beta6-14261": { + "dependencies": { + "Microsoft.AspNet.Mvc.ApiExplorer": "6.0.0-beta6-14261", + "Microsoft.AspNet.Mvc.Cors": "6.0.0-beta6-14261", + "Microsoft.AspNet.Mvc.DataAnnotations": "6.0.0-beta6-14261", + "Microsoft.AspNet.Mvc.Formatters.Json": "6.0.0-beta6-14261", + "Microsoft.AspNet.Mvc.Razor": "6.0.0-beta6-14261", + "Microsoft.AspNet.Mvc.ViewFeatures": "6.0.0-beta6-14261", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6-11592", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6-11571" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Abstractions/6.0.0-beta6-14261": { + "dependencies": { + "Microsoft.AspNet.Routing": "1.0.0-beta6-11976", + "Microsoft.CSharp": "4.0.0-beta-23107", + "System.ComponentModel.TypeConverter": "4.0.0-beta-23107", + "System.Reflection.Extensions": "4.0.0-beta-23107", + "System.Text.Encoding.Extensions": "4.0.10-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Mvc.ApiExplorer/6.0.0-beta6-14261": { + "dependencies": { + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta6-14261" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.ApiExplorer.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.ApiExplorer.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Core/6.0.0-beta6-14261": { + "dependencies": { + "Microsoft.AspNet.Authentication": "1.0.0-beta6-12664", + "Microsoft.AspNet.Authorization": "1.0.0-beta6-12664", + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta6-11606", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta6-12109", + "Microsoft.AspNet.Http": "1.0.0-beta6-11709", + "Microsoft.AspNet.Mvc.Abstractions": "6.0.0-beta6-14261", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta6-11709", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6-11573", + "Microsoft.Framework.Notification": "1.0.0-beta6-10209", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6-12189", + "Newtonsoft.Json": "6.0.6" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Core.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Cors/6.0.0-beta6-14261": { + "dependencies": { + "Microsoft.AspNet.Cors.Core": "1.0.0-beta6-10655", + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta6-14261" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Cors.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Cors.dll": {} + } + }, + "Microsoft.AspNet.Mvc.DataAnnotations/6.0.0-beta6-14261": { + "dependencies": { + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta6-14261", + "System.ComponentModel.Annotations": "4.0.10-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.DataAnnotations.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.DataAnnotations.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Formatters.Json/6.0.0-beta6-14261": { + "dependencies": { + "Microsoft.AspNet.JsonPatch": "1.0.0-beta6-14261", + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta6-14261", + "Newtonsoft.Json": "6.0.6" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Formatters.Json.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Formatters.Json.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Razor/6.0.0-beta6-14261": { + "dependencies": { + "Microsoft.AspNet.Mvc.Razor.Host": "6.0.0-beta6-14261", + "Microsoft.AspNet.Mvc.ViewFeatures": "6.0.0-beta6-14261", + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces": "1.0.0-beta6-14261", + "Microsoft.Framework.Runtime.Roslyn.Abstractions": "1.0.0-beta6-12189", + "Microsoft.Framework.Runtime.Roslyn.Common": "1.0.0-beta6-12189", + "System.Threading.Tasks.Parallel": "4.0.0-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Razor.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Razor.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Razor.Host/6.0.0-beta6-14261": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta6-11606", + "Microsoft.AspNet.Razor.Runtime": "4.0.0-beta6-11665", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6-11592", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6-12189", + "System.Collections.Concurrent": "4.0.10-beta-23107", + "System.ComponentModel.TypeConverter": "4.0.0-beta-23107", + "System.Reflection.Extensions": "4.0.0-beta-23107", + "System.Text.Encoding.Extensions": "4.0.10-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Razor.Host.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Razor.Host.dll": {} + } + }, + "Microsoft.AspNet.Mvc.ViewFeatures/6.0.0-beta6-14261": { + "dependencies": { + "Microsoft.AspNet.Antiforgery": "1.0.0-beta6-10134", + "Microsoft.AspNet.Diagnostics.Abstractions": "1.0.0-beta6-13372", + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta6-14261", + "Microsoft.AspNet.Mvc.Formatters.Json": "6.0.0-beta6-14261", + "System.ComponentModel.Annotations": "4.0.10-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.ViewFeatures.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.ViewFeatures.dll": {} + } + }, + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces/1.0.0-beta6-14261": { + "dependencies": { + "System.IO": "4.0.10-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.PageExecutionInstrumentation.Interfaces.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.PageExecutionInstrumentation.Interfaces.dll": {} + } + }, + "Microsoft.AspNet.Razor/4.0.0-beta6-11665": { + "dependencies": { + "System.Collections": "4.0.10-beta-23107", + "System.Diagnostics.Debug": "4.0.10-beta-23107", + "System.Diagnostics.Tools": "4.0.0-beta-23107", + "System.IO": "4.0.10-beta-23107", + "System.IO.FileSystem": "4.0.0-beta-23107", + "System.Linq": "4.0.0-beta-23107", + "System.Reflection": "4.0.10-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23107", + "System.Threading": "4.0.10-beta-23107", + "System.Threading.Tasks": "4.0.10-beta-23107", + "System.Threading.Thread": "4.0.0-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Razor.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Razor.dll": {} + } + }, + "Microsoft.AspNet.Razor.Runtime/4.0.0-beta6-11665": { + "dependencies": { + "Microsoft.AspNet.Razor": "4.0.0-beta6-11665", + "System.Reflection.Extensions": "4.0.0-beta-23107", + "System.Text.RegularExpressions": "4.0.10-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Razor.Runtime.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Razor.Runtime.dll": {} + } + }, + "Microsoft.AspNet.Routing/1.0.0-beta6-11976": { + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta6-11709", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6-11573", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6-11540", + "System.Reflection.Extensions": "4.0.0-beta-23107", + "System.Text.RegularExpressions": "4.0.10-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Routing.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Routing.dll": {} + } + }, + "Microsoft.AspNet.Server.IIS/1.0.0-beta6-12036": { + "dependencies": { + "Microsoft.AspNet.Loader.IIS": "1.0.0-beta6-12036", + "Microsoft.AspNet.Loader.IIS.Interop": "1.0.0-beta6-12036" + } + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta6-11962": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6-12189", + "System.Collections": "4.0.10-beta-23107", + "System.Diagnostics.Debug": "4.0.10-beta-23107", + "System.Diagnostics.TraceSource": "4.0.0-beta-23107", + "System.Diagnostics.Tracing": "4.0.20-beta-23107", + "System.Globalization": "4.0.10-beta-23107", + "System.IO": "4.0.10-beta-23107", + "System.Linq": "4.0.0-beta-23107", + "System.Net.Primitives": "4.0.10-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Runtime.InteropServices": "4.0.20-beta-23107", + "System.Text.Encoding": "4.0.10-beta-23107", + "System.Threading": "4.0.10-beta-23107", + "System.Threading.Tasks": "4.0.10-beta-23107", + "System.Threading.Thread": "4.0.0-beta-23107", + "System.Threading.ThreadPool": "4.0.10-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.dll": {} + } + }, + "Microsoft.AspNet.Server.WebListener/1.0.0-beta6-12421": { + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta6-12109", + "Microsoft.Net.Http.Headers": "1.0.0-beta6-11709", + "Microsoft.Net.Http.Server": "1.0.0-beta6-12421", + "System.Security.Claims": "4.0.0-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Server.WebListener.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Server.WebListener.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta6-11709": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6-11709", + "System.Collections": "4.0.10-beta-23107", + "System.Diagnostics.Debug": "4.0.10-beta-23107", + "System.IO": "4.0.10-beta-23107", + "System.IO.FileSystem": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150618-03": {}, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150618-03": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0-rc3-20150618-03]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150618-03": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0-rc3-20150618-03]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CSharp/4.0.0-beta-23107": { + "dependencies": { + "System.Collections": "4.0.10-beta-23107", + "System.Diagnostics.Debug": "4.0.10-beta-23107", + "System.Dynamic.Runtime": "4.0.0-beta-23107", + "System.Globalization": "4.0.10-beta-23107", + "System.Linq": "4.0.0-beta-23107", + "System.Linq.Expressions": "4.0.0-beta-23107", + "System.ObjectModel": "4.0.10-beta-23107", + "System.Reflection": "4.0.10-beta-23107", + "System.Reflection.Extensions": "4.0.0-beta-23107", + "System.Reflection.Primitives": "4.0.0-beta-23107", + "System.Reflection.TypeExtensions": "4.0.0-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Runtime.InteropServices": "4.0.20-beta-23107", + "System.Threading": "4.0.10-beta-23107" + }, + "compile": { + "ref/dotnet/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6-11592": { + "dependencies": { + "System.Collections": "4.0.10-beta-23107", + "System.Threading": "4.0.10-beta-23107", + "System.Threading.Tasks": "4.0.10-beta-23107" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6-11592": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6-11592", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6-11571", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6-11540", + "System.Linq": "4.0.0-beta-23107", + "System.Threading": "4.0.10-beta-23107" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6-11569": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6-11569", + "System.Collections": "4.0.10-beta-23107", + "System.Diagnostics.Debug": "4.0.10-beta-23107", + "System.IO": "4.0.10-beta-23107", + "System.IO.FileSystem": "4.0.0-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Runtime.InteropServices": "4.0.20-beta-23107" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6-11569": { + "dependencies": { + "System.Linq": "4.0.0-beta-23107" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6-11569": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6-11569" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta6-11569": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6-11569" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6-11569": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6-11569" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta6-11569": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6-11569" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Ini.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Ini.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6-11571": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6-11571", + "System.Collections": "4.0.10-beta-23107", + "System.Collections.Concurrent": "4.0.10-beta-23107", + "System.Threading": "4.0.10-beta-23107", + "System.Threading.Tasks": "4.0.10-beta-23107" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6-11571": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23107", + "System.Diagnostics.Debug": "4.0.10-beta-23107", + "System.Globalization": "4.0.10-beta-23107", + "System.Linq": "4.0.0-beta-23107", + "System.Linq.Expressions": "4.0.10-beta-23107", + "System.Reflection": "4.0.10-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6-11573": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6-11571", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6-11573", + "System.Collections": "4.0.10-beta-23107", + "System.Collections.Concurrent": "4.0.10-beta-23107", + "System.ComponentModel": "4.0.0-beta-23107", + "System.Globalization": "4.0.10-beta-23107", + "System.Linq": "4.0.0-beta-23107", + "System.Threading": "4.0.10-beta-23107" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6-11573": { + "dependencies": { + "System.Collections": "4.0.10-beta-23107", + "System.Collections.Concurrent": "4.0.10-beta-23107", + "System.Globalization": "4.0.10-beta-23107", + "System.Linq": "4.0.0-beta-23107", + "System.Reflection": "4.0.10-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Runtime.InteropServices": "4.0.20-beta-23107" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Console/1.0.0-beta6-11573": { + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6-11573", + "System.Console": "4.0.0-beta-23107", + "System.IO": "4.0.10-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Threading": "4.0.10-beta-23107" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Console.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Console.dll": {} + } + }, + "Microsoft.Framework.Notification/1.0.0-beta6-10209": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6-11571", + "System.Collections": "4.0.10-beta-23107", + "System.Collections.Concurrent": "4.0.10-beta-23107", + "System.ComponentModel": "4.0.0-beta-23107", + "System.Diagnostics.Debug": "4.0.10-beta-23107", + "System.Globalization": "4.0.10-beta-23107", + "System.Linq": "4.0.0-beta-23107", + "System.Linq.Expressions": "4.0.10-beta-23107", + "System.Reflection": "4.0.10-beta-23107", + "System.Reflection.Emit": "4.0.0-beta-23107", + "System.Reflection.Emit.Lightweight": "4.0.0-beta-23107", + "System.Reflection.Extensions": "4.0.0-beta-23107", + "System.Reflection.TypeExtensions": "4.0.0-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Threading": "4.0.10-beta-23107" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Notification.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Notification.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6-11540": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6-11569", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6-11569", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6-11571", + "System.ComponentModel": "4.0.0-beta-23107", + "System.Diagnostics.Debug": "4.0.10-beta-23107", + "System.Globalization": "4.0.10-beta-23107", + "System.Linq": "4.0.0-beta-23107", + "System.Linq.Expressions": "4.0.10-beta-23107", + "System.Reflection": "4.0.10-beta-23107", + "System.Reflection.TypeExtensions": "4.0.0-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Threading": "4.0.10-beta-23107" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6-12189": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23107", + "System.IO": "4.0.10-beta-23107", + "System.Reflection": "4.0.10-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Threading.Tasks": "4.0.10-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn.Abstractions/1.0.0-beta6-12189": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.0.0-rc3-20150618-03", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6-12189", + "System.Runtime": "4.0.20-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn.Common/1.0.0-beta6-12189": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.0.0-rc3-20150618-03", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6-12189" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Common.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Common.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta6-11709": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6-11571", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6-11540", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6-11709" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta6-11709": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23107", + "System.Diagnostics.Debug": "4.0.10-beta-23107", + "System.IO": "4.0.10-beta-23107", + "System.Reflection": "4.0.10-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Threading": "4.0.10-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta6-11709": { + "dependencies": { + "System.Collections": "4.0.10-beta-23107", + "System.Diagnostics.Contracts": "4.0.0-beta-23107", + "System.Globalization": "4.0.10-beta-23107", + "System.Globalization.Extensions": "4.0.0-beta-23107", + "System.Linq": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Text.Encoding": "4.0.10-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Net.Http.Server/1.0.0-beta6-12421": { + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6-11573", + "Microsoft.Net.WebSockets": "1.0.0-beta6-12421", + "Microsoft.Win32.Primitives": "4.0.0-beta-23107", + "System.Diagnostics.Debug": "4.0.10-beta-23107", + "System.IO.FileSystem": "4.0.0-beta-23107", + "System.Security.Claims": "4.0.0-beta-23107", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23107", + "System.Security.Principal.Windows": "4.0.0-beta-23107", + "System.Threading.Overlapped": "4.0.0-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Server.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Server.dll": {} + } + }, + "Microsoft.Net.WebSockets/1.0.0-beta6-12421": { + "dependencies": { + "System.Collections": "4.0.10-beta-23107", + "System.Diagnostics.Contracts": "4.0.0-beta-23107", + "System.Diagnostics.Tools": "4.0.0-beta-23107", + "System.IO": "4.0.10-beta-23107", + "System.Linq": "4.0.0-beta-23107", + "System.Net.Primitives": "4.0.10-beta-23107", + "System.Net.WebSockets": "4.0.0-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23107", + "System.Text.Encoding.Extensions": "4.0.10-beta-23107", + "System.Threading": "4.0.10-beta-23107", + "System.Threading.Tasks": "4.0.10-beta-23107", + "System.Threading.ThreadPool": "4.0.10-beta-23107", + "System.Threading.Timer": "4.0.0-beta-23107" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.WebSockets.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23107": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.InteropServices": "4.0.20-beta-23107" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23107": { + "dependencies": { + "System.Collections": "4.0.10-beta-23107", + "System.Globalization": "4.0.10-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Runtime.Handles": "4.0.0-beta-23107", + "System.Runtime.InteropServices": "4.0.20-beta-23107" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/7.0.1": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll": {} + } + }, + "System.Collections/4.0.10-beta-23107": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23107" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23107": { + "dependencies": { + "System.Collections": "4.0.10-beta-23107", + "System.Diagnostics.Debug": "4.0.10-beta-23107", + "System.Diagnostics.Tracing": "4.0.20-beta-23107", + "System.Globalization": "4.0.10-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Threading": "4.0.10-beta-23107", + "System.Threading.Tasks": "4.0.10-beta-23107" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23107": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23107", + "System.Globalization": "4.0.10-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Threading": "4.0.10-beta-23107" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23107": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23107" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.0.10-beta-23107": { + "dependencies": { + "System.Collections": "4.0.10-beta-23107", + "System.ComponentModel": "4.0.0-beta-23107", + "System.Globalization": "4.0.10-beta-23107", + "System.Linq": "4.0.0-beta-23107", + "System.Reflection": "4.0.10-beta-23107", + "System.Reflection.Extensions": "4.0.0-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Text.RegularExpressions": "4.0.10-beta-23107", + "System.Threading": "4.0.10-beta-23107" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23107": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Threading": "4.0.10-beta-23107", + "System.Threading.Tasks": "4.0.10-beta-23107" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.ComponentModel.Primitives/4.0.0-beta-23107": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.0.0-beta-23107": { + "dependencies": { + "System.Collections": "4.0.10-beta-23107", + "System.ComponentModel": "4.0.0-beta-23107", + "System.ComponentModel.Primitives": "4.0.0-beta-23107", + "System.Globalization": "4.0.10-beta-23107", + "System.Reflection": "4.0.10-beta-23107", + "System.Reflection.Extensions": "4.0.0-beta-23107", + "System.Reflection.Primitives": "4.0.0-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Threading": "4.0.10-beta-23107" + }, + "compile": { + "ref/dotnet/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Console/4.0.0-beta-23107": { + "dependencies": { + "System.IO": "4.0.10-beta-23107", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.InteropServices": "4.0.20-beta-23107", + "System.Text.Encoding": "4.0.10-beta-23107", + "System.Text.Encoding.Extensions": "4.0.10-beta-23107", + "System.Threading": "4.0.10-beta-23107", + "System.Threading.Tasks": "4.0.10-beta-23107" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.0-beta-23107": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23107": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.0.0-beta-23107": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23107", + "Microsoft.Win32.Registry": "4.0.0-beta-23107", + "System.Collections": "4.0.10-beta-23107", + "System.Diagnostics.Debug": "4.0.10-beta-23107", + "System.Globalization": "4.0.10-beta-23107", + "System.IO": "4.0.10-beta-23107", + "System.IO.FileSystem": "4.0.0-beta-23107", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Runtime.Handles": "4.0.0-beta-23107", + "System.Runtime.InteropServices": "4.0.20-beta-23107", + "System.Security.SecureString": "4.0.0-beta-23107", + "System.Text.Encoding": "4.0.10-beta-23107", + "System.Text.Encoding.Extensions": "4.0.10-beta-23107", + "System.Threading": "4.0.10-beta-23107", + "System.Threading.Tasks": "4.0.10-beta-23107", + "System.Threading.Thread": "4.0.0-beta-23107", + "System.Threading.ThreadPool": "4.0.10-beta-23107" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23107": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23107": { + "dependencies": { + "System.Collections": "4.0.10-beta-23107", + "System.Diagnostics.Debug": "4.0.10-beta-23107", + "System.Globalization": "4.0.10-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Threading": "4.0.10-beta-23107" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23107": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.0-beta-23107": { + "dependencies": { + "System.Linq.Expressions": "4.0.0-beta-23107", + "System.ObjectModel": "4.0.0-beta-23107", + "System.Reflection": "4.0.0-beta-23107", + "System.Runtime": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23107": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23107": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23107", + "System.Runtime": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.0-beta-23107": { + "dependencies": { + "System.Globalization": "4.0.10-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Runtime.InteropServices": "4.0.20-beta-23107" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.10-beta-23107": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23107", + "System.Text.Encoding": "4.0.0-beta-23107", + "System.Threading.Tasks": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23107": { + "dependencies": { + "System.Collections": "4.0.10-beta-23107", + "System.IO": "4.0.10-beta-23107", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Runtime.Handles": "4.0.0-beta-23107", + "System.Runtime.InteropServices": "4.0.20-beta-23107", + "System.Text.Encoding": "4.0.10-beta-23107", + "System.Text.Encoding.Extensions": "4.0.10-beta-23107", + "System.Threading": "4.0.10-beta-23107", + "System.Threading.Overlapped": "4.0.0-beta-23107", + "System.Threading.Tasks": "4.0.10-beta-23107" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23107": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23107" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23107": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23107", + "System.IO.FileSystem": "4.0.0-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Runtime.Handles": "4.0.0-beta-23107", + "System.Threading": "4.0.10-beta-23107", + "System.Threading.Overlapped": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.0-beta-23107": { + "dependencies": { + "System.Collections": "4.0.10-beta-23107", + "System.Diagnostics.Debug": "4.0.10-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23107": { + "dependencies": { + "System.Collections": "4.0.10-beta-23107", + "System.Diagnostics.Debug": "4.0.10-beta-23107", + "System.Globalization": "4.0.10-beta-23107", + "System.IO": "4.0.10-beta-23107", + "System.Linq": "4.0.0-beta-23107", + "System.ObjectModel": "4.0.10-beta-23107", + "System.Reflection": "4.0.10-beta-23107", + "System.Reflection.Emit": "4.0.0-beta-23107", + "System.Reflection.Extensions": "4.0.0-beta-23107", + "System.Reflection.Primitives": "4.0.0-beta-23107", + "System.Reflection.TypeExtensions": "4.0.0-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Threading": "4.0.10-beta-23107" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Net.NetworkInformation/4.0.10-beta-23107": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Net.NetworkInformation.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.NetworkInformation.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23107": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23107": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Threading.Tasks": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.10-beta-23107": { + "dependencies": { + "System.Collections": "4.0.10-beta-23107", + "System.Diagnostics.Debug": "4.0.10-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Threading": "4.0.10-beta-23107" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23107": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23107", + "System.Collections": "4.0.10-beta-23107", + "System.Collections.Concurrent": "4.0.0-beta-23107", + "System.Collections.NonGeneric": "4.0.0-beta-23107", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23107", + "System.Diagnostics.Debug": "4.0.10-beta-23107", + "System.Diagnostics.Tracing": "4.0.20-beta-23107", + "System.Globalization": "4.0.10-beta-23107", + "System.IO": "4.0.10-beta-23107", + "System.IO.FileSystem": "4.0.0-beta-23107", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Runtime.Handles": "4.0.0-beta-23107", + "System.Runtime.InteropServices": "4.0.20-beta-23107", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23107", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23107", + "System.Security.Principal.Windows": "4.0.0-beta-23107", + "System.Security.SecureString": "4.0.0-beta-23107", + "System.Threading": "4.0.10-beta-23107", + "System.Threading.Overlapped": "4.0.0-beta-23107", + "System.Threading.Tasks": "4.0.10-beta-23107", + "System.Threading.ThreadPool": "4.0.10-beta-23107" + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23107": { + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23107": { + "dependencies": { + "System.IO": "4.0.0-beta-23107", + "System.Reflection.Primitives": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23107": { + "dependencies": { + "System.IO": "4.0.0-beta-23107", + "System.Reflection": "4.0.0-beta-23107", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23107", + "System.Reflection.Primitives": "4.0.0-beta-23107", + "System.Runtime": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23107": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23107", + "System.Reflection.Primitives": "4.0.0-beta-23107", + "System.Runtime": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.0-beta-23107": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23107", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23107", + "System.Reflection.Primitives": "4.0.0-beta-23107", + "System.Runtime": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23107": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23107", + "System.Runtime": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23107": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23107": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23107", + "System.Runtime": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23107": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23107", + "System.Reflection": "4.0.0-beta-23107", + "System.Runtime": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23107": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23107": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23107" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23107": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23107": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23107", + "System.Reflection.Primitives": "4.0.0-beta-23107", + "System.Runtime": "4.0.0-beta-23107", + "System.Runtime.Handles": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23107": { + "dependencies": { + "System.Globalization": "4.0.10-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23107": { + "dependencies": { + "System.Collections": "4.0.0-beta-23107", + "System.Diagnostics.Debug": "4.0.0-beta-23107", + "System.Globalization": "4.0.0-beta-23107", + "System.IO": "4.0.0-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.0-beta-23107", + "System.Security.Principal": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23107": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Handles": "4.0.0-beta-23107", + "System.Runtime.InteropServices": "4.0.20-beta-23107", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23107": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23107", + "System.IO": "4.0.10-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Threading.Tasks": "4.0.0-beta-23107" + }, + "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-23107": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Handles": "4.0.0-beta-23107", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23107", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23107" + }, + "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-23107": { + "dependencies": { + "System.IO": "4.0.0-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107" + }, + "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-23107": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Handles": "4.0.0-beta-23107", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23107", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23107", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23107" + }, + "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-23107": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23107", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23107": { + "dependencies": { + "System.IO": "4.0.10-beta-23107", + "System.Reflection": "4.0.0-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Runtime.Handles": "4.0.0-beta-23107", + "System.Runtime.InteropServices": "4.0.20-beta-23107", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23107", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23107", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23107", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23107", + "System.Threading": "4.0.10-beta-23107" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23107": { + "dependencies": { + "System.Collections": "4.0.10-beta-23107", + "System.Diagnostics.Debug": "4.0.10-beta-23107", + "System.Globalization": "4.0.10-beta-23107", + "System.Globalization.Calendars": "4.0.0-beta-23107", + "System.IO": "4.0.10-beta-23107", + "System.IO.FileSystem": "4.0.0-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Runtime.Handles": "4.0.0-beta-23107", + "System.Runtime.InteropServices": "4.0.20-beta-23107", + "System.Runtime.Numerics": "4.0.0-beta-23107", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23107", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23107", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23107", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23107", + "System.Security.Cryptography.RSA": "4.0.0-beta-23107", + "System.Text.Encoding": "4.0.10-beta-23107", + "System.Threading": "4.0.10-beta-23107" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23107": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23107": { + "dependencies": { + "System.Collections": "4.0.0-beta-23107", + "System.Diagnostics.Debug": "4.0.0-beta-23107", + "System.Reflection": "4.0.0-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.0-beta-23107", + "System.Runtime.InteropServices": "4.0.0-beta-23107", + "System.Security.Claims": "4.0.0-beta-23107", + "System.Security.Principal": "4.0.0-beta-23107", + "System.Threading": "4.0.10-beta-23107" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23107": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Handles": "4.0.0-beta-23107", + "System.Runtime.InteropServices": "4.0.20-beta-23107", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23107", + "System.Threading": "4.0.10-beta-23107" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23107": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23107": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23107", + "System.Text.Encoding": "4.0.10-beta-23107" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23107": { + "dependencies": { + "System.Collections": "4.0.10-beta-23107", + "System.Globalization": "4.0.10-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Threading": "4.0.10-beta-23107" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23107": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23107", + "System.Threading.Tasks": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23107": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23107", + "System.Runtime.Handles": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23107": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.0.0-beta-23107": { + "dependencies": { + "System.Collections.Concurrent": "4.0.10-beta-23107", + "System.Diagnostics.Debug": "4.0.10-beta-23107", + "System.Diagnostics.Tracing": "4.0.20-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Threading": "4.0.10-beta-23107", + "System.Threading.Tasks": "4.0.10-beta-23107" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/dotnet/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23107": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23107": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23107", + "System.Runtime.InteropServices": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23107": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23107" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23107": { + "dependencies": { + "System.Collections": "4.0.10-beta-23107", + "System.Diagnostics.Debug": "4.0.10-beta-23107", + "System.Globalization": "4.0.10-beta-23107", + "System.IO": "4.0.10-beta-23107", + "System.IO.FileSystem": "4.0.0-beta-23107", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Runtime.InteropServices": "4.0.20-beta-23107", + "System.Text.Encoding": "4.0.10-beta-23107", + "System.Text.Encoding.Extensions": "4.0.10-beta-23107", + "System.Text.RegularExpressions": "4.0.10-beta-23107", + "System.Threading.Tasks": "4.0.10-beta-23107" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10-beta-23107": { + "dependencies": { + "System.Collections": "4.0.10-beta-23107", + "System.Diagnostics.Debug": "4.0.10-beta-23107", + "System.Globalization": "4.0.10-beta-23107", + "System.IO": "4.0.10-beta-23107", + "System.Reflection": "4.0.10-beta-23107", + "System.Resources.ResourceManager": "4.0.0-beta-23107", + "System.Runtime": "4.0.20-beta-23107", + "System.Runtime.Extensions": "4.0.10-beta-23107", + "System.Text.Encoding": "4.0.10-beta-23107", + "System.Threading": "4.0.10-beta-23107", + "System.Xml.ReaderWriter": "4.0.10-beta-23107" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + } + } + }, + "libraries": { + "Kestrel/1.0.0-beta6-11962": { + "serviceable": true, + "sha512": "7oHPXAOvO/sGt4V8eI5ifwathHCzWo0TiQDSaGraNfPgDKgb+7fbcxk4XnbPZamt1CCBO7KvjRwkmjAbeNTVGg==", + "files": [ + "Kestrel.1.0.0-beta6-11962.nupkg", + "Kestrel.1.0.0-beta6-11962.nupkg.sha512", + "Kestrel.nuspec", + "lib/dnx451/Kestrel.dll", + "lib/dnx451/Kestrel.xml", + "lib/dnxcore50/Kestrel.dll", + "lib/dnxcore50/Kestrel.xml", + "repo.json" + ] + }, + "Microsoft.AspNet.Antiforgery/1.0.0-beta6-10134": { + "serviceable": true, + "sha512": "DmDks+O3N6rrGoMWOn8NclPSeX8yQe1g0/o02xXvHGGnMbYP6Mm5UCugDqdUdG9VbIQyLzDHWrea7ozROa5fsA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Antiforgery.dll", + "lib/dnx451/Microsoft.AspNet.Antiforgery.xml", + "lib/dnxcore50/Microsoft.AspNet.Antiforgery.dll", + "lib/dnxcore50/Microsoft.AspNet.Antiforgery.xml", + "Microsoft.AspNet.Antiforgery.1.0.0-beta6-10134.nupkg", + "Microsoft.AspNet.Antiforgery.1.0.0-beta6-10134.nupkg.sha512", + "Microsoft.AspNet.Antiforgery.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Authentication/1.0.0-beta6-12664": { + "serviceable": true, + "sha512": "JakU8FE9tNj45B2Oxx5MQ/Tx/IFODdP+Oj3gEXPz08J8j0ypwkmfuJpL9uchlRRBNCjm0crQA/m110+7yKrMjQ==", + "files": [ + "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.1.0.0-beta6-12664.nupkg", + "Microsoft.AspNet.Authentication.1.0.0-beta6-12664.nupkg.sha512", + "Microsoft.AspNet.Authentication.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Authorization/1.0.0-beta6-12664": { + "serviceable": true, + "sha512": "BdtI3XyCBHU2XMWIoxNM+NCNOS7t6GHy+ELiPVnPwYW71WffA5UXso3ke/+rEyQHs3ITGy1SUXJkkOEpgN7I4A==", + "files": [ + "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.Authorization.1.0.0-beta6-12664.nupkg", + "Microsoft.AspNet.Authorization.1.0.0-beta6-12664.nupkg.sha512", + "Microsoft.AspNet.Authorization.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Cors.Core/1.0.0-beta6-10655": { + "serviceable": true, + "sha512": "O8j+rXRkelJdG5vIcEVdUG3flOUIVOzMirodNbV+8kYKmAyyTjKIkFgO5P6KCHqlDHk3I+o2Zgayqyv/40jV4g==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Cors.Core.dll", + "lib/dnx451/Microsoft.AspNet.Cors.Core.xml", + "lib/dnxcore50/Microsoft.AspNet.Cors.Core.dll", + "lib/dnxcore50/Microsoft.AspNet.Cors.Core.xml", + "Microsoft.AspNet.Cors.Core.1.0.0-beta6-10655.nupkg", + "Microsoft.AspNet.Cors.Core.1.0.0-beta6-10655.nupkg.sha512", + "Microsoft.AspNet.Cors.Core.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta6-11606": { + "serviceable": true, + "sha512": "c24/Zll/ZUxA5DcjJDvJrMfLKW8CR3H43D0kjleDuc1f2W52+P2P+IZ8OBz9AH8dKTy8RRbGQtBoo3yN9OdNgg==", + "files": [ + "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.Cryptography.Internal.1.0.0-beta6-11606.nupkg", + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta6-11606.nupkg.sha512", + "Microsoft.AspNet.Cryptography.Internal.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta6-11606": { + "serviceable": true, + "sha512": "XMkfoX0EaNbJf/VABL7OcL3J8pZBFd18X0fhoQRrq5i1+jbVpY+nsldUDCefraNh4x+9bclqvL6lJWIvk3UvWg==", + "files": [ + "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.1.0.0-beta6-11606.nupkg", + "Microsoft.AspNet.DataProtection.1.0.0-beta6-11606.nupkg.sha512", + "Microsoft.AspNet.DataProtection.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta6-11606": { + "serviceable": true, + "sha512": "LZBaXgWlfdWP4lB6yGPZyFBDKt4xaxcPWFaT/2VsNJfI/OAve/8hqJ3plsoOjLQRdxrZLhHA+fDx+IH6g6n1Rw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.DataProtection.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.xml", + "lib/net451/Microsoft.AspNet.DataProtection.Abstractions.dll", + "lib/net451/Microsoft.AspNet.DataProtection.Abstractions.xml", + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta6-11606.nupkg", + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta6-11606.nupkg.sha512", + "Microsoft.AspNet.DataProtection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Diagnostics/1.0.0-beta6-13372": { + "serviceable": true, + "sha512": "bWhzcy9EW8wU5CUcgvL13Uir37YSooNeqZjHCB36VxqTEvGH3G1Y7fBoEhuGiYmoAL1o+fgjFCy3LvvP8mmfxQ==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Diagnostics.dll", + "lib/dnx451/Microsoft.AspNet.Diagnostics.xml", + "lib/dnxcore50/Microsoft.AspNet.Diagnostics.dll", + "lib/dnxcore50/Microsoft.AspNet.Diagnostics.xml", + "Microsoft.AspNet.Diagnostics.1.0.0-beta6-13372.nupkg", + "Microsoft.AspNet.Diagnostics.1.0.0-beta6-13372.nupkg.sha512", + "Microsoft.AspNet.Diagnostics.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Diagnostics.Abstractions/1.0.0-beta6-13372": { + "serviceable": true, + "sha512": "euiT43QMpOfqfv3LALJl4FZLLgZ+sCh3zUPUVuSvF3aezLw/0Nh6DMMJIT+CH+THGWjSuh39YAM9YMDPVvAgaA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Diagnostics.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.Diagnostics.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.Diagnostics.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.Diagnostics.Abstractions.xml", + "Microsoft.AspNet.Diagnostics.Abstractions.1.0.0-beta6-13372.nupkg", + "Microsoft.AspNet.Diagnostics.Abstractions.1.0.0-beta6-13372.nupkg.sha512", + "Microsoft.AspNet.Diagnostics.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta6-11709": { + "serviceable": true, + "sha512": "oN57bpBjU5CAOa2HQLWSIk34vIlSXbG/riMbcahpwbQIe/YZNoSEhuY4+PNmDa8J9jo024JGQrqLS4su0UcUzA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll", + "lib/dnx451/Microsoft.AspNet.FeatureModel.xml", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.xml", + "Microsoft.AspNet.FeatureModel.1.0.0-beta6-11709.nupkg", + "Microsoft.AspNet.FeatureModel.1.0.0-beta6-11709.nupkg.sha512", + "Microsoft.AspNet.FeatureModel.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta6-11606": { + "serviceable": true, + "sha512": "yEpk0QH5THJGuSgph+OEB7OstnMAJB0YaFGiQsnjXxM2D+68WSrNRocuGc6J4nY0V5S0IwPLbwL7/EMM9WqLSA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.xml", + "lib/net45/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/net45/Microsoft.AspNet.FileProviders.Abstractions.xml", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta6-11606.nupkg", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta6-11606.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta6-11606": { + "serviceable": true, + "sha512": "HYok57JT0PPjPUSr/f4tLvjPrgODnUhEXgcMClav0FRfe/rk8fd5CakdNMUTtDvOj3jt3VC9QG6HsU3n58swsA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.xml", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.xml", + "lib/net45/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/net45/Microsoft.AspNet.FileProviders.Physical.xml", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta6-11606.nupkg", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta6-11606.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Physical.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting/1.0.0-beta6-12109": { + "serviceable": true, + "sha512": "e7SDoLZPR8MxYM0ucT265GDCkGQ0qjMn++v0n7ds160FxajohKbJYGJo8eBs0s1afwJ9Ba6z7rx2JRAjpkGvpQ==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Hosting.dll", + "lib/dnx451/Microsoft.AspNet.Hosting.xml", + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll", + "lib/dnxcore50/Microsoft.AspNet.Hosting.xml", + "Microsoft.AspNet.Hosting.1.0.0-beta6-12109.nupkg", + "Microsoft.AspNet.Hosting.1.0.0-beta6-12109.nupkg.sha512", + "Microsoft.AspNet.Hosting.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta6-12109": { + "serviceable": true, + "sha512": "9fiED5asatNELhoU1WUaDoT7nd0HDsDuXae+e2Yk5sCOFTvriFsSXmKOJqUm04V/MJQsjyojqjkXeQt3vbxqTA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.xml", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta6-12109.nupkg", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta6-12109.nupkg.sha512", + "Microsoft.AspNet.Hosting.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta6-12109": { + "sha512": "03zYMdvsKJe9cZP2BoquAEr/4CgIbZRRd/ku/hpZQ5WFucElBi6FR7nrSD4PQNBhg/F/a//CCLGg81wRd52ELw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.xml", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta6-12109.nupkg", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta6-12109.nupkg.sha512", + "Microsoft.AspNet.Hosting.Server.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http/1.0.0-beta6-11709": { + "serviceable": true, + "sha512": "4ilIxZ4lkT0q7H37N0+7JIrEYY99Uz19Q4Xr3/pGhbqs2nhYpeigmb6cKwS1wQvhgGsz4q9AL706SJ1PorJSXA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.dll", + "lib/dnx451/Microsoft.AspNet.Http.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.xml", + "Microsoft.AspNet.Http.1.0.0-beta6-11709.nupkg", + "Microsoft.AspNet.Http.1.0.0-beta6-11709.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta6-11709": { + "serviceable": true, + "sha512": "frihHOfDOjGGV3VCzApzjuPBPiarCrpPhzFyfdzqH5lZjyo51EhrgXV0dEKc5AayxV+jRUjH0+t9xAL515iTJA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.xml", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta6-11709.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta6-11709.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta6-11709": { + "serviceable": true, + "sha512": "aVayydRQTGtzw09Vbnt6TUuN+G/DeEhicC5ugI6ROvbDg/upqfhXk7fXXffvU/6ICE45hwZqKKA/BFZQRJ+nbw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll", + "lib/dnx451/Microsoft.AspNet.Http.Extensions.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.xml", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta6-11709.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta6-11709.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta6-11709": { + "serviceable": true, + "sha512": "SV3+egQ1yQaXDt5ZYAj2+iWAbujpxNSgbAh4augcp+aKwqJcbPTTLBVfXGtXuJLpqoJNk2x6El8cSHUc48sV2A==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.Features.dll", + "lib/dnx451/Microsoft.AspNet.Http.Features.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.Features.xml", + "Microsoft.AspNet.Http.Features.1.0.0-beta6-11709.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta6-11709.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.JsonPatch/1.0.0-beta6-14261": { + "serviceable": true, + "sha512": "6eJrnDTsun1fNJcOM6DqqkoDJ8e16YXOQD5Dd6hbE0DfVmBNdGX+jH9pEaquWRHp4XtMkMqdp+NShJNTQT/olw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.JsonPatch.dll", + "lib/dnx451/Microsoft.AspNet.JsonPatch.xml", + "lib/dnxcore50/Microsoft.AspNet.JsonPatch.dll", + "lib/dnxcore50/Microsoft.AspNet.JsonPatch.xml", + "Microsoft.AspNet.JsonPatch.1.0.0-beta6-14261.nupkg", + "Microsoft.AspNet.JsonPatch.1.0.0-beta6-14261.nupkg.sha512", + "Microsoft.AspNet.JsonPatch.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Loader.IIS/1.0.0-beta6-12036": { + "serviceable": true, + "sha512": "CgLmPcDQA9BD7HCiX9eh4Dy/xvgYYYM1N8YADMimahUPoFhD+dNsf8VKtT79Gq+bkIaXzdC3oRtHUsI3NBYpqQ==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Loader.IIS.dll", + "lib/dnx451/Microsoft.AspNet.Loader.IIS.xml", + "lib/dnxcore50/Microsoft.AspNet.Loader.IIS.dll", + "lib/dnxcore50/Microsoft.AspNet.Loader.IIS.xml", + "Microsoft.AspNet.Loader.IIS.1.0.0-beta6-12036.nupkg", + "Microsoft.AspNet.Loader.IIS.1.0.0-beta6-12036.nupkg.sha512", + "Microsoft.AspNet.Loader.IIS.nuspec" + ] + }, + "Microsoft.AspNet.Loader.IIS.Interop/1.0.0-beta6-12036": { + "serviceable": true, + "sha512": "+U3aPJXPGvAW3SJ81bxWZmyucj+XhLyvy6ynlCHgWBwTUOlQ/elvJrZiJYsDUcjaDabuq9lcEIDAVD1tZdZQ1A==", + "files": [ + "InteropAssemblies/amd64/Microsoft.AspNet.Loader.IIS.Interop.dll", + "InteropAssemblies/x86/Microsoft.AspNet.Loader.IIS.Interop.dll", + "Microsoft.AspNet.Loader.IIS.Interop.1.0.0-beta6-12036.nupkg", + "Microsoft.AspNet.Loader.IIS.Interop.1.0.0-beta6-12036.nupkg.sha512", + "Microsoft.AspNet.Loader.IIS.Interop.nuspec", + "tools/AspNet.Loader.dll" + ] + }, + "Microsoft.AspNet.Mvc/6.0.0-beta6-14261": { + "serviceable": true, + "sha512": "6dPyx8g6Zfe/ptHA0fXOz3Ftst2WU5rl75qhCcrKDboECe2sT7Na2GIip4mTDaegg3uTjjcsv+rxPr7OxKCuaA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Mvc.dll", + "lib/dnx451/Microsoft.AspNet.Mvc.xml", + "lib/dnxcore50/Microsoft.AspNet.Mvc.dll", + "lib/dnxcore50/Microsoft.AspNet.Mvc.xml", + "Microsoft.AspNet.Mvc.6.0.0-beta6-14261.nupkg", + "Microsoft.AspNet.Mvc.6.0.0-beta6-14261.nupkg.sha512", + "Microsoft.AspNet.Mvc.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Mvc.Abstractions/6.0.0-beta6-14261": { + "serviceable": true, + "sha512": "c5VM2+VPOfJ+Y1cpufRsQgT8OYc8kDT3RJQjPNfOJhNzjtW3sIy/jw3QPpZcnEhgcviX5UYOlUB4DY1jkGhl+A==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Mvc.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.Mvc.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.Mvc.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.Mvc.Abstractions.xml", + "Microsoft.AspNet.Mvc.Abstractions.6.0.0-beta6-14261.nupkg", + "Microsoft.AspNet.Mvc.Abstractions.6.0.0-beta6-14261.nupkg.sha512", + "Microsoft.AspNet.Mvc.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Mvc.ApiExplorer/6.0.0-beta6-14261": { + "sha512": "dxW86D37tadijxhaEIKsV5Ms/G5rNBiWJGXWV94mqSoOqHk/0auTrzGbA6hRlxtt70XmI1su7FxlpSilRTMADQ==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Mvc.ApiExplorer.dll", + "lib/dnx451/Microsoft.AspNet.Mvc.ApiExplorer.xml", + "lib/dnxcore50/Microsoft.AspNet.Mvc.ApiExplorer.dll", + "lib/dnxcore50/Microsoft.AspNet.Mvc.ApiExplorer.xml", + "Microsoft.AspNet.Mvc.ApiExplorer.6.0.0-beta6-14261.nupkg", + "Microsoft.AspNet.Mvc.ApiExplorer.6.0.0-beta6-14261.nupkg.sha512", + "Microsoft.AspNet.Mvc.ApiExplorer.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Mvc.Core/6.0.0-beta6-14261": { + "serviceable": true, + "sha512": "CL/FahQoBy4d7WKcl3UrIl6+BAuHrx9mZ3LFabps1aJd7ywNnF1uBMeGAW65L+lpAvxAgcx73clET6h6+3QCtA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Mvc.Core.dll", + "lib/dnx451/Microsoft.AspNet.Mvc.Core.xml", + "lib/dnxcore50/Microsoft.AspNet.Mvc.Core.dll", + "lib/dnxcore50/Microsoft.AspNet.Mvc.Core.xml", + "Microsoft.AspNet.Mvc.Core.6.0.0-beta6-14261.nupkg", + "Microsoft.AspNet.Mvc.Core.6.0.0-beta6-14261.nupkg.sha512", + "Microsoft.AspNet.Mvc.Core.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Mvc.Cors/6.0.0-beta6-14261": { + "serviceable": true, + "sha512": "qIVqBE7cQslX04b2dA5UZVpKwdZod51Pf+/sn8l01A3h2WcBBua5FZIbYwpK5HY2FGl+coXVh1eaEr2v+ajg5A==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Mvc.Cors.dll", + "lib/dnx451/Microsoft.AspNet.Mvc.Cors.xml", + "lib/dnxcore50/Microsoft.AspNet.Mvc.Cors.dll", + "lib/dnxcore50/Microsoft.AspNet.Mvc.Cors.xml", + "Microsoft.AspNet.Mvc.Cors.6.0.0-beta6-14261.nupkg", + "Microsoft.AspNet.Mvc.Cors.6.0.0-beta6-14261.nupkg.sha512", + "Microsoft.AspNet.Mvc.Cors.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Mvc.DataAnnotations/6.0.0-beta6-14261": { + "serviceable": true, + "sha512": "MP2PaMdVyBZCF0DuHs5rtFURudj3roDy+luLrAxQUDqNA4wTFS7wzu+19q9AOI4m/GssBj643rFDUkwE3MF7xQ==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Mvc.DataAnnotations.dll", + "lib/dnx451/Microsoft.AspNet.Mvc.DataAnnotations.xml", + "lib/dnxcore50/Microsoft.AspNet.Mvc.DataAnnotations.dll", + "lib/dnxcore50/Microsoft.AspNet.Mvc.DataAnnotations.xml", + "Microsoft.AspNet.Mvc.DataAnnotations.6.0.0-beta6-14261.nupkg", + "Microsoft.AspNet.Mvc.DataAnnotations.6.0.0-beta6-14261.nupkg.sha512", + "Microsoft.AspNet.Mvc.DataAnnotations.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Mvc.Formatters.Json/6.0.0-beta6-14261": { + "sha512": "GHEO+PL9RT+NLv4597ivqGynU/gvl1PzJEJgli3pmxgPvRCgbM1yqei4GJW7a+3wjnVIGi7AmIT7rhWcDkzY1g==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Mvc.Formatters.Json.dll", + "lib/dnx451/Microsoft.AspNet.Mvc.Formatters.Json.xml", + "lib/dnxcore50/Microsoft.AspNet.Mvc.Formatters.Json.dll", + "lib/dnxcore50/Microsoft.AspNet.Mvc.Formatters.Json.xml", + "Microsoft.AspNet.Mvc.Formatters.Json.6.0.0-beta6-14261.nupkg", + "Microsoft.AspNet.Mvc.Formatters.Json.6.0.0-beta6-14261.nupkg.sha512", + "Microsoft.AspNet.Mvc.Formatters.Json.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Mvc.Razor/6.0.0-beta6-14261": { + "serviceable": true, + "sha512": "brnRjMUb1vVi38wZ39yfoW3NZNg/Ad2wjyXsxRLqz5xCvlvifqv8z8ObI7vTVJFPyEFx5VX+vuIMoQwcvVUMIg==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Mvc.Razor.dll", + "lib/dnx451/Microsoft.AspNet.Mvc.Razor.xml", + "lib/dnxcore50/Microsoft.AspNet.Mvc.Razor.dll", + "lib/dnxcore50/Microsoft.AspNet.Mvc.Razor.xml", + "Microsoft.AspNet.Mvc.Razor.6.0.0-beta6-14261.nupkg", + "Microsoft.AspNet.Mvc.Razor.6.0.0-beta6-14261.nupkg.sha512", + "Microsoft.AspNet.Mvc.Razor.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Mvc.Razor.Host/6.0.0-beta6-14261": { + "serviceable": true, + "sha512": "o0tRPjWMFA9d+18f48o9i3mJsZSOj768uf21RAds4L74T3Hti+b9H0lWNsHYmpdZ188bS7YbM7NXjGw81h+LSQ==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Mvc.Razor.Host.dll", + "lib/dnx451/Microsoft.AspNet.Mvc.Razor.Host.xml", + "lib/dnxcore50/Microsoft.AspNet.Mvc.Razor.Host.dll", + "lib/dnxcore50/Microsoft.AspNet.Mvc.Razor.Host.xml", + "lib/net45/Microsoft.AspNet.Mvc.Razor.Host.dll", + "lib/net45/Microsoft.AspNet.Mvc.Razor.Host.xml", + "Microsoft.AspNet.Mvc.Razor.Host.6.0.0-beta6-14261.nupkg", + "Microsoft.AspNet.Mvc.Razor.Host.6.0.0-beta6-14261.nupkg.sha512", + "Microsoft.AspNet.Mvc.Razor.Host.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Mvc.ViewFeatures/6.0.0-beta6-14261": { + "serviceable": true, + "sha512": "fik95/roemvdRUzY4VZfTnJpCre8VuW25W4gamA/qucuu7P0Vknh9viqncr+qLecDSD2ABFjoM5fnEGuRORQsg==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Mvc.ViewFeatures.dll", + "lib/dnx451/Microsoft.AspNet.Mvc.ViewFeatures.xml", + "lib/dnxcore50/Microsoft.AspNet.Mvc.ViewFeatures.dll", + "lib/dnxcore50/Microsoft.AspNet.Mvc.ViewFeatures.xml", + "Microsoft.AspNet.Mvc.ViewFeatures.6.0.0-beta6-14261.nupkg", + "Microsoft.AspNet.Mvc.ViewFeatures.6.0.0-beta6-14261.nupkg.sha512", + "Microsoft.AspNet.Mvc.ViewFeatures.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces/1.0.0-beta6-14261": { + "serviceable": true, + "sha512": "KeVvEAI07tA5LAQbN+YdG7ZV0v6hJh4zkIQif4THtxk0r1V7kJPyhZdYzoDXd5/PXAV0dScvJktpj8XRqP5ZbQ==", + "files": [ + "lib/dnx451/Microsoft.AspNet.PageExecutionInstrumentation.Interfaces.dll", + "lib/dnx451/Microsoft.AspNet.PageExecutionInstrumentation.Interfaces.xml", + "lib/dnxcore50/Microsoft.AspNet.PageExecutionInstrumentation.Interfaces.dll", + "lib/dnxcore50/Microsoft.AspNet.PageExecutionInstrumentation.Interfaces.xml", + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces.1.0.0-beta6-14261.nupkg", + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces.1.0.0-beta6-14261.nupkg.sha512", + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Razor/4.0.0-beta6-11665": { + "serviceable": true, + "sha512": "0WJ0+9V3FdmfPSTghBP7tgQ4qap/LVyn8T4Qx9D8Kf4gDGwx2vuivmZkn1RXDd+QxvaRCAvfUbwYQSvLaUMClQ==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Razor.dll", + "lib/dnx451/Microsoft.AspNet.Razor.xml", + "lib/dnxcore50/Microsoft.AspNet.Razor.dll", + "lib/dnxcore50/Microsoft.AspNet.Razor.xml", + "lib/net45/Microsoft.AspNet.Razor.dll", + "lib/net45/Microsoft.AspNet.Razor.xml", + "Microsoft.AspNet.Razor.4.0.0-beta6-11665.nupkg", + "Microsoft.AspNet.Razor.4.0.0-beta6-11665.nupkg.sha512", + "Microsoft.AspNet.Razor.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Razor.Runtime/4.0.0-beta6-11665": { + "serviceable": true, + "sha512": "zO1m8+G6moF5fbFh09gEQvLHHB2TAHZ0BBVNzZOAFX6Vv9l3R72ydvCujq10JDJJ8+iS3m8vtQuI/yL1a7+92A==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Razor.Runtime.dll", + "lib/dnx451/Microsoft.AspNet.Razor.Runtime.xml", + "lib/dnxcore50/Microsoft.AspNet.Razor.Runtime.dll", + "lib/dnxcore50/Microsoft.AspNet.Razor.Runtime.xml", + "lib/net45/Microsoft.AspNet.Razor.Runtime.dll", + "lib/net45/Microsoft.AspNet.Razor.Runtime.xml", + "Microsoft.AspNet.Razor.Runtime.4.0.0-beta6-11665.nupkg", + "Microsoft.AspNet.Razor.Runtime.4.0.0-beta6-11665.nupkg.sha512", + "Microsoft.AspNet.Razor.Runtime.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Routing/1.0.0-beta6-11976": { + "serviceable": true, + "sha512": "soB+Yyv0ydppb2BS7G7Q1zQXV+AHn9xQkDewjYH15BCDTt4OZk6YhCmEFPaK4xL6Gw6/fxUxdrcg4f7VqvPcgg==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Routing.dll", + "lib/dnx451/Microsoft.AspNet.Routing.xml", + "lib/dnxcore50/Microsoft.AspNet.Routing.dll", + "lib/dnxcore50/Microsoft.AspNet.Routing.xml", + "Microsoft.AspNet.Routing.1.0.0-beta6-11976.nupkg", + "Microsoft.AspNet.Routing.1.0.0-beta6-11976.nupkg.sha512", + "Microsoft.AspNet.Routing.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Server.IIS/1.0.0-beta6-12036": { + "sha512": "dGU7p6kKDq7sWsGdRv7TMB2wFs7Df45G5ZdKVSbOoRom8rHnJYkKeXDMJCS2w2itbeTZNPZ8EGtpm9UtzmDriQ==", + "files": [ + "Microsoft.AspNet.Server.IIS.1.0.0-beta6-12036.nupkg", + "Microsoft.AspNet.Server.IIS.1.0.0-beta6-12036.nupkg.sha512", + "Microsoft.AspNet.Server.IIS.nuspec" + ] + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta6-11962": { + "serviceable": true, + "sha512": "OiZBeiryiYEPFrQsWzTRcG64U7sFAhxG5kuEi8rPcmtlYpR20xyh4OewrIdX94SvU0n1TiwU2OMiQEB8LpkvNw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll", + "lib/dnx451/Microsoft.AspNet.Server.Kestrel.xml", + "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.dll", + "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.xml", + "Microsoft.AspNet.Server.Kestrel.1.0.0-beta6-11962.nupkg", + "Microsoft.AspNet.Server.Kestrel.1.0.0-beta6-11962.nupkg.sha512", + "Microsoft.AspNet.Server.Kestrel.nuspec", + "native/darwin/universal/libuv.dylib", + "native/windows/amd64/libuv.dll", + "native/windows/x86/libuv.dll", + "repo.json" + ] + }, + "Microsoft.AspNet.Server.WebListener/1.0.0-beta6-12421": { + "serviceable": true, + "sha512": "R8356MDsWh8BjA2L2BnvZ064qk9N1eJ3gzXBWDBSmV/Sdj6u55AbLLIoKAVB485wS0NzmdpTWyd1SqW1aQoe2Q==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Server.WebListener.dll", + "lib/dnx451/Microsoft.AspNet.Server.WebListener.xml", + "lib/dnxcore50/Microsoft.AspNet.Server.WebListener.dll", + "lib/dnxcore50/Microsoft.AspNet.Server.WebListener.xml", + "Microsoft.AspNet.Server.WebListener.1.0.0-beta6-12421.nupkg", + "Microsoft.AspNet.Server.WebListener.1.0.0-beta6-12421.nupkg.sha512", + "Microsoft.AspNet.Server.WebListener.nuspec" + ] + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta6-11709": { + "serviceable": true, + "sha512": "DLPbHPFqlhpwG432sAHyQxtKLqzdRYxmVa8geyQo8DpmohbdwCCW2fEnFz8bGWl6Pz8uJr04f16Sjse5GX74/A==", + "files": [ + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll", + "lib/dnx451/Microsoft.AspNet.WebUtilities.xml", + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll", + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.xml", + "Microsoft.AspNet.WebUtilities.1.0.0-beta6-11709.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-beta6-11709.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec", + "repo.json" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0-rc3-20150618-03": { + "sha512": "iMoN9AjyMuTeGD8DCH5drmY/scBPEtx/nA5fo/4K9Z7iE3lj6zsaM4oHXch7WKSUgfy4fWsyXonqzsir+GJYrw==", + "files": [ + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150618-03.nupkg", + "Microsoft.CodeAnalysis.Analyzers.1.0.0-rc3-20150618-03.nupkg.sha512", + "Microsoft.CodeAnalysis.Analyzers.nuspec", + "ThirdPartyNotices.rtf", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0-rc3-20150618-03": { + "sha512": "mbna+Y2VvCoR0Xlbwn6+KRVefnVila72QglKGuj3aUCLIeu/Z2stiDabP+KJ1KqY/qhcJa6in3m1ljsbC2c2XA==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150618-03.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0-rc3-20150618-03.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0-rc3-20150618-03": { + "sha512": "3ZVAstv7eJL3Qa/LBx2gKQN2d70p8A7hqRLGCq4hPaNyK6JPAJfZY2CxuZf9XYTdFWYwLVMXp+pMSpMD+xEqvw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150618-03.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0-rc3-20150618-03.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CSharp/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "2gtWvgpEb1AZPy7hrhamfeDFTRJqswdjS6wac2uoDPUmwroCYGbVV5Il6p1DBSZUcK32dmnykgZ5pIMtJwEkAw==", + "files": [ + "lib/dotnet/Microsoft.CSharp.dll", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "Microsoft.CSharp.4.0.0-beta-23107.nupkg", + "Microsoft.CSharp.4.0.0-beta-23107.nupkg.sha512", + "Microsoft.CSharp.nuspec", + "ref/dotnet/de/Microsoft.CSharp.xml", + "ref/dotnet/es/Microsoft.CSharp.xml", + "ref/dotnet/fr/Microsoft.CSharp.xml", + "ref/dotnet/it/Microsoft.CSharp.xml", + "ref/dotnet/ja/Microsoft.CSharp.xml", + "ref/dotnet/ko/Microsoft.CSharp.xml", + "ref/dotnet/Microsoft.CSharp.dll", + "ref/dotnet/Microsoft.CSharp.xml", + "ref/dotnet/ru/Microsoft.CSharp.xml", + "ref/dotnet/zh-hans/Microsoft.CSharp.xml", + "ref/dotnet/zh-hant/Microsoft.CSharp.xml", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6-11592": { + "serviceable": true, + "sha512": "JkPhJgyS0PdjT4Sv/CwfcrZSr/p4fTIly0NdzPigADL4MPzT6fFvwbuAf0/B5x5KQeNXliTVKkuJ/fVT2u5/MQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6-11592.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6-11592.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6-11592": { + "serviceable": true, + "sha512": "Q8MeoqpvLewei3t/wWEENRdhy82cvqOAccCUF9cp/CbSuFTneihvberW5GyLjLSkInDoX1gAhm7J69oWIAxcxQ==", + "files": [ + "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.Caching.Memory.1.0.0-beta6-11592.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6-11592.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6-11569": { + "serviceable": true, + "sha512": "fgDilYz7HQzcTpD8oH30U+CQtF0HyH2xY9F0ieK5mjFKyGHeMQlOfg1KWb9vjadM98GmIAiWSd7hBqMCuFyrBA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6-11569.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6-11569.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6-11569": { + "serviceable": true, + "sha512": "r+Mh0pIcahfRfbMJcr70kXuC1ipWuYk5tYUTZm6ud1RAHUeX2J2u8q08SC6Uacw4jKnqjsCVdo91lRwLgr3udw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6-11569.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6-11569.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6-11569": { + "serviceable": true, + "sha512": "gONdHmG39WLDPvCm/Jn18J3uzyXgTqPBFSaVt0xyh0wstA+Uud/B0Qo7iT5hiLqXLwAxM5rU4nUPDiZMOCSU6A==", + "files": [ + "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.Binder.1.0.0-beta6-11569.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6-11569.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta6-11569": { + "serviceable": true, + "sha512": "q5k27rrNftkYZ1ICfKqwtmLSEgX4WTSyRmxboMyCTUVC5vKfALwzcSnT/mBOft+swTCr+lokwTViCiAQuWkcMA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll", + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.xml", + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.dll", + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.xml", + "lib/net45/Microsoft.Framework.Configuration.CommandLine.dll", + "lib/net45/Microsoft.Framework.Configuration.CommandLine.xml", + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta6-11569.nupkg", + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta6-11569.nupkg.sha512", + "Microsoft.Framework.Configuration.CommandLine.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6-11569": { + "serviceable": true, + "sha512": "G+QhsfOBhX60hhR57O7TxQT4Q9CyqkP+qwknaGvVKPO5/bShjoTvUB/iHZ6y3eB+c+YGa9e6rZVJuUUeT4LQpw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "lib/net45/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/net45/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta6-11569.nupkg", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta6-11569.nupkg.sha512", + "Microsoft.Framework.Configuration.EnvironmentVariables.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta6-11569": { + "serviceable": true, + "sha512": "HvKpxJHuyvGrsFtF0jd9ql5oKrcSIWVufx4SG0/mfXoY3UG7RiV1fWOfvq1ijDk9GN/aohP7NpmSSi5MtoobFQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Ini.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Ini.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Ini.xml", + "lib/net45/Microsoft.Framework.Configuration.Ini.dll", + "lib/net45/Microsoft.Framework.Configuration.Ini.xml", + "Microsoft.Framework.Configuration.Ini.1.0.0-beta6-11569.nupkg", + "Microsoft.Framework.Configuration.Ini.1.0.0-beta6-11569.nupkg.sha512", + "Microsoft.Framework.Configuration.Ini.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6-11571": { + "serviceable": true, + "sha512": "1tTrOBt8Mx9kz1GHV45OkGar1DJx3OCIbyO1xUZcCAwDcUI+9bEjvZWWdLNm0OBkWplRCLSgM88OHXN00PSN8A==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6-11571.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6-11571.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6-11571": { + "serviceable": true, + "sha512": "YZ1XVGqbtzen7ubypNvtjsHxXqGYdkiz+e0cuK43t/BTiUF+XUDno516TVPp0ned3JctNO9vFyWvvJOwJCEciQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6-11571.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6-11571.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6-11573": { + "serviceable": true, + "sha512": "jrcJVMrtkt6ocZMdUxylgbxDRU63wQm/kPDd5Pm5tlP2nb8jwP+pAV4DMsWa2bGB5tcrmKFbqwS0FHoja+sRow==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6-11573.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6-11573.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6-11573": { + "serviceable": true, + "sha512": "UH66D+r7SVW3ytHrHcT6DczheUXBs5jFXkdhi77MtWVKzw4saYaFRGWHfdXF3HlW1ovK7pXAwJlvzzuIVWaPHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6-11573.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6-11573.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Console/1.0.0-beta6-11573": { + "serviceable": true, + "sha512": "HLzyjJ60IjlRgikyOF4KA+MSdq3xYICfkc7fC0HnHEhhLof1OUBf8AdhJWDu1WYzp6pxn4ud2cmC9ZEFXYt6Rw==", + "files": [ + "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.Logging.Console.1.0.0-beta6-11573.nupkg", + "Microsoft.Framework.Logging.Console.1.0.0-beta6-11573.nupkg.sha512", + "Microsoft.Framework.Logging.Console.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Notification/1.0.0-beta6-10209": { + "sha512": "Dwaj6IvuEEuObH34idC3tkT6glsftUwi+wogX9W+D0QBvfoASVQ2CEX48T8bffxNhz6pxYdQzYuyvmQ1z8bBjA==", + "files": [ + "lib/dotnet/Microsoft.Framework.Notification.dll", + "lib/dotnet/Microsoft.Framework.Notification.xml", + "lib/net45/Microsoft.Framework.Notification.dll", + "lib/net45/Microsoft.Framework.Notification.xml", + "lib/win50/Microsoft.Framework.Notification.dll", + "lib/win50/Microsoft.Framework.Notification.xml", + "Microsoft.Framework.Notification.1.0.0-beta6-10209.nupkg", + "Microsoft.Framework.Notification.1.0.0-beta6-10209.nupkg.sha512", + "Microsoft.Framework.Notification.nuspec" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6-11540": { + "serviceable": true, + "sha512": "QhmeABhQ3Cz/ydhGZDEyT0Y95J/fKeRNE4zFodynAaukFwT1mO8QhIyTBoqmZ4f05cft67NhAfG31Ol1MyYkZA==", + "files": [ + "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.OptionsModel.1.0.0-beta6-11540.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6-11540.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6-12189": { + "serviceable": true, + "sha512": "3VyXhdafPM/cHRlqXfLRtaDRHAz1xAnANtRvq3LXDnKsaFCzSxxDx5OElJiguoDUrGV63dOgflcgyIuJi73oJQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6-12189.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6-12189.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Roslyn.Abstractions/1.0.0-beta6-12189": { + "serviceable": true, + "sha512": "SWih02r/O1g9PeyU+gw2sNMvCpN/dfTuktGGOTu0hjycdggCZrNSpf4rs4NsLkviuKL6xor0Ys08IYltUCrz2Q==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.xml", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.1.0.0-beta6-12189.nupkg", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.1.0.0-beta6-12189.nupkg.sha512", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Roslyn.Common/1.0.0-beta6-12189": { + "serviceable": true, + "sha512": "3ISl/+2kCszkXxy4Ec4fikAz43p0F533QjmsyWB6OYTIx8AmsG8QpMgyiu1XEyO/SR6BAzAK5P4fGBRX2E1tog==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Common.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Common.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Common.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Common.xml", + "Microsoft.Framework.Runtime.Roslyn.Common.1.0.0-beta6-12189.nupkg", + "Microsoft.Framework.Runtime.Roslyn.Common.1.0.0-beta6-12189.nupkg.sha512", + "Microsoft.Framework.Runtime.Roslyn.Common.nuspec" + ] + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta6-11709": { + "serviceable": true, + "sha512": "L4T0VgdNIOagluNrLqHm3xLBYP4AZ3BLFbkoyAEkpljNRoN7dG7894Whr6zNPYcS6H2MfJPjMLCs7diyeYVCdA==", + "files": [ + "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.1.0.0-beta6-11709.nupkg", + "Microsoft.Framework.WebEncoders.1.0.0-beta6-11709.nupkg.sha512", + "Microsoft.Framework.WebEncoders.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta6-11709": { + "serviceable": true, + "sha512": "4w62DWHJdmGOq0MBQre9x5KxKv7rUhw+dDZaF2LPbPlhuhs/aEYAo55qVrbtLNPPIB6iXw63YZAVZZ05QHywCA==", + "files": [ + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll", + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.xml", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.xml", + "lib/net45/Microsoft.Framework.WebEncoders.Core.dll", + "lib/net45/Microsoft.Framework.WebEncoders.Core.xml", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta6-11709.nupkg", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta6-11709.nupkg.sha512", + "Microsoft.Framework.WebEncoders.Core.nuspec", + "repo.json" + ] + }, + "Microsoft.Net.Http.Headers/1.0.0-beta6-11709": { + "serviceable": true, + "sha512": "w7nlKb1jrdyMhZ4MBrFwlmPC13T/B8lJbwd8onrmA44ioCo7SdidmHD+FBLyYb7qWuQJ6+EKEGjmc+iPKvPa4A==", + "files": [ + "lib/dnx451/Microsoft.Net.Http.Headers.dll", + "lib/dnx451/Microsoft.Net.Http.Headers.xml", + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll", + "lib/dnxcore50/Microsoft.Net.Http.Headers.xml", + "lib/net45/Microsoft.Net.Http.Headers.dll", + "lib/net45/Microsoft.Net.Http.Headers.xml", + "Microsoft.Net.Http.Headers.1.0.0-beta6-11709.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-beta6-11709.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec", + "repo.json" + ] + }, + "Microsoft.Net.Http.Server/1.0.0-beta6-12421": { + "serviceable": true, + "sha512": "ut60L59MH6tKx28PkaO485BpEOYuZ38uV3OI/eRvazOonaMDB02ajkazQrmFjXYiis4m5MC3RQ1J7GBpqH3KZw==", + "files": [ + "lib/dnx451/Microsoft.Net.Http.Server.dll", + "lib/dnx451/Microsoft.Net.Http.Server.xml", + "lib/dnxcore50/Microsoft.Net.Http.Server.dll", + "lib/dnxcore50/Microsoft.Net.Http.Server.xml", + "lib/net451/Microsoft.Net.Http.Server.dll", + "lib/net451/Microsoft.Net.Http.Server.xml", + "Microsoft.Net.Http.Server.1.0.0-beta6-12421.nupkg", + "Microsoft.Net.Http.Server.1.0.0-beta6-12421.nupkg.sha512", + "Microsoft.Net.Http.Server.nuspec" + ] + }, + "Microsoft.Net.WebSockets/1.0.0-beta6-12421": { + "serviceable": true, + "sha512": "2YW9pOaNH53j2eTroC7yIcHbqGdpwKPgbral8y3kSn8RARj2PV/tKBxFpuFtOpBpvhOi3/nRJY7cjpSkmG7I8g==", + "files": [ + "lib/dnx451/Microsoft.Net.WebSockets.dll", + "lib/dnx451/Microsoft.Net.WebSockets.xml", + "lib/dnxcore50/Microsoft.Net.WebSockets.dll", + "lib/dnxcore50/Microsoft.Net.WebSockets.xml", + "lib/net451/Microsoft.Net.WebSockets.dll", + "lib/net451/Microsoft.Net.WebSockets.xml", + "Microsoft.Net.WebSockets.1.0.0-beta6-12421.nupkg", + "Microsoft.Net.WebSockets.1.0.0-beta6-12421.nupkg.sha512", + "Microsoft.Net.WebSockets.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "3affRB/efu2gSzBCnHNAFYSZtmAWDVZvBFrARwzk8/iOipfUX81oJRmMc6gIL9Oph1+6faV1w5ihkCj0wU+o2A==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23107.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23107.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/de/Microsoft.Win32.Primitives.xml", + "ref/dotnet/es/Microsoft.Win32.Primitives.xml", + "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", + "ref/dotnet/it/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "Ek4nm68AviOHGkKHB+krcQzFoWjm7cVqoYzhYTETjJ4D21vxIGhwGt00uTZL40VSopfBE97dqfqwmcG9/QVjBQ==", + "files": [ + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "Microsoft.Win32.Registry.4.0.0-beta-23107.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23107.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "ref/dotnet/de/Microsoft.Win32.Registry.xml", + "ref/dotnet/es/Microsoft.Win32.Registry.xml", + "ref/dotnet/fr/Microsoft.Win32.Registry.xml", + "ref/dotnet/it/Microsoft.Win32.Registry.xml", + "ref/dotnet/ja/Microsoft.Win32.Registry.xml", + "ref/dotnet/ko/Microsoft.Win32.Registry.xml", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/dotnet/Microsoft.Win32.Registry.xml", + "ref/dotnet/ru/Microsoft.Win32.Registry.xml", + "ref/dotnet/zh-hans/Microsoft.Win32.Registry.xml", + "ref/dotnet/zh-hant/Microsoft.Win32.Registry.xml", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/7.0.1": { + "sha512": "q3V4KLetMLnt1gpAVWgtXnHjKs0UG/RalBc29u2ZKxd5t5Ze4JBL5WiiYIklJyK/5CRiIiNwigVQUo0FgbsuWA==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.7.0.1.nupkg", + "Newtonsoft.Json.7.0.1.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "System.Collections/4.0.10-beta-23107": { + "serviceable": true, + "sha512": "SLSjoJXFyMyx/wqg0VQNqZgrqyykLQv9TBBsf3DKND1D8DnccPiR99xrDelCy4U1W1667EcfWUWhM56cyMW/iA==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23107.nupkg", + "System.Collections.4.0.10-beta-23107.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23107": { + "serviceable": true, + "sha512": "UJ8O8RLV7CFZKfzPzzJ66b8r2KXVIJIdnkg5DzV+KhGx9GBVbprZQSq4lHWKKGeA05Pz6A7Yt0NwJ8ICDxqKbQ==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Collections.Concurrent.xml", + "ref/dotnet/es/System.Collections.Concurrent.xml", + "ref/dotnet/fr/System.Collections.Concurrent.xml", + "ref/dotnet/it/System.Collections.Concurrent.xml", + "ref/dotnet/ja/System.Collections.Concurrent.xml", + "ref/dotnet/ko/System.Collections.Concurrent.xml", + "ref/dotnet/ru/System.Collections.Concurrent.xml", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/dotnet/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23107.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23107.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.36": { + "serviceable": true, + "sha512": "MOlivTIeAIQPPMUPWIIoMCvZczjFRLYUWSYwqi1szu8QPyeIbsaPeI+hpXe1DzTxNwnRnmfYaoToi6kXIfSPNg==", + "files": [ + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "License-Stable.rtf", + "System.Collections.Immutable.1.1.36.nupkg", + "System.Collections.Immutable.1.1.36.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "tU6W74cbtv+yWfv1cq2ZZsXImE4kRiBYIpAJnHr0gR6+yB7RHz1PfFmSOTtnaeiw8elhyUPAb7CMW+DeT5pcag==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/de/System.Collections.NonGeneric.xml", + "ref/dotnet/es/System.Collections.NonGeneric.xml", + "ref/dotnet/fr/System.Collections.NonGeneric.xml", + "ref/dotnet/it/System.Collections.NonGeneric.xml", + "ref/dotnet/ja/System.Collections.NonGeneric.xml", + "ref/dotnet/ko/System.Collections.NonGeneric.xml", + "ref/dotnet/ru/System.Collections.NonGeneric.xml", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", + "ref/net46/System.Collections.NonGeneric.dll", + "System.Collections.NonGeneric.4.0.0-beta-23107.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23107.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "ZFicCFmffTt3TY3BsmV6TaGjJhP56fdkYVlf/3ntCSGqZO+Mk/43+Bk/P+jfh8lKPKoozPVbJApQmjh8PtEw0Q==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.ComponentModel.xml", + "ref/dotnet/es/System.ComponentModel.xml", + "ref/dotnet/fr/System.ComponentModel.xml", + "ref/dotnet/it/System.ComponentModel.xml", + "ref/dotnet/ja/System.ComponentModel.xml", + "ref/dotnet/ko/System.ComponentModel.xml", + "ref/dotnet/ru/System.ComponentModel.xml", + "ref/dotnet/System.ComponentModel.dll", + "ref/dotnet/System.ComponentModel.xml", + "ref/dotnet/zh-hans/System.ComponentModel.xml", + "ref/dotnet/zh-hant/System.ComponentModel.xml", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.0-beta-23107.nupkg", + "System.ComponentModel.4.0.0-beta-23107.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.Annotations/4.0.10-beta-23107": { + "serviceable": true, + "sha512": "9v5gOYfAf0QU++zwV2dMstjkxcKMVJ4kryxDWf3+aOIxIJotTl85fcVasN864bQ/WBbu1gVI7O5jCmZsc+BxwA==", + "files": [ + "lib/dotnet/System.ComponentModel.Annotations.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ComponentModel.Annotations.xml", + "ref/dotnet/es/System.ComponentModel.Annotations.xml", + "ref/dotnet/fr/System.ComponentModel.Annotations.xml", + "ref/dotnet/it/System.ComponentModel.Annotations.xml", + "ref/dotnet/ja/System.ComponentModel.Annotations.xml", + "ref/dotnet/ko/System.ComponentModel.Annotations.xml", + "ref/dotnet/ru/System.ComponentModel.Annotations.xml", + "ref/dotnet/System.ComponentModel.Annotations.dll", + "ref/dotnet/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", + "ref/net46/_._", + "System.ComponentModel.Annotations.4.0.10-beta-23107.nupkg", + "System.ComponentModel.Annotations.4.0.10-beta-23107.nupkg.sha512", + "System.ComponentModel.Annotations.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23107": { + "serviceable": true, + "sha512": "tLZ5EuVuE1MUZUP5DQqkafZF36/wnlai5U0W9hBPQKjq6P1fU+n0nVNzNUmIX87+2kX2p7TlX4Biqxau3JMcfw==", + "files": [ + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/dotnet/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/net46/_._", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23107.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23107.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec" + ] + }, + "System.ComponentModel.Primitives/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "i0NiAMQwq9JiCVzDzAF6qx8QR+/GWf256QIpQzzOmQYCoZtUqQqUHvKCUg9JlWQp2aYDPX54nOB/rIXMy3Jtdg==", + "files": [ + "lib/dotnet/System.ComponentModel.Primitives.dll", + "lib/net46/System.ComponentModel.Primitives.dll", + "ref/dotnet/de/System.ComponentModel.Primitives.xml", + "ref/dotnet/es/System.ComponentModel.Primitives.xml", + "ref/dotnet/fr/System.ComponentModel.Primitives.xml", + "ref/dotnet/it/System.ComponentModel.Primitives.xml", + "ref/dotnet/ja/System.ComponentModel.Primitives.xml", + "ref/dotnet/ko/System.ComponentModel.Primitives.xml", + "ref/dotnet/ru/System.ComponentModel.Primitives.xml", + "ref/dotnet/System.ComponentModel.Primitives.dll", + "ref/dotnet/System.ComponentModel.Primitives.xml", + "ref/dotnet/zh-hans/System.ComponentModel.Primitives.xml", + "ref/dotnet/zh-hant/System.ComponentModel.Primitives.xml", + "ref/net46/System.ComponentModel.Primitives.dll", + "System.ComponentModel.Primitives.4.0.0-beta-23107.nupkg", + "System.ComponentModel.Primitives.4.0.0-beta-23107.nupkg.sha512", + "System.ComponentModel.Primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "TYa8W+qPpTa7ji/Sd8DLPY/GUZAJAn2UXGLW3v5VG16S3wqJcxEkzfMyShnPSqIx//A6wHI7zdziT8E2565czA==", + "files": [ + "lib/dotnet/System.ComponentModel.TypeConverter.dll", + "lib/net46/System.ComponentModel.TypeConverter.dll", + "ref/dotnet/de/System.ComponentModel.TypeConverter.xml", + "ref/dotnet/es/System.ComponentModel.TypeConverter.xml", + "ref/dotnet/fr/System.ComponentModel.TypeConverter.xml", + "ref/dotnet/it/System.ComponentModel.TypeConverter.xml", + "ref/dotnet/ja/System.ComponentModel.TypeConverter.xml", + "ref/dotnet/ko/System.ComponentModel.TypeConverter.xml", + "ref/dotnet/ru/System.ComponentModel.TypeConverter.xml", + "ref/dotnet/System.ComponentModel.TypeConverter.dll", + "ref/dotnet/System.ComponentModel.TypeConverter.xml", + "ref/dotnet/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/dotnet/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/net46/System.ComponentModel.TypeConverter.dll", + "System.ComponentModel.TypeConverter.4.0.0-beta-23107.nupkg", + "System.ComponentModel.TypeConverter.4.0.0-beta-23107.nupkg.sha512", + "System.ComponentModel.TypeConverter.nuspec" + ] + }, + "System.Console/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "0mMO2eHbY3pf+6CB0d9V/alsOAk+QYotFhTIqOekUMiflZGxp7pBcMgNkAJKxCnYfYsqWJqFwNRSy7UZ0j5Aqw==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/de/System.Console.xml", + "ref/dotnet/es/System.Console.xml", + "ref/dotnet/fr/System.Console.xml", + "ref/dotnet/it/System.Console.xml", + "ref/dotnet/ja/System.Console.xml", + "ref/dotnet/ko/System.Console.xml", + "ref/dotnet/ru/System.Console.xml", + "ref/dotnet/System.Console.dll", + "ref/dotnet/System.Console.xml", + "ref/dotnet/zh-hans/System.Console.xml", + "ref/dotnet/zh-hant/System.Console.xml", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23107.nupkg", + "System.Console.4.0.0-beta-23107.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Diagnostics.Contracts/4.0.0-beta-23107": { + "sha512": "6I8m6ULtrcOudDMEFYcbvqB6QW/bvr6R2U14aheVEVdMZUFDb2VPbfWn+iOEqPqMNm+OqRoH20UsgB9Sy5BRZA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Diagnostics.Contracts.xml", + "ref/dotnet/es/System.Diagnostics.Contracts.xml", + "ref/dotnet/fr/System.Diagnostics.Contracts.xml", + "ref/dotnet/it/System.Diagnostics.Contracts.xml", + "ref/dotnet/ja/System.Diagnostics.Contracts.xml", + "ref/dotnet/ko/System.Diagnostics.Contracts.xml", + "ref/dotnet/ru/System.Diagnostics.Contracts.xml", + "ref/dotnet/System.Diagnostics.Contracts.dll", + "ref/dotnet/System.Diagnostics.Contracts.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Contracts.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Contracts.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/netcore50/System.Diagnostics.Contracts.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll", + "System.Diagnostics.Contracts.4.0.0-beta-23107.nupkg", + "System.Diagnostics.Contracts.4.0.0-beta-23107.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23107": { + "serviceable": true, + "sha512": "XU3sxrpemopb2pWQREnf5zXb47xbczih1BMCDv3l1u/CSuS7/Q+Ka0rYPiq/xSkExNl9mC1BcAlWGCRuzpw82Q==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23107.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23107.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Process/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "43YAH27zwsPYLyXbPRvpehA0x61XMsQ0VW+BgPfUZsDcEew1Q+eiXo1auzcUjtAp97nudCGvMYqkKIsWZDqL6g==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Process.dll", + "lib/net46/System.Diagnostics.Process.dll", + "ref/dotnet/de/System.Diagnostics.Process.xml", + "ref/dotnet/es/System.Diagnostics.Process.xml", + "ref/dotnet/fr/System.Diagnostics.Process.xml", + "ref/dotnet/it/System.Diagnostics.Process.xml", + "ref/dotnet/ja/System.Diagnostics.Process.xml", + "ref/dotnet/ko/System.Diagnostics.Process.xml", + "ref/dotnet/ru/System.Diagnostics.Process.xml", + "ref/dotnet/System.Diagnostics.Process.dll", + "ref/dotnet/System.Diagnostics.Process.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Process.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Process.xml", + "ref/net46/System.Diagnostics.Process.dll", + "System.Diagnostics.Process.4.0.0-beta-23107.nupkg", + "System.Diagnostics.Process.4.0.0-beta-23107.nupkg.sha512", + "System.Diagnostics.Process.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "f2sbpUHcyYZghQaiEXOM7j3+3Fn/GCOnJ4hqgR/ZmJSG0gUjagI1Ssf6gIXs0bTwWPH1qJ+zW49H5wTuaaMvww==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Diagnostics.Tools.xml", + "ref/dotnet/es/System.Diagnostics.Tools.xml", + "ref/dotnet/fr/System.Diagnostics.Tools.xml", + "ref/dotnet/it/System.Diagnostics.Tools.xml", + "ref/dotnet/ja/System.Diagnostics.Tools.xml", + "ref/dotnet/ko/System.Diagnostics.Tools.xml", + "ref/dotnet/ru/System.Diagnostics.Tools.xml", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/dotnet/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23107.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23107.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "d7ahWnVC0CHgxrAir2uWhaWFlCtc25fDnm0IXzSnQVXwkwvxocxC1rdKpvBbr3pDP2dhP9dU14vUlL7XWjDZqw==", + "files": [ + "lib/DNXCore50/System.Diagnostics.TraceSource.dll", + "lib/net46/System.Diagnostics.TraceSource.dll", + "ref/dotnet/de/System.Diagnostics.TraceSource.xml", + "ref/dotnet/es/System.Diagnostics.TraceSource.xml", + "ref/dotnet/fr/System.Diagnostics.TraceSource.xml", + "ref/dotnet/it/System.Diagnostics.TraceSource.xml", + "ref/dotnet/ja/System.Diagnostics.TraceSource.xml", + "ref/dotnet/ko/System.Diagnostics.TraceSource.xml", + "ref/dotnet/ru/System.Diagnostics.TraceSource.xml", + "ref/dotnet/System.Diagnostics.TraceSource.dll", + "ref/dotnet/System.Diagnostics.TraceSource.xml", + "ref/dotnet/zh-hans/System.Diagnostics.TraceSource.xml", + "ref/dotnet/zh-hant/System.Diagnostics.TraceSource.xml", + "ref/net46/System.Diagnostics.TraceSource.dll", + "System.Diagnostics.TraceSource.4.0.0-beta-23107.nupkg", + "System.Diagnostics.TraceSource.4.0.0-beta-23107.nupkg.sha512", + "System.Diagnostics.TraceSource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23107": { + "serviceable": true, + "sha512": "aI3jNvpeTf2KdpL8Xh6veFvm8aUhM2UQvu/9eYoCuq3d6b/DDy/T/tEaH2Mr+Wy7678+DRJ9mlvoViVNKjSdJw==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/de/System.Diagnostics.Tracing.xml", + "ref/dotnet/es/System.Diagnostics.Tracing.xml", + "ref/dotnet/fr/System.Diagnostics.Tracing.xml", + "ref/dotnet/it/System.Diagnostics.Tracing.xml", + "ref/dotnet/ja/System.Diagnostics.Tracing.xml", + "ref/dotnet/ko/System.Diagnostics.Tracing.xml", + "ref/dotnet/ru/System.Diagnostics.Tracing.xml", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23107.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23107.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.0-beta-23107": { + "sha512": "3ls7RC/yXx83sBE6iBShIlQ10vjVAYxIAN0/u3965zJxyLy4/bfCOURKUZIUnM4Qd4duu73wUqpOXn7CuKt/9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Dynamic.Runtime.xml", + "ref/dotnet/es/System.Dynamic.Runtime.xml", + "ref/dotnet/fr/System.Dynamic.Runtime.xml", + "ref/dotnet/it/System.Dynamic.Runtime.xml", + "ref/dotnet/ja/System.Dynamic.Runtime.xml", + "ref/dotnet/ko/System.Dynamic.Runtime.xml", + "ref/dotnet/ru/System.Dynamic.Runtime.xml", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.xml", + "ref/dotnet/zh-hans/System.Dynamic.Runtime.xml", + "ref/dotnet/zh-hant/System.Dynamic.Runtime.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Dynamic.Runtime.4.0.0-beta-23107.nupkg", + "System.Dynamic.Runtime.4.0.0-beta-23107.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23107": { + "sha512": "WJzM4t1spLIXXfQyGgUtCbPLLJUNg4cSUMAB3kDMQdBKyH3mGbhooeF9UgXZEsw0hJF6SZMt+TK/ed79iI14AA==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23107.nupkg", + "System.Globalization.4.0.10-beta-23107.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23107": { + "sha512": "mzyeDpPOD+AGl4rJb7aQcWtC79XoRP5Cy0PzMgl0gZpENf78C8+ZlxmMe06+xBOGOPOdcHVWo3pwld/40/+zfQ==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/de/System.Globalization.Calendars.xml", + "ref/dotnet/es/System.Globalization.Calendars.xml", + "ref/dotnet/fr/System.Globalization.Calendars.xml", + "ref/dotnet/it/System.Globalization.Calendars.xml", + "ref/dotnet/ja/System.Globalization.Calendars.xml", + "ref/dotnet/ko/System.Globalization.Calendars.xml", + "ref/dotnet/ru/System.Globalization.Calendars.xml", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hans/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hant/System.Globalization.Calendars.xml", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0-beta-23107.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23107.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "zJJcHSc8IsPr41mH85pyN30To0eGWoZ/0Tt2dkdORvQqs3c7RuZlDD2l/S/tohLMJpfGlKxTuuQ7k5I7Dp3NRA==", + "files": [ + "lib/dotnet/System.Globalization.Extensions.dll", + "lib/net46/System.Globalization.Extensions.dll", + "ref/dotnet/de/System.Globalization.Extensions.xml", + "ref/dotnet/es/System.Globalization.Extensions.xml", + "ref/dotnet/fr/System.Globalization.Extensions.xml", + "ref/dotnet/it/System.Globalization.Extensions.xml", + "ref/dotnet/ja/System.Globalization.Extensions.xml", + "ref/dotnet/ko/System.Globalization.Extensions.xml", + "ref/dotnet/ru/System.Globalization.Extensions.xml", + "ref/dotnet/System.Globalization.Extensions.dll", + "ref/dotnet/System.Globalization.Extensions.xml", + "ref/dotnet/zh-hans/System.Globalization.Extensions.xml", + "ref/dotnet/zh-hant/System.Globalization.Extensions.xml", + "ref/net46/System.Globalization.Extensions.dll", + "System.Globalization.Extensions.4.0.0-beta-23107.nupkg", + "System.Globalization.Extensions.4.0.0-beta-23107.nupkg.sha512", + "System.Globalization.Extensions.nuspec" + ] + }, + "System.IO/4.0.10-beta-23107": { + "serviceable": true, + "sha512": "x2GWathsmP6qw8isxqftnXAJ7R+Fv83PC+xi0+5swzEE/0o/hztSZhpf8N5ojDCm4Z4Fr5SGwo12ismfcdAPsg==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/de/System.IO.xml", + "ref/dotnet/es/System.IO.xml", + "ref/dotnet/fr/System.IO.xml", + "ref/dotnet/it/System.IO.xml", + "ref/dotnet/ja/System.IO.xml", + "ref/dotnet/ko/System.IO.xml", + "ref/dotnet/ru/System.IO.xml", + "ref/dotnet/System.IO.dll", + "ref/dotnet/System.IO.xml", + "ref/dotnet/zh-hans/System.IO.xml", + "ref/dotnet/zh-hant/System.IO.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23107.nupkg", + "System.IO.4.0.10-beta-23107.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "b/0EVm1075XTzIEhjjZ4QlXKf5m5CwsxerDyNU8kFm/4pg5Q3Gb3+snHh2h2Y42gSUtFthjWoqftTrOnNGFF+A==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/de/System.IO.FileSystem.xml", + "ref/dotnet/es/System.IO.FileSystem.xml", + "ref/dotnet/fr/System.IO.FileSystem.xml", + "ref/dotnet/it/System.IO.FileSystem.xml", + "ref/dotnet/ja/System.IO.FileSystem.xml", + "ref/dotnet/ko/System.IO.FileSystem.xml", + "ref/dotnet/ru/System.IO.FileSystem.xml", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.xml", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23107.nupkg", + "System.IO.FileSystem.4.0.0-beta-23107.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "DZt3g296C1Gu+HMG2Tn5TeQwkLC78OG+HYNNSS/ijU/m831aYK0qyy4K5ryQmwhJGK2b6NQQuad5+wQfwLKeiw==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23107.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23107.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "hYJS8ARiQR07L5eTfrFXvWMUilNwsqnhZ4BZcXB2uP7+7GHLx/pa/j1blal2ZBfAq6Z12X1O0Es2eS3Uyj/FNQ==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/de/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/es/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/fr/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/it/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/ja/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/ko/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/ru/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Watcher.xml", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "System.IO.FileSystem.Watcher.4.0.0-beta-23107.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23107.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "inOmzkeIXSE5ixWl7PobaPidVdkbaxixi10lhu42vwgGDEu1wIOS2VdOyHgwQR2yJnig+73YMiEKV2uiOS6kdA==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23107.nupkg", + "System.Linq.4.0.0-beta-23107.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23107": { + "serviceable": true, + "sha512": "CzDNj5dBTyCqEKYPHot06lyTNAqOUCE2eGrtkCkVdTxf/7KabryfVG7obJy4rS3i3b7ZE/ynoamP/tbSYz7QWw==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/de/System.Linq.Expressions.xml", + "ref/dotnet/es/System.Linq.Expressions.xml", + "ref/dotnet/fr/System.Linq.Expressions.xml", + "ref/dotnet/it/System.Linq.Expressions.xml", + "ref/dotnet/ja/System.Linq.Expressions.xml", + "ref/dotnet/ko/System.Linq.Expressions.xml", + "ref/dotnet/ru/System.Linq.Expressions.xml", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.xml", + "ref/dotnet/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet/zh-hant/System.Linq.Expressions.xml", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23107.nupkg", + "System.Linq.Expressions.4.0.10-beta-23107.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Net.NetworkInformation/4.0.10-beta-23107": { + "sha512": "3mF/+5AXdwKnCpT2Z8vnY1NjGgVY3TrQV4GOv/GTK7OInySul54Sw0VDh9ynWzbAkoXAVtG3QZ6bL8JxqB6WRg==", + "files": [ + "lib/DNXCore50/System.Net.NetworkInformation.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Net.NetworkInformation.xml", + "ref/dotnet/es/System.Net.NetworkInformation.xml", + "ref/dotnet/fr/System.Net.NetworkInformation.xml", + "ref/dotnet/it/System.Net.NetworkInformation.xml", + "ref/dotnet/ja/System.Net.NetworkInformation.xml", + "ref/dotnet/ko/System.Net.NetworkInformation.xml", + "ref/dotnet/ru/System.Net.NetworkInformation.xml", + "ref/dotnet/System.Net.NetworkInformation.dll", + "ref/dotnet/System.Net.NetworkInformation.xml", + "ref/dotnet/zh-hans/System.Net.NetworkInformation.xml", + "ref/dotnet/zh-hant/System.Net.NetworkInformation.xml", + "ref/net46/_._", + "System.Net.NetworkInformation.4.0.10-beta-23107.nupkg", + "System.Net.NetworkInformation.4.0.10-beta-23107.nupkg.sha512", + "System.Net.NetworkInformation.nuspec" + ] + }, + "System.Net.Primitives/4.0.10-beta-23107": { + "serviceable": true, + "sha512": "pPWmddDdK/cCw3ayOTW0LU0Ah2MOMxRv55wTR9s+FXryAs8GqBi3arKBKDe/s1HaBpjtcxM7qeKSPlkLY8qHEw==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/de/System.Net.Primitives.xml", + "ref/dotnet/es/System.Net.Primitives.xml", + "ref/dotnet/fr/System.Net.Primitives.xml", + "ref/dotnet/it/System.Net.Primitives.xml", + "ref/dotnet/ja/System.Net.Primitives.xml", + "ref/dotnet/ko/System.Net.Primitives.xml", + "ref/dotnet/ru/System.Net.Primitives.xml", + "ref/dotnet/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.xml", + "ref/dotnet/zh-hans/System.Net.Primitives.xml", + "ref/dotnet/zh-hant/System.Net.Primitives.xml", + "ref/net46/_._", + "System.Net.Primitives.4.0.10-beta-23107.nupkg", + "System.Net.Primitives.4.0.10-beta-23107.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.WebSockets/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "k/kvEKYR/Xq381dQB9jHZNeAk4d5k2WJDzayCY0v7ocYx6oRPMPAf+Gtk14UOSGyIGxt06Md3KKR/3tSaKqIOQ==", + "files": [ + "lib/DNXCore50/System.Net.WebSockets.dll", + "lib/net46/System.Net.WebSockets.dll", + "ref/dotnet/de/System.Net.WebSockets.xml", + "ref/dotnet/es/System.Net.WebSockets.xml", + "ref/dotnet/fr/System.Net.WebSockets.xml", + "ref/dotnet/it/System.Net.WebSockets.xml", + "ref/dotnet/ja/System.Net.WebSockets.xml", + "ref/dotnet/ko/System.Net.WebSockets.xml", + "ref/dotnet/ru/System.Net.WebSockets.xml", + "ref/dotnet/System.Net.WebSockets.dll", + "ref/dotnet/System.Net.WebSockets.xml", + "ref/dotnet/zh-hans/System.Net.WebSockets.xml", + "ref/dotnet/zh-hant/System.Net.WebSockets.xml", + "ref/net46/System.Net.WebSockets.dll", + "System.Net.WebSockets.4.0.0-beta-23107.nupkg", + "System.Net.WebSockets.4.0.0-beta-23107.nupkg.sha512", + "System.Net.WebSockets.nuspec" + ] + }, + "System.ObjectModel/4.0.10-beta-23107": { + "serviceable": true, + "sha512": "e0cKaE+qyR7i/dCOT0qxSnXzaEomJEtWkdZYmlXQ0g5a0W9c4GbwdymzUI711gZt9qUr9oCORKZ3NPLNDDJ1Rg==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ObjectModel.xml", + "ref/dotnet/es/System.ObjectModel.xml", + "ref/dotnet/fr/System.ObjectModel.xml", + "ref/dotnet/it/System.ObjectModel.xml", + "ref/dotnet/ja/System.ObjectModel.xml", + "ref/dotnet/ko/System.ObjectModel.xml", + "ref/dotnet/ru/System.ObjectModel.xml", + "ref/dotnet/System.ObjectModel.dll", + "ref/dotnet/System.ObjectModel.xml", + "ref/dotnet/zh-hans/System.ObjectModel.xml", + "ref/dotnet/zh-hant/System.ObjectModel.xml", + "ref/net46/_._", + "System.ObjectModel.4.0.10-beta-23107.nupkg", + "System.ObjectModel.4.0.10-beta-23107.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Networking/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "jqz5bo16k0ViIbc9CbK3rjMwj8MOH4gI7V2lccTaXABw0E+s7lfHnLUcHu+RWjeaffsCPRjsrS2WPHswNxONQw==", + "files": [ + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.4.0.0-beta-23107.nupkg", + "System.Private.Networking.4.0.0-beta-23107.nupkg.sha512", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "25msNfgSoLZuW9BcXGDphnbsy7bGW4IcDjzQ69y7nRgz/pftXBZ1HkGFaKZ6b0iL2adGj91OzjPWyM8YNPJ5hw==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23107.nupkg", + "System.Private.Uri.4.0.0-beta-23107.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23107": { + "sha512": "aYY0r/vuA2NW+NpoQdhm19vvX8apZSvHy3yhv26SArwTg7+wuvPJQgHDjwA2M3NWTXlJwon7O3jOlu/WKHAjhw==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/de/System.Reflection.xml", + "ref/dotnet/es/System.Reflection.xml", + "ref/dotnet/fr/System.Reflection.xml", + "ref/dotnet/it/System.Reflection.xml", + "ref/dotnet/ja/System.Reflection.xml", + "ref/dotnet/ko/System.Reflection.xml", + "ref/dotnet/ru/System.Reflection.xml", + "ref/dotnet/System.Reflection.dll", + "ref/dotnet/System.Reflection.xml", + "ref/dotnet/zh-hans/System.Reflection.xml", + "ref/dotnet/zh-hant/System.Reflection.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23107.nupkg", + "System.Reflection.4.0.10-beta-23107.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23107": { + "sha512": "SLuq/51THHlwzurRMsi1BbhLRd3O9qLoyZVUwJxs+YAvg+9+/2X/o8nffx5vQ3GNhHze3iSm6IGwI1v866ZfpA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/de/System.Reflection.Emit.xml", + "ref/dotnet/es/System.Reflection.Emit.xml", + "ref/dotnet/fr/System.Reflection.Emit.xml", + "ref/dotnet/it/System.Reflection.Emit.xml", + "ref/dotnet/ja/System.Reflection.Emit.xml", + "ref/dotnet/ko/System.Reflection.Emit.xml", + "ref/dotnet/ru/System.Reflection.Emit.xml", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.xml", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23107.nupkg", + "System.Reflection.Emit.4.0.0-beta-23107.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23107": { + "sha512": "rRBnDLwV3//T2enCyR2u8yDsUB1CvHTwCmBYpszvYhZg2XoMHjydRRHlA4N0m7ipkq3HtumoGOzj4pnVyXDzzA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/wp80/_._", + "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/net45/_._", + "ref/wp80/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23107.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23107.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.0.0-beta-23107": { + "sha512": "HWy1Kk77qrXZrxpvnpfeGnZrQqVU34gsQRi5EOHB0yAUUzvEZSsrklxzt8VjMpPzfDh4vwxzikQJJu2A+bhzdQ==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/wp80/_._", + "ref/dotnet/de/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/es/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/fr/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/it/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/ja/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/ko/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/ru/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/System.Reflection.Emit.Lightweight.dll", + "ref/dotnet/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/net45/_._", + "ref/wp80/_._", + "System.Reflection.Emit.Lightweight.4.0.0-beta-23107.nupkg", + "System.Reflection.Emit.Lightweight.4.0.0-beta-23107.nupkg.sha512", + "System.Reflection.Emit.Lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "JJKYIRDuuu8Yu7pXPM42bq/wBaDUPZHX7yviPUgdbWFrj/ktF2N/3qKE4tmOKZUt4cAKuIdTomcKYR/HtdZ5nA==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Extensions.xml", + "ref/dotnet/es/System.Reflection.Extensions.xml", + "ref/dotnet/fr/System.Reflection.Extensions.xml", + "ref/dotnet/it/System.Reflection.Extensions.xml", + "ref/dotnet/ja/System.Reflection.Extensions.xml", + "ref/dotnet/ko/System.Reflection.Extensions.xml", + "ref/dotnet/ru/System.Reflection.Extensions.xml", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/dotnet/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23107.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23107.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "jEHAaKnMdEu1gH/9+gNpz1ZvjRZyABHm0j/IXeNWj+1hpuviwrLXa2PS/UgV5710YmGDqLeD6yp/ut9Mlj1Zig==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Primitives.xml", + "ref/dotnet/es/System.Reflection.Primitives.xml", + "ref/dotnet/fr/System.Reflection.Primitives.xml", + "ref/dotnet/it/System.Reflection.Primitives.xml", + "ref/dotnet/ja/System.Reflection.Primitives.xml", + "ref/dotnet/ko/System.Reflection.Primitives.xml", + "ref/dotnet/ru/System.Reflection.Primitives.xml", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23107.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23107.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "PKgLoBU4az5zyWCLhzm/xwDmxaDJXLSk2c3AvbETwZrGdm9aWm/cfDN5CKxffj3/jP/QvujsUxRlFS9poUoVHg==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/de/System.Reflection.TypeExtensions.xml", + "ref/dotnet/es/System.Reflection.TypeExtensions.xml", + "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", + "ref/dotnet/it/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23107.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23107.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "+0K+2LlSwOE4AzVAZOTr7LI6nmu5aFzHd72utFnXxEul7wLFBHP/3jVvhEJdR5ZyIXpRHcEmdUZw2u7D6HYeBg==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23107.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23107.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23107": { + "serviceable": true, + "sha512": "jqloN4JOM71c+y6eClfW8v61DR3fKkpamgh/1k5LA+2H8YnVN8yye4Wo0R790Y308+gP//4C0nylckXB+HiV0w==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/de/System.Runtime.xml", + "ref/dotnet/es/System.Runtime.xml", + "ref/dotnet/fr/System.Runtime.xml", + "ref/dotnet/it/System.Runtime.xml", + "ref/dotnet/ja/System.Runtime.xml", + "ref/dotnet/ko/System.Runtime.xml", + "ref/dotnet/ru/System.Runtime.xml", + "ref/dotnet/System.Runtime.dll", + "ref/dotnet/System.Runtime.xml", + "ref/dotnet/zh-hans/System.Runtime.xml", + "ref/dotnet/zh-hant/System.Runtime.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23107.nupkg", + "System.Runtime.4.0.20-beta-23107.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23107": { + "serviceable": true, + "sha512": "65Wa0Y9G1sI9zm+cyOxFCGnZEyU8YLLAqn1e41kOWwbuEUTnt03wdg6SOrqGjDQnoOxjxKWve0Sxn3yxpUtitg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/de/System.Runtime.Extensions.xml", + "ref/dotnet/es/System.Runtime.Extensions.xml", + "ref/dotnet/fr/System.Runtime.Extensions.xml", + "ref/dotnet/it/System.Runtime.Extensions.xml", + "ref/dotnet/ja/System.Runtime.Extensions.xml", + "ref/dotnet/ko/System.Runtime.Extensions.xml", + "ref/dotnet/ru/System.Runtime.Extensions.xml", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23107.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23107.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "huYE6pejN9pKCqVuIlDBwrLTzlKlfm9Xhr+Sk1PKTuLvGBn/Me9JO5K51YmC4ZM/4TQ8D/kYxZ0zo1o3epr+Tw==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23107.nupkg", + "System.Runtime.Handles.4.0.0-beta-23107.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23107": { + "serviceable": true, + "sha512": "Jr9StMOdqscd8uJq+KlshDjU84987cGp5vHde0vyXt4pcNZdbDYk9cB+zzHOGzQfItHJKrddog2Bwizz4jVlVA==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/de/System.Runtime.InteropServices.xml", + "ref/dotnet/es/System.Runtime.InteropServices.xml", + "ref/dotnet/fr/System.Runtime.InteropServices.xml", + "ref/dotnet/it/System.Runtime.InteropServices.xml", + "ref/dotnet/ja/System.Runtime.InteropServices.xml", + "ref/dotnet/ko/System.Runtime.InteropServices.xml", + "ref/dotnet/ru/System.Runtime.InteropServices.xml", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23107.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23107.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "64oMyAIrOvepuaFj9tTWhqmf5RT6nv6TNlZWj3ZmmfHMW9OWxh897qv53sOh3NlAwYbj8Mu82SuIk3EVLRNnrA==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Runtime.Numerics.xml", + "ref/dotnet/es/System.Runtime.Numerics.xml", + "ref/dotnet/fr/System.Runtime.Numerics.xml", + "ref/dotnet/it/System.Runtime.Numerics.xml", + "ref/dotnet/ja/System.Runtime.Numerics.xml", + "ref/dotnet/ko/System.Runtime.Numerics.xml", + "ref/dotnet/ru/System.Runtime.Numerics.xml", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/dotnet/System.Runtime.Numerics.xml", + "ref/dotnet/zh-hans/System.Runtime.Numerics.xml", + "ref/dotnet/zh-hant/System.Runtime.Numerics.xml", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "System.Runtime.Numerics.4.0.0-beta-23107.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23107.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Security.Claims/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "fqA+BJ1s+ttrDk4RI73I7RvPNEIvjZ6yizmawtD1YyLHkSbaAgYGvuMPXQ7zqJreJ/VprSYiDxbczzJfVOE/pQ==", + "files": [ + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/de/System.Security.Claims.xml", + "ref/dotnet/es/System.Security.Claims.xml", + "ref/dotnet/fr/System.Security.Claims.xml", + "ref/dotnet/it/System.Security.Claims.xml", + "ref/dotnet/ja/System.Security.Claims.xml", + "ref/dotnet/ko/System.Security.Claims.xml", + "ref/dotnet/ru/System.Security.Claims.xml", + "ref/dotnet/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.xml", + "ref/dotnet/zh-hans/System.Security.Claims.xml", + "ref/dotnet/zh-hant/System.Security.Claims.xml", + "ref/net46/System.Security.Claims.dll", + "System.Security.Claims.4.0.0-beta-23107.nupkg", + "System.Security.Claims.4.0.0-beta-23107.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "kt2Fcj/VqSIxXtu47A2gJAG/l/9gj6TqJYj96cxbmyY+2QngnJ0OjbRzvR35vmB9y0WqCvdbJcSTEzhOpqvuPQ==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/de/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/es/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/fr/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/it/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/ja/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/ko/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/ru/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "System.Security.Cryptography.Encoding.4.0.0-beta-23107.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23107.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "XUgrsEU7aKEjIlCxxHfxTCuNqDITrll9ztTEwxsKoHuN630ctZktJYI3gOFlLXBkzmJ9dtAG8bXuiYQgzI73pQ==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/de/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/es/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/fr/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/it/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/ja/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/ko/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/ru/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Encryption.xml", + "ref/net46/System.Security.Cryptography.Encryption.dll", + "System.Security.Cryptography.Encryption.4.0.0-beta-23107.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23107.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec" + ] + }, + "System.Security.Cryptography.Encryption.Aes/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "F9rGgT2R3MnIa4tSBGi9mqMBAGllS7+ADqk4lJp4pAjIQCaK0PjCwQRc07daqVHSF60WlgrzhnMKj+XionUlXA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encryption.Aes.dll", + "lib/net46/System.Security.Cryptography.Encryption.Aes.dll", + "ref/dotnet/de/System.Security.Cryptography.Encryption.Aes.xml", + "ref/dotnet/es/System.Security.Cryptography.Encryption.Aes.xml", + "ref/dotnet/fr/System.Security.Cryptography.Encryption.Aes.xml", + "ref/dotnet/it/System.Security.Cryptography.Encryption.Aes.xml", + "ref/dotnet/ja/System.Security.Cryptography.Encryption.Aes.xml", + "ref/dotnet/ko/System.Security.Cryptography.Encryption.Aes.xml", + "ref/dotnet/ru/System.Security.Cryptography.Encryption.Aes.xml", + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.Aes.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Encryption.Aes.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Encryption.Aes.xml", + "ref/net46/System.Security.Cryptography.Encryption.Aes.dll", + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23107.nupkg", + "System.Security.Cryptography.Encryption.Aes.4.0.0-beta-23107.nupkg.sha512", + "System.Security.Cryptography.Encryption.Aes.nuspec" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "g0MopzA00niks3GM1v8TOA0VxlevJeppQEkYyCCNKWWwjzz++rwhuHHnhogwij28c728QrAnnuGpRtN+te1SJg==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/de/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/es/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/fr/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/it/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/ja/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/ko/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/ru/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Hashing.xml", + "ref/net46/System.Security.Cryptography.Hashing.dll", + "System.Security.Cryptography.Hashing.4.0.0-beta-23107.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23107.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "xuZ/8z5E6buNMqq+cKdYed2lbcRfHH10aYgLDThYyMjN+TIqTyVfAYfFOgMwg8eYF3S3Fv8JPRZseW3BdfzH1Q==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/de/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/es/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/fr/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/it/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/ja/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/ko/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/ru/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23107.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23107.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "8Ny+CVOV1PVtJqU3wnLXdIf8wzwDPG1+o2G/rmYailR9d+JTblEbmMomhqOrDxwU14KJeWVfuLofNxK0XY1VwA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/de/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/es/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/fr/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/it/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/ja/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/ko/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/ru/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23107.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23107.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "u+6a3IRCJzKHVf6yiPyoBG0EqYZNI6FepKzJ9nmEtJZXpCo3Jd1GpnEh5LwjIWp0Y5Ir5GtlY1A4kvke1JFTrw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/de/System.Security.Cryptography.RSA.xml", + "ref/dotnet/es/System.Security.Cryptography.RSA.xml", + "ref/dotnet/fr/System.Security.Cryptography.RSA.xml", + "ref/dotnet/it/System.Security.Cryptography.RSA.xml", + "ref/dotnet/ja/System.Security.Cryptography.RSA.xml", + "ref/dotnet/ko/System.Security.Cryptography.RSA.xml", + "ref/dotnet/ru/System.Security.Cryptography.RSA.xml", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.RSA.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.RSA.xml", + "ref/net46/System.Security.Cryptography.RSA.dll", + "System.Security.Cryptography.RSA.4.0.0-beta-23107.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23107.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "imvjgX57G285+oWbZy08MCnRHxDSYlw2GWfmFNGuIlMtKBEcVX3tT2GxvOJYusCiGIXZPNFJitya9Yoer5w65Q==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/de/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/es/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/it/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23107.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23107.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "vZfMH9uuxifMUxWcnopB3khaWWrbYKY3RCqHsuspmf2rhiAVuoGQCnozoZnhQ/Q1SnBoVKRASCKr6gagABRwcA==", + "files": [ + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Security.Principal.xml", + "ref/dotnet/es/System.Security.Principal.xml", + "ref/dotnet/fr/System.Security.Principal.xml", + "ref/dotnet/it/System.Security.Principal.xml", + "ref/dotnet/ja/System.Security.Principal.xml", + "ref/dotnet/ko/System.Security.Principal.xml", + "ref/dotnet/ru/System.Security.Principal.xml", + "ref/dotnet/System.Security.Principal.dll", + "ref/dotnet/System.Security.Principal.xml", + "ref/dotnet/zh-hans/System.Security.Principal.xml", + "ref/dotnet/zh-hant/System.Security.Principal.xml", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Security.Principal.4.0.0-beta-23107.nupkg", + "System.Security.Principal.4.0.0-beta-23107.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "7T+sca5sguyefo1tL9SxI1Rxzxjtcjqwa7Ud/U/MuDkuFgWA0HAIRqFFQ94B7o/yMNgtiBCdF3psHvKVm23Cdg==", + "files": [ + "lib/DNXCore50/System.Security.Principal.Windows.dll", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/dotnet/de/System.Security.Principal.Windows.xml", + "ref/dotnet/es/System.Security.Principal.Windows.xml", + "ref/dotnet/fr/System.Security.Principal.Windows.xml", + "ref/dotnet/it/System.Security.Principal.Windows.xml", + "ref/dotnet/ja/System.Security.Principal.Windows.xml", + "ref/dotnet/ko/System.Security.Principal.Windows.xml", + "ref/dotnet/ru/System.Security.Principal.Windows.xml", + "ref/dotnet/System.Security.Principal.Windows.dll", + "ref/dotnet/System.Security.Principal.Windows.xml", + "ref/dotnet/zh-hans/System.Security.Principal.Windows.xml", + "ref/dotnet/zh-hant/System.Security.Principal.Windows.xml", + "ref/net46/System.Security.Principal.Windows.dll", + "System.Security.Principal.Windows.4.0.0-beta-23107.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23107.nupkg.sha512", + "System.Security.Principal.Windows.nuspec" + ] + }, + "System.Security.SecureString/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "8i8TityGeWOArBAR8IBx+4BDvx/8ROokTT4QCs4z7SAbYh6/yNyO4GW3UNfW/jyvDb5IMazdHK1WkiDcV3Ia7A==", + "files": [ + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/de/System.Security.SecureString.xml", + "ref/dotnet/es/System.Security.SecureString.xml", + "ref/dotnet/fr/System.Security.SecureString.xml", + "ref/dotnet/it/System.Security.SecureString.xml", + "ref/dotnet/ja/System.Security.SecureString.xml", + "ref/dotnet/ko/System.Security.SecureString.xml", + "ref/dotnet/ru/System.Security.SecureString.xml", + "ref/dotnet/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.xml", + "ref/dotnet/zh-hans/System.Security.SecureString.xml", + "ref/dotnet/zh-hant/System.Security.SecureString.xml", + "ref/net46/System.Security.SecureString.dll", + "System.Security.SecureString.4.0.0-beta-23107.nupkg", + "System.Security.SecureString.4.0.0-beta-23107.nupkg.sha512", + "System.Security.SecureString.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23107": { + "sha512": "c7NPAsdEdfCIrvgqQXBA/YXLNm2wqwnnHjrHWRFgdLaTAhL2QUpP+HVrxUNLLWpNjY7EbAiGMZ2ZnMjJDITaUg==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/de/System.Text.Encoding.xml", + "ref/dotnet/es/System.Text.Encoding.xml", + "ref/dotnet/fr/System.Text.Encoding.xml", + "ref/dotnet/it/System.Text.Encoding.xml", + "ref/dotnet/ja/System.Text.Encoding.xml", + "ref/dotnet/ko/System.Text.Encoding.xml", + "ref/dotnet/ru/System.Text.Encoding.xml", + "ref/dotnet/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23107.nupkg", + "System.Text.Encoding.4.0.10-beta-23107.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23107": { + "sha512": "0FWs1oOs1p3TwXUtpt/2Cq5GWYpLrMxE8I5TiGs3Edds9OUuVWpJSp3joK2BskmQtqv1CiUlZbq/IblJhlYdHw==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/de/System.Text.Encoding.Extensions.xml", + "ref/dotnet/es/System.Text.Encoding.Extensions.xml", + "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", + "ref/dotnet/it/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23107.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23107.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23107": { + "serviceable": true, + "sha512": "7fWHYS5mU6+C5p7DKTuw6Lye8PtoXxyDpr2r9w8m4c2xva7Y0EA8aNSziWY025bViCZXN2WtCcHX2oGjJqucLw==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Text.RegularExpressions.xml", + "ref/dotnet/es/System.Text.RegularExpressions.xml", + "ref/dotnet/fr/System.Text.RegularExpressions.xml", + "ref/dotnet/it/System.Text.RegularExpressions.xml", + "ref/dotnet/ja/System.Text.RegularExpressions.xml", + "ref/dotnet/ko/System.Text.RegularExpressions.xml", + "ref/dotnet/ru/System.Text.RegularExpressions.xml", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/dotnet/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23107.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23107.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23107": { + "serviceable": true, + "sha512": "XtGVmDZ2khO5JVCv1ShTz9cLlYyjJwz4f+qV8YY6tlLDpz7fgiUIk5QIIE/kaAeBQYAsJaN0wie4HL0HZUEoVA==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/de/System.Threading.xml", + "ref/dotnet/es/System.Threading.xml", + "ref/dotnet/fr/System.Threading.xml", + "ref/dotnet/it/System.Threading.xml", + "ref/dotnet/ja/System.Threading.xml", + "ref/dotnet/ko/System.Threading.xml", + "ref/dotnet/ru/System.Threading.xml", + "ref/dotnet/System.Threading.dll", + "ref/dotnet/System.Threading.xml", + "ref/dotnet/zh-hans/System.Threading.xml", + "ref/dotnet/zh-hant/System.Threading.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23107.nupkg", + "System.Threading.4.0.10-beta-23107.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "L5Q4YBZge7P7tjWQzPe3LCug9RXiyFFo/zXJWSL/udgauI3XHWEGePL1geg1sb4h2kUKqPy5tG37J0Tr76KbWg==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/de/System.Threading.Overlapped.xml", + "ref/dotnet/es/System.Threading.Overlapped.xml", + "ref/dotnet/fr/System.Threading.Overlapped.xml", + "ref/dotnet/it/System.Threading.Overlapped.xml", + "ref/dotnet/ja/System.Threading.Overlapped.xml", + "ref/dotnet/ko/System.Threading.Overlapped.xml", + "ref/dotnet/ru/System.Threading.Overlapped.xml", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23107.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23107.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23107": { + "serviceable": true, + "sha512": "bO7AMcpuTw6bp4CxG+7IP5htbPapViHfSm6F/Pras1K3SYJ2wYUy/BUZBaCm6howTc/M7Ym+odjpSoyfNDWbRw==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/de/System.Threading.Tasks.xml", + "ref/dotnet/es/System.Threading.Tasks.xml", + "ref/dotnet/fr/System.Threading.Tasks.xml", + "ref/dotnet/it/System.Threading.Tasks.xml", + "ref/dotnet/ja/System.Threading.Tasks.xml", + "ref/dotnet/ko/System.Threading.Tasks.xml", + "ref/dotnet/ru/System.Threading.Tasks.xml", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.xml", + "ref/dotnet/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet/zh-hant/System.Threading.Tasks.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23107.nupkg", + "System.Threading.Tasks.4.0.10-beta-23107.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Tasks.Parallel/4.0.0-beta-23107": { + "serviceable": true, + "sha512": "bjxGVWSmqdEsVsVWC8tED/3TMF33pT/iMFiishCLyFIzg+n8FtGpy3tDyX3wJxRZBNGBLJRsCKUz/uEWqsDKHQ==", + "files": [ + "lib/dotnet/System.Threading.Tasks.Parallel.dll", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.Parallel.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Threading.Tasks.Parallel.xml", + "ref/dotnet/es/System.Threading.Tasks.Parallel.xml", + "ref/dotnet/fr/System.Threading.Tasks.Parallel.xml", + "ref/dotnet/it/System.Threading.Tasks.Parallel.xml", + "ref/dotnet/ja/System.Threading.Tasks.Parallel.xml", + "ref/dotnet/ko/System.Threading.Tasks.Parallel.xml", + "ref/dotnet/ru/System.Threading.Tasks.Parallel.xml", + "ref/dotnet/System.Threading.Tasks.Parallel.dll", + "ref/dotnet/System.Threading.Tasks.Parallel.xml", + "ref/dotnet/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/dotnet/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.Parallel.dll", + "ref/netcore50/System.Threading.Tasks.Parallel.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "System.Threading.Tasks.Parallel.4.0.0-beta-23107.nupkg", + "System.Threading.Tasks.Parallel.4.0.0-beta-23107.nupkg.sha512", + "System.Threading.Tasks.Parallel.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23107": { + "sha512": "Z09eWqvQJvqgLL2boAN7zmLQ6hmYybCyRwGP+Ybecnhyvi0tBG/mNalky1EPCbiUXT2+GWcFnbOrdFGxHy5Jhw==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/de/System.Threading.Thread.xml", + "ref/dotnet/es/System.Threading.Thread.xml", + "ref/dotnet/fr/System.Threading.Thread.xml", + "ref/dotnet/it/System.Threading.Thread.xml", + "ref/dotnet/ja/System.Threading.Thread.xml", + "ref/dotnet/ko/System.Threading.Thread.xml", + "ref/dotnet/ru/System.Threading.Thread.xml", + "ref/dotnet/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.xml", + "ref/dotnet/zh-hans/System.Threading.Thread.xml", + "ref/dotnet/zh-hant/System.Threading.Thread.xml", + "ref/net46/System.Threading.Thread.dll", + "System.Threading.Thread.4.0.0-beta-23107.nupkg", + "System.Threading.Thread.4.0.0-beta-23107.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23107": { + "sha512": "POTOKCIIx6FbVWWAxAeWCQbWo9wWyv+lJhsdBobdaVCYAOdluTfgK+7XvHqSZv5dKZ4DTW5yZe+TzUUAY9tfgw==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/de/System.Threading.ThreadPool.xml", + "ref/dotnet/es/System.Threading.ThreadPool.xml", + "ref/dotnet/fr/System.Threading.ThreadPool.xml", + "ref/dotnet/it/System.Threading.ThreadPool.xml", + "ref/dotnet/ja/System.Threading.ThreadPool.xml", + "ref/dotnet/ko/System.Threading.ThreadPool.xml", + "ref/dotnet/ru/System.Threading.ThreadPool.xml", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.xml", + "ref/dotnet/zh-hans/System.Threading.ThreadPool.xml", + "ref/dotnet/zh-hant/System.Threading.ThreadPool.xml", + "ref/net46/System.Threading.ThreadPool.dll", + "System.Threading.ThreadPool.4.0.10-beta-23107.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23107.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.0-beta-23107": { + "sha512": "KFjD+x3JvVYI4jbY3CivYiwkCEkFEiYRj6tq0kgPIbzz34BETGS3MBMKAbgC1Eb5F14BZG6jfhyHSxOpbIN/RQ==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Threading.Timer.xml", + "ref/dotnet/es/System.Threading.Timer.xml", + "ref/dotnet/fr/System.Threading.Timer.xml", + "ref/dotnet/it/System.Threading.Timer.xml", + "ref/dotnet/ja/System.Threading.Timer.xml", + "ref/dotnet/ko/System.Threading.Timer.xml", + "ref/dotnet/ru/System.Threading.Timer.xml", + "ref/dotnet/System.Threading.Timer.dll", + "ref/dotnet/System.Threading.Timer.xml", + "ref/dotnet/zh-hans/System.Threading.Timer.xml", + "ref/dotnet/zh-hant/System.Threading.Timer.xml", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/win81/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.0-beta-23107.nupkg", + "System.Threading.Timer.4.0.0-beta-23107.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23107": { + "serviceable": true, + "sha512": "6fVdBZeo8Za/mX1poB4aI2u95O+G/YAtzaHJylU8PfRsZwaVlsGCLiTcVufoTmJ4Rvs31QaaFW5hQPvb+wG7fw==", + "files": [ + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Xml.ReaderWriter.xml", + "ref/dotnet/es/System.Xml.ReaderWriter.xml", + "ref/dotnet/fr/System.Xml.ReaderWriter.xml", + "ref/dotnet/it/System.Xml.ReaderWriter.xml", + "ref/dotnet/ja/System.Xml.ReaderWriter.xml", + "ref/dotnet/ko/System.Xml.ReaderWriter.xml", + "ref/dotnet/ru/System.Xml.ReaderWriter.xml", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/dotnet/System.Xml.ReaderWriter.xml", + "ref/dotnet/zh-hans/System.Xml.ReaderWriter.xml", + "ref/dotnet/zh-hant/System.Xml.ReaderWriter.xml", + "ref/net46/_._", + "System.Xml.ReaderWriter.4.0.10-beta-23107.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23107.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.10-beta-23107": { + "serviceable": true, + "sha512": "8RpZ8shMl7wmW7WSatvkKkm1FgbyEnjNWYkpkfUrT/QOjDOxvJjcpEtp4wSt/pVO4DfTX0mx8p8iYDedocra5Q==", + "files": [ + "lib/dotnet/System.Xml.XDocument.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Xml.XDocument.xml", + "ref/dotnet/es/System.Xml.XDocument.xml", + "ref/dotnet/fr/System.Xml.XDocument.xml", + "ref/dotnet/it/System.Xml.XDocument.xml", + "ref/dotnet/ja/System.Xml.XDocument.xml", + "ref/dotnet/ko/System.Xml.XDocument.xml", + "ref/dotnet/ru/System.Xml.XDocument.xml", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/dotnet/System.Xml.XDocument.xml", + "ref/dotnet/zh-hans/System.Xml.XDocument.xml", + "ref/dotnet/zh-hant/System.Xml.XDocument.xml", + "ref/net46/_._", + "System.Xml.XDocument.4.0.10-beta-23107.nupkg", + "System.Xml.XDocument.4.0.10-beta-23107.nupkg.sha512", + "System.Xml.XDocument.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "System.Runtime.Extensions >= 4.0.10-beta-*", + "Microsoft.AspNet.Diagnostics >= 1.0.0-*", + "Microsoft.AspNet.Mvc >= 6.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-*", + "Newtonsoft.Json >= 7.0.1" + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [] + } +} \ No newline at end of file