diff --git a/.gitignore b/.gitignore index 57a1574..884c241 100644 --- a/.gitignore +++ b/.gitignore @@ -24,7 +24,7 @@ bld/ # Visual Studo 2015 cache/options directory .vs/ - +wwwroot/ # MSTest test Results [Tt]est[Rr]esult*/ [Bb]uild[Ll]og.* diff --git a/AzureTableStorageCache.sln b/AzureTableStorageCache.sln new file mode 100644 index 0000000..7db6262 --- /dev/null +++ b/AzureTableStorageCache.sln @@ -0,0 +1,47 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.23107.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{C054D790-3899-4B62-97FA-0053C7437FA5}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{A424946D-7019-4CA7-A1F0-05B616CD3A49}" + ProjectSection(SolutionItems) = preProject + global.json = global.json + NuGet.Config = NuGet.Config + EndProjectSection +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "AzureTableStorageCache", "src\AzureTableStorageCache\AzureTableStorageCache.xproj", "{4220710A-3EC2-4449-BC86-B75F0A58D003}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "AzureTableStorageCache.Sample", "src\AzureTableStorageCache.Sample\AzureTableStorageCache.Sample.xproj", "{902E5295-C074-45B3-ADD2-7DCF289C24A8}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "AzureTableStorageCacheSample", "src\AzureTableStorageCacheSample\AzureTableStorageCacheSample.xproj", "{D2C11E75-BAC6-4619-930E-CCA94474365E}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {4220710A-3EC2-4449-BC86-B75F0A58D003}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4220710A-3EC2-4449-BC86-B75F0A58D003}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4220710A-3EC2-4449-BC86-B75F0A58D003}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4220710A-3EC2-4449-BC86-B75F0A58D003}.Release|Any CPU.Build.0 = Release|Any CPU + {902E5295-C074-45B3-ADD2-7DCF289C24A8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {902E5295-C074-45B3-ADD2-7DCF289C24A8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {902E5295-C074-45B3-ADD2-7DCF289C24A8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {902E5295-C074-45B3-ADD2-7DCF289C24A8}.Release|Any CPU.Build.0 = Release|Any CPU + {D2C11E75-BAC6-4619-930E-CCA94474365E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D2C11E75-BAC6-4619-930E-CCA94474365E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D2C11E75-BAC6-4619-930E-CCA94474365E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D2C11E75-BAC6-4619-930E-CCA94474365E}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {4220710A-3EC2-4449-BC86-B75F0A58D003} = {C054D790-3899-4B62-97FA-0053C7437FA5} + {902E5295-C074-45B3-ADD2-7DCF289C24A8} = {C054D790-3899-4B62-97FA-0053C7437FA5} + {D2C11E75-BAC6-4619-930E-CCA94474365E} = {C054D790-3899-4B62-97FA-0053C7437FA5} + EndGlobalSection +EndGlobal diff --git a/NuGet.Config b/NuGet.Config new file mode 100644 index 0000000..95143bd --- /dev/null +++ b/NuGet.Config @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/README.md b/README.md index 8330e17..906734f 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # AspNetCache-AzureTableStorage -Use azure table storage for AspNet 5 Distributed Cache (save money on redis in azure) +Use azure table storage for AspNet 5 Distributed Cache. + +Azure Table Storage is a very cheap, super fast key value store, and its much cheaper than the redis cluster in azure. This is not a true replacement for redis, and redis should be used if people have money, but this is designed to get people a very cheap cache in azure. \ No newline at end of file diff --git a/global.json b/global.json new file mode 100644 index 0000000..0c71551 --- /dev/null +++ b/global.json @@ -0,0 +1,6 @@ +{ + "projects": [ "src", "test" ], + "sdk": { + "version": "1.0.0-beta8" + } +} diff --git a/src/AzureTableStorageCache/AzureTableStorageCache.xproj b/src/AzureTableStorageCache/AzureTableStorageCache.xproj new file mode 100644 index 0000000..affa3f0 --- /dev/null +++ b/src/AzureTableStorageCache/AzureTableStorageCache.xproj @@ -0,0 +1,20 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + + 4220710a-3ec2-4449-bc86-b75f0a58d003 + AzureTableStorageCache + ..\..\artifacts\obj\$(MSBuildProjectName) + ..\..\artifacts\bin\$(MSBuildProjectName)\ + + + + 2.0 + + + diff --git a/src/AzureTableStorageCache/AzureTableStorageCacheExtensions.cs b/src/AzureTableStorageCache/AzureTableStorageCacheExtensions.cs new file mode 100644 index 0000000..3431267 --- /dev/null +++ b/src/AzureTableStorageCache/AzureTableStorageCacheExtensions.cs @@ -0,0 +1,80 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.Framework.Caching.Distributed; +using Microsoft.Framework.DependencyInjection; +using AzureTableStorageCache; + +namespace Microsoft.AspNet.Builder +{ + public static class AzureTableStorageCacheExtensions + { + /// + /// Add azure table storage cache as an IDistributedCache to the service container + /// + /// + /// The connection string of your account (can be found in the preview portal) + /// the name of the table you wish to use. If the table doesn't exist it will be created. + /// the partition key you would like to use + /// + public static IServiceCollection AddAzureTableStorageCache(this IServiceCollection services, string connectionString, string tableName, string partitionKey) + { + if(string.IsNullOrWhiteSpace(connectionString)) + { + throw new ArgumentNullException("connectionString must not be null"); + } + if(services == null) + { + throw new ArgumentNullException(nameof(services)); + } + + + //services.AddSingleton + services.Add(ServiceDescriptor.Singleton(a=> new AzureTableStorageCacheHandler(connectionString, tableName, partitionKey))); + return services; + } + /// + /// Add azure table storage cache as an IDistributedCache to the service container + /// + /// + /// the name of your storage account + /// the key of your storage account + /// the name of the table you wish to use. If the table doesn't exist it will be created. + /// the partition key you would like to use + /// + public static IServiceCollection AddAzureTableStorageCache(this IServiceCollection services, string accountName, string accountKey, string tableName, string partitionKey) + { + if(string.IsNullOrWhiteSpace(accountName)) + { + throw new ArgumentNullException("accountName must not be null"); + } + if(string.IsNullOrWhiteSpace(accountKey)) + { + throw new ArgumentNullException("accountKey must not be null"); + } + if(services == null) + { + throw new ArgumentNullException(nameof(services)); + } + + //services.AddSingleton + services.Add(ServiceDescriptor.Singleton(a => + new AzureTableStorageCacheHandler(accountName, accountKey, tableName, partitionKey))); + return services; + } + private static void checkTableData(string tableName, string partitionkey) + { + if(string.IsNullOrWhiteSpace(tableName)) + { + throw new ArgumentNullException("tableName must not be null"); + } + if(string.IsNullOrWhiteSpace(partitionkey)) + { + throw new ArgumentNullException("partitionkey must not be null"); + } + } + + + } +} diff --git a/src/AzureTableStorageCache/AzureTableStorageCacheHandler.cs b/src/AzureTableStorageCache/AzureTableStorageCacheHandler.cs new file mode 100644 index 0000000..5e2cb4b --- /dev/null +++ b/src/AzureTableStorageCache/AzureTableStorageCacheHandler.cs @@ -0,0 +1,182 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using AzureTableStorageCache.Model; +using Microsoft.Framework.Caching.Distributed; +using Microsoft.Framework.Internal; +using Microsoft.WindowsAzure.Storage; +using Microsoft.WindowsAzure.Storage.Auth; +using Microsoft.WindowsAzure.Storage.Table; + +namespace AzureTableStorageCache +{ + // This project can output the Class library as a NuGet Package. + // To enable this option, right-click on the project and select the Properties menu item. In the Build tab select "Produce outputs on build". + public class AzureTableStorageCacheHandler : IDistributedCache + { + private readonly string partitionKey; + private readonly string accountKey; + private readonly string accountName; + private readonly string connectionString; + private CloudTableClient client; + private CloudTable azuretable; + private AzureTableStorageCacheHandler(string tableName, string partitionKey) + { + if(string.IsNullOrWhiteSpace(tableName)) + { + throw new ArgumentNullException("tableName cannot be null or empty"); + } + if(string.IsNullOrWhiteSpace(partitionKey)) + { + throw new ArgumentNullException("partitionKey cannot be null or empty"); + } + this.tableName = tableName; + this.partitionKey = partitionKey; + Connect(); + } + public AzureTableStorageCacheHandler(string accountName, string accountKey, string tableName, string partitionKey) + :this(tableName, partitionKey) + { + if(string.IsNullOrWhiteSpace(accountName)) + { + throw new ArgumentNullException("accountName cannot be null or empty"); + } + if(string.IsNullOrWhiteSpace(accountKey)) + { + throw new ArgumentNullException("accountKey cannot be null or empty"); + } + + this.accountName = accountName; + this.accountKey = accountKey; + + } + + private readonly string tableName; + + public AzureTableStorageCacheHandler(string connectionString, string tableName, string partitionKey) + :this(tableName, partitionKey) + { + if(string.IsNullOrWhiteSpace(connectionString)) + { + throw new ArgumentNullException("Connection string cannot be null or empty"); + } + + this.connectionString = connectionString; + } + + public void Connect() + { + ConnectAsync().Wait(); + } + + public async Task ConnectAsync() + { + if(client == null) + { + if(string.IsNullOrWhiteSpace(connectionString)) + { + var creds = new StorageCredentials(accountKey, accountKey); + client = new CloudStorageAccount(creds, true).CreateCloudTableClient(); + } + else + { + client = CloudStorageAccount.Parse(connectionString).CreateCloudTableClient(); + } + } + if(azuretable == null) + { + this.azuretable = client.GetTableReference(this.tableName); + await this.azuretable.CreateIfNotExistsAsync(); + } + } + + public byte[] Get(string key) + { + return GetAsync(key).Result; + } + + public async Task GetAsync(string key) + { + var op = TableOperation.Retrieve(partitionKey, key); + var result = await azuretable.ExecuteAsync(op); + return (result?.Result as CachedItem)?.Data; + } + + public void Refresh(string key) + { + this.RefreshAsync(key).Wait(); + } + + public async Task RefreshAsync(string key) + { + var op = TableOperation.Retrieve(partitionKey, key); + var result = await azuretable.ExecuteAsync(op); + var data = result?.Result as CachedItem; + if(data != null) + { + if(ShouldDelete(data)) + { + await RemoveAsync(key); + return; + } + + } + } + private bool ShouldDelete(CachedItem data) + { + var currentTime = DateTimeOffset.UtcNow; + if(data.AbsolutExperiation != null && data.AbsolutExperiation.Value <= currentTime) + { + return true; + } + if(data.SlidingExperiation.HasValue && data.LastAccessTime.HasValue && data.LastAccessTime <= currentTime.Add(data.SlidingExperiation.Value)) + { + return true; + } + + return false; + } + + public void Remove(string key) + { + this.RemoveAsync(key).Wait(); + } + + public Task RemoveAsync(string key) + { + var op = TableOperation.Delete(new CachedItem(partitionKey, key)); + return azuretable.ExecuteAsync(op); + } + + public void Set(string key, byte[] value, DistributedCacheEntryOptions options) + { + this.SetAsync(key, value, options).Wait(); + } + + public Task SetAsync(string key, byte[] value, DistributedCacheEntryOptions options) + { + DateTimeOffset? absoluteExpiration = null; + var currentTime = DateTimeOffset.UtcNow; + if(options.AbsoluteExpirationRelativeToNow.HasValue) + { + absoluteExpiration = currentTime.Add(options.AbsoluteExpirationRelativeToNow.Value); + } + else if(options.AbsoluteExpiration.HasValue) + { + if(options.AbsoluteExpiration.Value <= currentTime) + { + throw new ArgumentOutOfRangeException( + nameof(options.AbsoluteExpiration), + options.AbsoluteExpiration.Value, + "The absolute expiration value must be in the future."); + } + absoluteExpiration = options.AbsoluteExpiration; + + } + var item = new CachedItem(partitionKey, key, value) { LastAccessTime = currentTime }; + var op = TableOperation.InsertOrReplace(item); + return this.azuretable.ExecuteAsync(op); + } + } +} \ No newline at end of file diff --git a/src/AzureTableStorageCache/Model/CachedItem.cs b/src/AzureTableStorageCache/Model/CachedItem.cs new file mode 100644 index 0000000..37bb6f7 --- /dev/null +++ b/src/AzureTableStorageCache/Model/CachedItem.cs @@ -0,0 +1,23 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.WindowsAzure.Storage.Table; + +namespace AzureTableStorageCache.Model +{ + public class CachedItem : TableEntity + { + public CachedItem() { } + public CachedItem(string partitionKey, string rowKey, byte[] data = null) + :base(partitionKey, rowKey) + { + this.Data = data; + } + + public byte[] Data { get; set; } + public TimeSpan? SlidingExperiation { get; set; } + public DateTimeOffset? AbsolutExperiation { get; set; } + public DateTimeOffset? LastAccessTime { get; set; } + } +} diff --git a/src/AzureTableStorageCache/Properties/AssemblyInfo.cs b/src/AzureTableStorageCache/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..095ce7e --- /dev/null +++ b/src/AzureTableStorageCache/Properties/AssemblyInfo.cs @@ -0,0 +1,23 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("AzureTableStorageCache")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("AzureTableStorageCache")] +[assembly: AssemblyCopyright("Copyright © 2015")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("4220710a-3ec2-4449-bc86-b75f0a58d003")] diff --git a/src/AzureTableStorageCache/project.json b/src/AzureTableStorageCache/project.json new file mode 100644 index 0000000..d879f6c --- /dev/null +++ b/src/AzureTableStorageCache/project.json @@ -0,0 +1,25 @@ +{ + "version": "1.0.0-*", + "description": "AzureTableStorageCache Class Library", + "authors": [ "parne" ], + "tags": [ "" ], + "projectUrl": "", + "licenseUrl": "", + "dependencies": { + "WindowsAzure.Storage": "6.1.1-preview", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta8" + }, + "frameworks": { + "net45": { }, + "dnxcore50": { + "dependencies": { + "Microsoft.CSharp": "4.0.1-beta-23409", + "System.Collections": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409", + "System.Threading": "4.0.11-beta-23409" + } + } + } +} \ No newline at end of file diff --git a/src/AzureTableStorageCache/project.lock.json b/src/AzureTableStorageCache/project.lock.json new file mode 100644 index 0000000..facdbc2 --- /dev/null +++ b/src/AzureTableStorageCache/project.lock.json @@ -0,0 +1,6801 @@ +{ + "locked": false, + "version": 2, + "targets": { + ".NETFramework,Version=v4.5": { + "Microsoft.Azure.KeyVault.Core/1.0.0": { + "type": "package", + "compile": { + "lib/net40/Microsoft.Azure.KeyVault.Core.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.Azure.KeyVault.Core.dll": {} + } + }, + "Microsoft.Data.Edm/5.6.4": { + "type": "package", + "compile": { + "lib/net40/Microsoft.Data.Edm.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.Data.Edm.dll": {} + }, + "resource": { + "lib/net40/de/Microsoft.Data.Edm.resources.dll": { + "locale": "de" + }, + "lib/net40/es/Microsoft.Data.Edm.resources.dll": { + "locale": "es" + }, + "lib/net40/fr/Microsoft.Data.Edm.resources.dll": { + "locale": "fr" + }, + "lib/net40/it/Microsoft.Data.Edm.resources.dll": { + "locale": "it" + }, + "lib/net40/ja/Microsoft.Data.Edm.resources.dll": { + "locale": "ja" + }, + "lib/net40/ko/Microsoft.Data.Edm.resources.dll": { + "locale": "ko" + }, + "lib/net40/ru/Microsoft.Data.Edm.resources.dll": { + "locale": "ru" + }, + "lib/net40/zh-Hans/Microsoft.Data.Edm.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net40/zh-Hant/Microsoft.Data.Edm.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.OData/5.6.4": { + "type": "package", + "dependencies": { + "Microsoft.Data.Edm": "[5.6.4]", + "System.Spatial": "[5.6.4]" + }, + "compile": { + "lib/net40/Microsoft.Data.OData.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.Data.OData.dll": {} + }, + "resource": { + "lib/net40/de/Microsoft.Data.OData.resources.dll": { + "locale": "de" + }, + "lib/net40/es/Microsoft.Data.OData.resources.dll": { + "locale": "es" + }, + "lib/net40/fr/Microsoft.Data.OData.resources.dll": { + "locale": "fr" + }, + "lib/net40/it/Microsoft.Data.OData.resources.dll": { + "locale": "it" + }, + "lib/net40/ja/Microsoft.Data.OData.resources.dll": { + "locale": "ja" + }, + "lib/net40/ko/Microsoft.Data.OData.resources.dll": { + "locale": "ko" + }, + "lib/net40/ru/Microsoft.Data.OData.resources.dll": { + "locale": "ru" + }, + "lib/net40/zh-Hans/Microsoft.Data.OData.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net40/zh-Hant/Microsoft.Data.OData.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.Services.Client/5.6.4": { + "type": "package", + "dependencies": { + "Microsoft.Data.OData": "[5.6.4]" + }, + "compile": { + "lib/net40/Microsoft.Data.Services.Client.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.Data.Services.Client.dll": {} + }, + "resource": { + "lib/net40/de/Microsoft.Data.Services.Client.resources.dll": { + "locale": "de" + }, + "lib/net40/es/Microsoft.Data.Services.Client.resources.dll": { + "locale": "es" + }, + "lib/net40/fr/Microsoft.Data.Services.Client.resources.dll": { + "locale": "fr" + }, + "lib/net40/it/Microsoft.Data.Services.Client.resources.dll": { + "locale": "it" + }, + "lib/net40/ja/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ja" + }, + "lib/net40/ko/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ko" + }, + "lib/net40/ru/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ru" + }, + "lib/net40/zh-Hans/Microsoft.Data.Services.Client.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net40/zh-Hant/Microsoft.Data.Services.Client.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Primitives/1.0.0-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Primitives.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Primitives.dll": {} + } + }, + "Newtonsoft.Json/6.0.8": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Spatial/5.6.4": { + "type": "package", + "compile": { + "lib/net40/System.Spatial.dll": {} + }, + "runtime": { + "lib/net40/System.Spatial.dll": {} + }, + "resource": { + "lib/net40/de/System.Spatial.resources.dll": { + "locale": "de" + }, + "lib/net40/es/System.Spatial.resources.dll": { + "locale": "es" + }, + "lib/net40/fr/System.Spatial.resources.dll": { + "locale": "fr" + }, + "lib/net40/it/System.Spatial.resources.dll": { + "locale": "it" + }, + "lib/net40/ja/System.Spatial.resources.dll": { + "locale": "ja" + }, + "lib/net40/ko/System.Spatial.resources.dll": { + "locale": "ko" + }, + "lib/net40/ru/System.Spatial.resources.dll": { + "locale": "ru" + }, + "lib/net40/zh-Hans/System.Spatial.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net40/zh-Hant/System.Spatial.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "WindowsAzure.Storage/6.1.1-preview": { + "type": "package", + "dependencies": { + "Microsoft.Azure.KeyVault.Core": "1.0.0", + "Microsoft.Data.OData": "5.6.4", + "Microsoft.Data.Services.Client": "5.6.4", + "Newtonsoft.Json": "6.0.8" + }, + "frameworkAssemblies": [ + "System.Data", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/net40/Microsoft.WindowsAzure.Storage.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.WindowsAzure.Storage.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "Microsoft.CSharp/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Dynamic.Runtime": "4.0.0", + "System.Globalization": "4.0.10", + "System.Linq": "4.0.0", + "System.Linq.Expressions": "4.0.0", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Data.Edm/5.6.4": { + "type": "package", + "compile": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll": {} + }, + "runtime": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll": {} + }, + "resource": { + "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.Edm.resources.dll": { + "locale": "de" + }, + "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.Edm.resources.dll": { + "locale": "es" + }, + "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.Edm.resources.dll": { + "locale": "fr" + }, + "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.Edm.resources.dll": { + "locale": "it" + }, + "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.Edm.resources.dll": { + "locale": "ja" + }, + "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.Edm.resources.dll": { + "locale": "ko" + }, + "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.Edm.resources.dll": { + "locale": "ru" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.Edm.resources.dll": { + "locale": "zh-Hans" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.Edm.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.OData/5.6.4": { + "type": "package", + "dependencies": { + "Microsoft.Data.Edm": "[5.6.4]", + "System.Spatial": "[5.6.4]" + }, + "compile": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.OData.dll": {} + }, + "runtime": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.OData.dll": {} + }, + "resource": { + "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.OData.resources.dll": { + "locale": "de" + }, + "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.OData.resources.dll": { + "locale": "es" + }, + "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.OData.resources.dll": { + "locale": "fr" + }, + "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.OData.resources.dll": { + "locale": "it" + }, + "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.OData.resources.dll": { + "locale": "ja" + }, + "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.OData.resources.dll": { + "locale": "ko" + }, + "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.OData.resources.dll": { + "locale": "ru" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.OData.resources.dll": { + "locale": "zh-Hans" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.OData.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.Services.Client/5.6.4": { + "type": "package", + "dependencies": { + "Microsoft.Data.OData": "[5.6.4]" + }, + "compile": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Services.Client.dll": {} + }, + "runtime": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Services.Client.dll": {} + }, + "resource": { + "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.Services.Client.resources.dll": { + "locale": "de" + }, + "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.Services.Client.resources.dll": { + "locale": "es" + }, + "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.Services.Client.resources.dll": { + "locale": "fr" + }, + "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.Services.Client.resources.dll": { + "locale": "it" + }, + "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ja" + }, + "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ko" + }, + "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ru" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.Services.Client.resources.dll": { + "locale": "zh-Hans" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.Services.Client.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Threading": "4.0.11-beta-23409", + "System.Threading.Tasks": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.Threading": "4.0.11-beta-23409", + "System.Threading.Tasks": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-beta-23409", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Linq.Expressions": "4.0.11-beta-23409", + "System.Reflection": "4.1.0-beta-23225", + "System.Resources.ResourceManager": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Primitives/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Primitives.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Primitives.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Newtonsoft.Json/6.0.8": { + "type": "package", + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "System.Collections/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Globalization.Extensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.21-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Linq": "4.0.0", + "System.Linq.Expressions": "4.0.10", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Emit": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.IO": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.InteropServices": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.Linq": "4.0.0", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Emit": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.Compression": "4.0.0", + "System.Net.Primitives": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23225", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.dll": {} + } + }, + "System.Net.Primitives/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Private.Networking": "4.0.1-beta-23225" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.ObjectModel/4.0.10": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Serialization.Primitives": "4.0.10-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Xml.ReaderWriter": "4.0.10-beta-23109", + "System.Xml.XmlSerializer": "4.0.10-beta-23109" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Private.Networking/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Collections": "4.0.10", + "System.Collections.Concurrent": "4.0.0", + "System.Collections.NonGeneric": "4.0.0", + "System.ComponentModel.EventBasedAsync": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.1-beta-23409": { + "type": "package", + "compile": { + "ref/dnxcore50/_._": {} + } + }, + "System.Reflection/4.1.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.21-beta-23409": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1-beta-23409" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.21-beta-23225": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.0.10-beta-23109": { + "type": "package", + "dependencies": { + "System.Private.DataContractSerialization": "4.0.0-beta-23109", + "System.Runtime.Serialization.Primitives": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Handles": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Text.Encoding": "4.0.0", + "System.Text.Encoding.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Csp/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23225", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23225", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Csp.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Csp.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Globalization.Calendars": "4.0.0", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Runtime.Numerics": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23225", + "System.Security.Cryptography.Csp": "4.0.0-beta-23225", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23225", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Spatial/5.6.4": { + "type": "package", + "compile": { + "lib/portable-net45+wp8+win8+wpa/System.Spatial.dll": {} + }, + "runtime": { + "lib/portable-net45+wp8+win8+wpa/System.Spatial.dll": {} + }, + "resource": { + "lib/portable-net45+wp8+win8+wpa/de/System.Spatial.resources.dll": { + "locale": "de" + }, + "lib/portable-net45+wp8+win8+wpa/es/System.Spatial.resources.dll": { + "locale": "es" + }, + "lib/portable-net45+wp8+win8+wpa/fr/System.Spatial.resources.dll": { + "locale": "fr" + }, + "lib/portable-net45+wp8+win8+wpa/it/System.Spatial.resources.dll": { + "locale": "it" + }, + "lib/portable-net45+wp8+win8+wpa/ja/System.Spatial.resources.dll": { + "locale": "ja" + }, + "lib/portable-net45+wp8+win8+wpa/ko/System.Spatial.resources.dll": { + "locale": "ko" + }, + "lib/portable-net45+wp8+win8+wpa/ru/System.Spatial.resources.dll": { + "locale": "ru" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hans/System.Spatial.resources.dll": { + "locale": "zh-Hans" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hant/System.Spatial.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Text.Encoding/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Text.Encoding": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.InteropServices": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Text.RegularExpressions": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tools": "4.0.0", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.Reflection": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10", + "System.Xml.ReaderWriter": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Xml.ReaderWriter": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + } + }, + "WindowsAzure.Storage/6.1.1-preview": { + "type": "package", + "dependencies": { + "Microsoft.Data.OData": "5.6.4", + "Microsoft.Data.Services.Client": "5.6.4", + "Newtonsoft.Json": "6.0.8", + "System.Collections": "4.0.11-beta-23225", + "System.Collections.Concurrent": "4.0.11-beta-23225", + "System.Collections.Specialized": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.11-beta-23225", + "System.Diagnostics.Tools": "4.0.1-beta-23225", + "System.Diagnostics.TraceSource": "4.0.0-beta-23225", + "System.Diagnostics.Tracing": "4.0.21-beta-23225", + "System.Dynamic.Runtime": "4.0.11-beta-23225", + "System.Globalization": "4.0.11-beta-23225", + "System.IO": "4.0.11-beta-23225", + "System.IO.FileSystem": "4.0.1-beta-23225", + "System.IO.FileSystem.Primitives": "4.0.1-beta-23225", + "System.Linq": "4.0.1-beta-23225", + "System.Linq.Expressions": "4.0.11-beta-23225", + "System.Linq.Queryable": "4.0.0-beta-23109", + "System.Net.Http": "4.0.1-beta-23225", + "System.Net.Primitives": "4.0.11-beta-23225", + "System.Reflection": "4.1.0-beta-23225", + "System.Reflection.Extensions": "4.0.1-beta-23225", + "System.Reflection.TypeExtensions": "4.0.1-beta-23225", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.11-beta-23225", + "System.Runtime.InteropServices": "4.0.21-beta-23225", + "System.Runtime.Serialization.Primitives": "4.0.0-beta-23109", + "System.Runtime.Serialization.Xml": "4.0.10-beta-23109", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23225", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23225", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Spatial": "5.6.4", + "System.Text.Encoding": "4.0.11-beta-23225", + "System.Text.Encoding.Extensions": "4.0.11-beta-23225", + "System.Text.RegularExpressions": "4.0.11-beta-23225", + "System.Threading": "4.0.11-beta-23225", + "System.Threading.Tasks": "4.0.11-beta-23225", + "System.Threading.Thread": "4.0.0-beta-23225", + "System.Threading.ThreadPool": "4.0.10-beta-23225", + "System.Threading.Timer": "4.0.1-beta-23225", + "System.Xml.ReaderWriter": "4.0.11-beta-23225", + "System.Xml.XDocument": "4.0.11-beta-23225", + "System.Xml.XmlSerializer": "4.0.0-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.WindowsAzure.Storage.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.WindowsAzure.Storage.dll": {} + } + } + }, + ".NETFramework,Version=v4.5/win7-x86": { + "Microsoft.Azure.KeyVault.Core/1.0.0": { + "type": "package", + "compile": { + "lib/net40/Microsoft.Azure.KeyVault.Core.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.Azure.KeyVault.Core.dll": {} + } + }, + "Microsoft.Data.Edm/5.6.4": { + "type": "package", + "compile": { + "lib/net40/Microsoft.Data.Edm.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.Data.Edm.dll": {} + }, + "resource": { + "lib/net40/de/Microsoft.Data.Edm.resources.dll": { + "locale": "de" + }, + "lib/net40/es/Microsoft.Data.Edm.resources.dll": { + "locale": "es" + }, + "lib/net40/fr/Microsoft.Data.Edm.resources.dll": { + "locale": "fr" + }, + "lib/net40/it/Microsoft.Data.Edm.resources.dll": { + "locale": "it" + }, + "lib/net40/ja/Microsoft.Data.Edm.resources.dll": { + "locale": "ja" + }, + "lib/net40/ko/Microsoft.Data.Edm.resources.dll": { + "locale": "ko" + }, + "lib/net40/ru/Microsoft.Data.Edm.resources.dll": { + "locale": "ru" + }, + "lib/net40/zh-Hans/Microsoft.Data.Edm.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net40/zh-Hant/Microsoft.Data.Edm.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.OData/5.6.4": { + "type": "package", + "dependencies": { + "Microsoft.Data.Edm": "[5.6.4]", + "System.Spatial": "[5.6.4]" + }, + "compile": { + "lib/net40/Microsoft.Data.OData.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.Data.OData.dll": {} + }, + "resource": { + "lib/net40/de/Microsoft.Data.OData.resources.dll": { + "locale": "de" + }, + "lib/net40/es/Microsoft.Data.OData.resources.dll": { + "locale": "es" + }, + "lib/net40/fr/Microsoft.Data.OData.resources.dll": { + "locale": "fr" + }, + "lib/net40/it/Microsoft.Data.OData.resources.dll": { + "locale": "it" + }, + "lib/net40/ja/Microsoft.Data.OData.resources.dll": { + "locale": "ja" + }, + "lib/net40/ko/Microsoft.Data.OData.resources.dll": { + "locale": "ko" + }, + "lib/net40/ru/Microsoft.Data.OData.resources.dll": { + "locale": "ru" + }, + "lib/net40/zh-Hans/Microsoft.Data.OData.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net40/zh-Hant/Microsoft.Data.OData.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.Services.Client/5.6.4": { + "type": "package", + "dependencies": { + "Microsoft.Data.OData": "[5.6.4]" + }, + "compile": { + "lib/net40/Microsoft.Data.Services.Client.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.Data.Services.Client.dll": {} + }, + "resource": { + "lib/net40/de/Microsoft.Data.Services.Client.resources.dll": { + "locale": "de" + }, + "lib/net40/es/Microsoft.Data.Services.Client.resources.dll": { + "locale": "es" + }, + "lib/net40/fr/Microsoft.Data.Services.Client.resources.dll": { + "locale": "fr" + }, + "lib/net40/it/Microsoft.Data.Services.Client.resources.dll": { + "locale": "it" + }, + "lib/net40/ja/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ja" + }, + "lib/net40/ko/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ko" + }, + "lib/net40/ru/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ru" + }, + "lib/net40/zh-Hans/Microsoft.Data.Services.Client.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net40/zh-Hant/Microsoft.Data.Services.Client.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Primitives/1.0.0-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Primitives.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Primitives.dll": {} + } + }, + "Newtonsoft.Json/6.0.8": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Spatial/5.6.4": { + "type": "package", + "compile": { + "lib/net40/System.Spatial.dll": {} + }, + "runtime": { + "lib/net40/System.Spatial.dll": {} + }, + "resource": { + "lib/net40/de/System.Spatial.resources.dll": { + "locale": "de" + }, + "lib/net40/es/System.Spatial.resources.dll": { + "locale": "es" + }, + "lib/net40/fr/System.Spatial.resources.dll": { + "locale": "fr" + }, + "lib/net40/it/System.Spatial.resources.dll": { + "locale": "it" + }, + "lib/net40/ja/System.Spatial.resources.dll": { + "locale": "ja" + }, + "lib/net40/ko/System.Spatial.resources.dll": { + "locale": "ko" + }, + "lib/net40/ru/System.Spatial.resources.dll": { + "locale": "ru" + }, + "lib/net40/zh-Hans/System.Spatial.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net40/zh-Hant/System.Spatial.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "WindowsAzure.Storage/6.1.1-preview": { + "type": "package", + "dependencies": { + "Microsoft.Azure.KeyVault.Core": "1.0.0", + "Microsoft.Data.OData": "5.6.4", + "Microsoft.Data.Services.Client": "5.6.4", + "Newtonsoft.Json": "6.0.8" + }, + "frameworkAssemblies": [ + "System.Data", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/net40/Microsoft.WindowsAzure.Storage.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.WindowsAzure.Storage.dll": {} + } + } + }, + ".NETFramework,Version=v4.5/win7-x64": { + "Microsoft.Azure.KeyVault.Core/1.0.0": { + "type": "package", + "compile": { + "lib/net40/Microsoft.Azure.KeyVault.Core.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.Azure.KeyVault.Core.dll": {} + } + }, + "Microsoft.Data.Edm/5.6.4": { + "type": "package", + "compile": { + "lib/net40/Microsoft.Data.Edm.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.Data.Edm.dll": {} + }, + "resource": { + "lib/net40/de/Microsoft.Data.Edm.resources.dll": { + "locale": "de" + }, + "lib/net40/es/Microsoft.Data.Edm.resources.dll": { + "locale": "es" + }, + "lib/net40/fr/Microsoft.Data.Edm.resources.dll": { + "locale": "fr" + }, + "lib/net40/it/Microsoft.Data.Edm.resources.dll": { + "locale": "it" + }, + "lib/net40/ja/Microsoft.Data.Edm.resources.dll": { + "locale": "ja" + }, + "lib/net40/ko/Microsoft.Data.Edm.resources.dll": { + "locale": "ko" + }, + "lib/net40/ru/Microsoft.Data.Edm.resources.dll": { + "locale": "ru" + }, + "lib/net40/zh-Hans/Microsoft.Data.Edm.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net40/zh-Hant/Microsoft.Data.Edm.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.OData/5.6.4": { + "type": "package", + "dependencies": { + "Microsoft.Data.Edm": "[5.6.4]", + "System.Spatial": "[5.6.4]" + }, + "compile": { + "lib/net40/Microsoft.Data.OData.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.Data.OData.dll": {} + }, + "resource": { + "lib/net40/de/Microsoft.Data.OData.resources.dll": { + "locale": "de" + }, + "lib/net40/es/Microsoft.Data.OData.resources.dll": { + "locale": "es" + }, + "lib/net40/fr/Microsoft.Data.OData.resources.dll": { + "locale": "fr" + }, + "lib/net40/it/Microsoft.Data.OData.resources.dll": { + "locale": "it" + }, + "lib/net40/ja/Microsoft.Data.OData.resources.dll": { + "locale": "ja" + }, + "lib/net40/ko/Microsoft.Data.OData.resources.dll": { + "locale": "ko" + }, + "lib/net40/ru/Microsoft.Data.OData.resources.dll": { + "locale": "ru" + }, + "lib/net40/zh-Hans/Microsoft.Data.OData.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net40/zh-Hant/Microsoft.Data.OData.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.Services.Client/5.6.4": { + "type": "package", + "dependencies": { + "Microsoft.Data.OData": "[5.6.4]" + }, + "compile": { + "lib/net40/Microsoft.Data.Services.Client.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.Data.Services.Client.dll": {} + }, + "resource": { + "lib/net40/de/Microsoft.Data.Services.Client.resources.dll": { + "locale": "de" + }, + "lib/net40/es/Microsoft.Data.Services.Client.resources.dll": { + "locale": "es" + }, + "lib/net40/fr/Microsoft.Data.Services.Client.resources.dll": { + "locale": "fr" + }, + "lib/net40/it/Microsoft.Data.Services.Client.resources.dll": { + "locale": "it" + }, + "lib/net40/ja/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ja" + }, + "lib/net40/ko/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ko" + }, + "lib/net40/ru/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ru" + }, + "lib/net40/zh-Hans/Microsoft.Data.Services.Client.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net40/zh-Hant/Microsoft.Data.Services.Client.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Primitives/1.0.0-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Primitives.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Primitives.dll": {} + } + }, + "Newtonsoft.Json/6.0.8": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Spatial/5.6.4": { + "type": "package", + "compile": { + "lib/net40/System.Spatial.dll": {} + }, + "runtime": { + "lib/net40/System.Spatial.dll": {} + }, + "resource": { + "lib/net40/de/System.Spatial.resources.dll": { + "locale": "de" + }, + "lib/net40/es/System.Spatial.resources.dll": { + "locale": "es" + }, + "lib/net40/fr/System.Spatial.resources.dll": { + "locale": "fr" + }, + "lib/net40/it/System.Spatial.resources.dll": { + "locale": "it" + }, + "lib/net40/ja/System.Spatial.resources.dll": { + "locale": "ja" + }, + "lib/net40/ko/System.Spatial.resources.dll": { + "locale": "ko" + }, + "lib/net40/ru/System.Spatial.resources.dll": { + "locale": "ru" + }, + "lib/net40/zh-Hans/System.Spatial.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net40/zh-Hant/System.Spatial.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "WindowsAzure.Storage/6.1.1-preview": { + "type": "package", + "dependencies": { + "Microsoft.Azure.KeyVault.Core": "1.0.0", + "Microsoft.Data.OData": "5.6.4", + "Microsoft.Data.Services.Client": "5.6.4", + "Newtonsoft.Json": "6.0.8" + }, + "frameworkAssemblies": [ + "System.Data", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/net40/Microsoft.WindowsAzure.Storage.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.WindowsAzure.Storage.dll": {} + } + } + }, + "DNXCore,Version=v5.0/win7-x86": { + "Microsoft.CSharp/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Dynamic.Runtime": "4.0.0", + "System.Globalization": "4.0.10", + "System.Linq": "4.0.0", + "System.Linq.Expressions": "4.0.0", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Data.Edm/5.6.4": { + "type": "package", + "compile": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll": {} + }, + "runtime": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll": {} + }, + "resource": { + "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.Edm.resources.dll": { + "locale": "de" + }, + "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.Edm.resources.dll": { + "locale": "es" + }, + "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.Edm.resources.dll": { + "locale": "fr" + }, + "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.Edm.resources.dll": { + "locale": "it" + }, + "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.Edm.resources.dll": { + "locale": "ja" + }, + "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.Edm.resources.dll": { + "locale": "ko" + }, + "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.Edm.resources.dll": { + "locale": "ru" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.Edm.resources.dll": { + "locale": "zh-Hans" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.Edm.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.OData/5.6.4": { + "type": "package", + "dependencies": { + "Microsoft.Data.Edm": "[5.6.4]", + "System.Spatial": "[5.6.4]" + }, + "compile": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.OData.dll": {} + }, + "runtime": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.OData.dll": {} + }, + "resource": { + "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.OData.resources.dll": { + "locale": "de" + }, + "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.OData.resources.dll": { + "locale": "es" + }, + "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.OData.resources.dll": { + "locale": "fr" + }, + "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.OData.resources.dll": { + "locale": "it" + }, + "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.OData.resources.dll": { + "locale": "ja" + }, + "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.OData.resources.dll": { + "locale": "ko" + }, + "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.OData.resources.dll": { + "locale": "ru" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.OData.resources.dll": { + "locale": "zh-Hans" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.OData.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.Services.Client/5.6.4": { + "type": "package", + "dependencies": { + "Microsoft.Data.OData": "[5.6.4]" + }, + "compile": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Services.Client.dll": {} + }, + "runtime": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Services.Client.dll": {} + }, + "resource": { + "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.Services.Client.resources.dll": { + "locale": "de" + }, + "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.Services.Client.resources.dll": { + "locale": "es" + }, + "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.Services.Client.resources.dll": { + "locale": "fr" + }, + "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.Services.Client.resources.dll": { + "locale": "it" + }, + "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ja" + }, + "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ko" + }, + "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ru" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.Services.Client.resources.dll": { + "locale": "zh-Hans" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.Services.Client.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Threading": "4.0.11-beta-23409", + "System.Threading.Tasks": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.Threading": "4.0.11-beta-23409", + "System.Threading.Tasks": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-beta-23409", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Linq.Expressions": "4.0.11-beta-23409", + "System.Reflection": "4.1.0-beta-23225", + "System.Resources.ResourceManager": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Primitives/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Primitives.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Primitives.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Newtonsoft.Json/6.0.8": { + "type": "package", + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "runtime.win7.System.Diagnostics.Debug/4.0.11-beta-23409": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.win7.System.Private.Uri/4.0.1-beta-23409": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "runtime.win7.System.Threading/4.0.11-beta-23409": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Collections/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Globalization.Extensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.21-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Linq": "4.0.0", + "System.Linq.Expressions": "4.0.10", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Emit": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.IO": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.InteropServices": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.clrcompression-x86/4.0.0": { + "type": "package", + "native": { + "runtimes/win7-x86/native/clrcompression.dll": {} + } + }, + "System.IO.FileSystem/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.Linq": "4.0.0", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Emit": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.Compression": "4.0.0", + "System.Net.Primitives": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23225", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.dll": {} + } + }, + "System.Net.Primitives/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Private.Networking": "4.0.1-beta-23225" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.ObjectModel/4.0.10": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Serialization.Primitives": "4.0.10-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Xml.ReaderWriter": "4.0.10-beta-23109", + "System.Xml.XmlSerializer": "4.0.10-beta-23109" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Private.Networking/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Collections": "4.0.10", + "System.Collections.Concurrent": "4.0.0", + "System.Collections.NonGeneric": "4.0.0", + "System.ComponentModel.EventBasedAsync": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.1-beta-23409": { + "type": "package", + "compile": { + "ref/dnxcore50/_._": {} + } + }, + "System.Reflection/4.1.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.21-beta-23409": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1-beta-23409" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.21-beta-23225": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.0.10-beta-23109": { + "type": "package", + "dependencies": { + "System.Private.DataContractSerialization": "4.0.0-beta-23109", + "System.Runtime.Serialization.Primitives": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Handles": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Text.Encoding": "4.0.0", + "System.Text.Encoding.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Csp/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23225", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23225", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Csp.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Csp.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Globalization.Calendars": "4.0.0", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Runtime.Numerics": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23225", + "System.Security.Cryptography.Csp": "4.0.0-beta-23225", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23225", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Spatial/5.6.4": { + "type": "package", + "compile": { + "lib/portable-net45+wp8+win8+wpa/System.Spatial.dll": {} + }, + "runtime": { + "lib/portable-net45+wp8+win8+wpa/System.Spatial.dll": {} + }, + "resource": { + "lib/portable-net45+wp8+win8+wpa/de/System.Spatial.resources.dll": { + "locale": "de" + }, + "lib/portable-net45+wp8+win8+wpa/es/System.Spatial.resources.dll": { + "locale": "es" + }, + "lib/portable-net45+wp8+win8+wpa/fr/System.Spatial.resources.dll": { + "locale": "fr" + }, + "lib/portable-net45+wp8+win8+wpa/it/System.Spatial.resources.dll": { + "locale": "it" + }, + "lib/portable-net45+wp8+win8+wpa/ja/System.Spatial.resources.dll": { + "locale": "ja" + }, + "lib/portable-net45+wp8+win8+wpa/ko/System.Spatial.resources.dll": { + "locale": "ko" + }, + "lib/portable-net45+wp8+win8+wpa/ru/System.Spatial.resources.dll": { + "locale": "ru" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hans/System.Spatial.resources.dll": { + "locale": "zh-Hans" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hant/System.Spatial.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Text.Encoding/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Text.Encoding": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.InteropServices": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Text.RegularExpressions": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tools": "4.0.0", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.Reflection": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10", + "System.Xml.ReaderWriter": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Xml.ReaderWriter": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + } + }, + "WindowsAzure.Storage/6.1.1-preview": { + "type": "package", + "dependencies": { + "Microsoft.Data.OData": "5.6.4", + "Microsoft.Data.Services.Client": "5.6.4", + "Newtonsoft.Json": "6.0.8", + "System.Collections": "4.0.11-beta-23225", + "System.Collections.Concurrent": "4.0.11-beta-23225", + "System.Collections.Specialized": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.11-beta-23225", + "System.Diagnostics.Tools": "4.0.1-beta-23225", + "System.Diagnostics.TraceSource": "4.0.0-beta-23225", + "System.Diagnostics.Tracing": "4.0.21-beta-23225", + "System.Dynamic.Runtime": "4.0.11-beta-23225", + "System.Globalization": "4.0.11-beta-23225", + "System.IO": "4.0.11-beta-23225", + "System.IO.FileSystem": "4.0.1-beta-23225", + "System.IO.FileSystem.Primitives": "4.0.1-beta-23225", + "System.Linq": "4.0.1-beta-23225", + "System.Linq.Expressions": "4.0.11-beta-23225", + "System.Linq.Queryable": "4.0.0-beta-23109", + "System.Net.Http": "4.0.1-beta-23225", + "System.Net.Primitives": "4.0.11-beta-23225", + "System.Reflection": "4.1.0-beta-23225", + "System.Reflection.Extensions": "4.0.1-beta-23225", + "System.Reflection.TypeExtensions": "4.0.1-beta-23225", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.11-beta-23225", + "System.Runtime.InteropServices": "4.0.21-beta-23225", + "System.Runtime.Serialization.Primitives": "4.0.0-beta-23109", + "System.Runtime.Serialization.Xml": "4.0.10-beta-23109", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23225", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23225", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Spatial": "5.6.4", + "System.Text.Encoding": "4.0.11-beta-23225", + "System.Text.Encoding.Extensions": "4.0.11-beta-23225", + "System.Text.RegularExpressions": "4.0.11-beta-23225", + "System.Threading": "4.0.11-beta-23225", + "System.Threading.Tasks": "4.0.11-beta-23225", + "System.Threading.Thread": "4.0.0-beta-23225", + "System.Threading.ThreadPool": "4.0.10-beta-23225", + "System.Threading.Timer": "4.0.1-beta-23225", + "System.Xml.ReaderWriter": "4.0.11-beta-23225", + "System.Xml.XDocument": "4.0.11-beta-23225", + "System.Xml.XmlSerializer": "4.0.0-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.WindowsAzure.Storage.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.WindowsAzure.Storage.dll": {} + } + } + }, + "DNXCore,Version=v5.0/win7-x64": { + "Microsoft.CSharp/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Dynamic.Runtime": "4.0.0", + "System.Globalization": "4.0.10", + "System.Linq": "4.0.0", + "System.Linq.Expressions": "4.0.0", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Data.Edm/5.6.4": { + "type": "package", + "compile": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll": {} + }, + "runtime": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll": {} + }, + "resource": { + "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.Edm.resources.dll": { + "locale": "de" + }, + "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.Edm.resources.dll": { + "locale": "es" + }, + "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.Edm.resources.dll": { + "locale": "fr" + }, + "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.Edm.resources.dll": { + "locale": "it" + }, + "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.Edm.resources.dll": { + "locale": "ja" + }, + "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.Edm.resources.dll": { + "locale": "ko" + }, + "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.Edm.resources.dll": { + "locale": "ru" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.Edm.resources.dll": { + "locale": "zh-Hans" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.Edm.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.OData/5.6.4": { + "type": "package", + "dependencies": { + "Microsoft.Data.Edm": "[5.6.4]", + "System.Spatial": "[5.6.4]" + }, + "compile": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.OData.dll": {} + }, + "runtime": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.OData.dll": {} + }, + "resource": { + "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.OData.resources.dll": { + "locale": "de" + }, + "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.OData.resources.dll": { + "locale": "es" + }, + "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.OData.resources.dll": { + "locale": "fr" + }, + "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.OData.resources.dll": { + "locale": "it" + }, + "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.OData.resources.dll": { + "locale": "ja" + }, + "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.OData.resources.dll": { + "locale": "ko" + }, + "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.OData.resources.dll": { + "locale": "ru" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.OData.resources.dll": { + "locale": "zh-Hans" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.OData.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.Services.Client/5.6.4": { + "type": "package", + "dependencies": { + "Microsoft.Data.OData": "[5.6.4]" + }, + "compile": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Services.Client.dll": {} + }, + "runtime": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Services.Client.dll": {} + }, + "resource": { + "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.Services.Client.resources.dll": { + "locale": "de" + }, + "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.Services.Client.resources.dll": { + "locale": "es" + }, + "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.Services.Client.resources.dll": { + "locale": "fr" + }, + "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.Services.Client.resources.dll": { + "locale": "it" + }, + "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ja" + }, + "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ko" + }, + "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ru" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.Services.Client.resources.dll": { + "locale": "zh-Hans" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.Services.Client.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Threading": "4.0.11-beta-23409", + "System.Threading.Tasks": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.Threading": "4.0.11-beta-23409", + "System.Threading.Tasks": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-beta-23409", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Linq.Expressions": "4.0.11-beta-23409", + "System.Reflection": "4.1.0-beta-23225", + "System.Resources.ResourceManager": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Primitives/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Primitives.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Primitives.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Newtonsoft.Json/6.0.8": { + "type": "package", + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "runtime.win7.System.Diagnostics.Debug/4.0.11-beta-23409": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.win7.System.Private.Uri/4.0.1-beta-23409": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "runtime.win7.System.Threading/4.0.11-beta-23409": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Collections/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Globalization.Extensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.21-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Linq": "4.0.0", + "System.Linq.Expressions": "4.0.10", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Emit": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.IO": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.InteropServices": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.clrcompression-x64/4.0.0": { + "type": "package", + "native": { + "runtimes/win7-x64/native/clrcompression.dll": {} + } + }, + "System.IO.FileSystem/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.Linq": "4.0.0", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Emit": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.Compression": "4.0.0", + "System.Net.Primitives": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23225", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.dll": {} + } + }, + "System.Net.Primitives/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Private.Networking": "4.0.1-beta-23225" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.ObjectModel/4.0.10": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Serialization.Primitives": "4.0.10-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Xml.ReaderWriter": "4.0.10-beta-23109", + "System.Xml.XmlSerializer": "4.0.10-beta-23109" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Private.Networking/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Collections": "4.0.10", + "System.Collections.Concurrent": "4.0.0", + "System.Collections.NonGeneric": "4.0.0", + "System.ComponentModel.EventBasedAsync": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.1-beta-23409": { + "type": "package", + "compile": { + "ref/dnxcore50/_._": {} + } + }, + "System.Reflection/4.1.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.21-beta-23409": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1-beta-23409" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.21-beta-23225": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.0.10-beta-23109": { + "type": "package", + "dependencies": { + "System.Private.DataContractSerialization": "4.0.0-beta-23109", + "System.Runtime.Serialization.Primitives": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Handles": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Text.Encoding": "4.0.0", + "System.Text.Encoding.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Csp/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23225", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23225", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Csp.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Csp.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Globalization.Calendars": "4.0.0", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Runtime.Numerics": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23225", + "System.Security.Cryptography.Csp": "4.0.0-beta-23225", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23225", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Spatial/5.6.4": { + "type": "package", + "compile": { + "lib/portable-net45+wp8+win8+wpa/System.Spatial.dll": {} + }, + "runtime": { + "lib/portable-net45+wp8+win8+wpa/System.Spatial.dll": {} + }, + "resource": { + "lib/portable-net45+wp8+win8+wpa/de/System.Spatial.resources.dll": { + "locale": "de" + }, + "lib/portable-net45+wp8+win8+wpa/es/System.Spatial.resources.dll": { + "locale": "es" + }, + "lib/portable-net45+wp8+win8+wpa/fr/System.Spatial.resources.dll": { + "locale": "fr" + }, + "lib/portable-net45+wp8+win8+wpa/it/System.Spatial.resources.dll": { + "locale": "it" + }, + "lib/portable-net45+wp8+win8+wpa/ja/System.Spatial.resources.dll": { + "locale": "ja" + }, + "lib/portable-net45+wp8+win8+wpa/ko/System.Spatial.resources.dll": { + "locale": "ko" + }, + "lib/portable-net45+wp8+win8+wpa/ru/System.Spatial.resources.dll": { + "locale": "ru" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hans/System.Spatial.resources.dll": { + "locale": "zh-Hans" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hant/System.Spatial.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Text.Encoding/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Text.Encoding": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.InteropServices": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Text.RegularExpressions": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tools": "4.0.0", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.Reflection": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10", + "System.Xml.ReaderWriter": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Xml.ReaderWriter": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + } + }, + "WindowsAzure.Storage/6.1.1-preview": { + "type": "package", + "dependencies": { + "Microsoft.Data.OData": "5.6.4", + "Microsoft.Data.Services.Client": "5.6.4", + "Newtonsoft.Json": "6.0.8", + "System.Collections": "4.0.11-beta-23225", + "System.Collections.Concurrent": "4.0.11-beta-23225", + "System.Collections.Specialized": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.11-beta-23225", + "System.Diagnostics.Tools": "4.0.1-beta-23225", + "System.Diagnostics.TraceSource": "4.0.0-beta-23225", + "System.Diagnostics.Tracing": "4.0.21-beta-23225", + "System.Dynamic.Runtime": "4.0.11-beta-23225", + "System.Globalization": "4.0.11-beta-23225", + "System.IO": "4.0.11-beta-23225", + "System.IO.FileSystem": "4.0.1-beta-23225", + "System.IO.FileSystem.Primitives": "4.0.1-beta-23225", + "System.Linq": "4.0.1-beta-23225", + "System.Linq.Expressions": "4.0.11-beta-23225", + "System.Linq.Queryable": "4.0.0-beta-23109", + "System.Net.Http": "4.0.1-beta-23225", + "System.Net.Primitives": "4.0.11-beta-23225", + "System.Reflection": "4.1.0-beta-23225", + "System.Reflection.Extensions": "4.0.1-beta-23225", + "System.Reflection.TypeExtensions": "4.0.1-beta-23225", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.11-beta-23225", + "System.Runtime.InteropServices": "4.0.21-beta-23225", + "System.Runtime.Serialization.Primitives": "4.0.0-beta-23109", + "System.Runtime.Serialization.Xml": "4.0.10-beta-23109", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23225", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23225", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Spatial": "5.6.4", + "System.Text.Encoding": "4.0.11-beta-23225", + "System.Text.Encoding.Extensions": "4.0.11-beta-23225", + "System.Text.RegularExpressions": "4.0.11-beta-23225", + "System.Threading": "4.0.11-beta-23225", + "System.Threading.Tasks": "4.0.11-beta-23225", + "System.Threading.Thread": "4.0.0-beta-23225", + "System.Threading.ThreadPool": "4.0.10-beta-23225", + "System.Threading.Timer": "4.0.1-beta-23225", + "System.Xml.ReaderWriter": "4.0.11-beta-23225", + "System.Xml.XDocument": "4.0.11-beta-23225", + "System.Xml.XmlSerializer": "4.0.0-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.WindowsAzure.Storage.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.WindowsAzure.Storage.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Azure.KeyVault.Core/1.0.0": { + "type": "package", + "sha512": "iaA0E8xoVlqroQ7Iurg/VyAjfPdhzn+xN7JkdncmNoox/ez49uPbxp2vMrvhopBaUMuoBu38+8e0RvrV+X+BxA==", + "files": [ + "lib/net40/Microsoft.Azure.KeyVault.Core.dll", + "lib/net40/Microsoft.Azure.KeyVault.Core.xml", + "lib/portable-net45+wp8+wpa81+win/Microsoft.Azure.KeyVault.Core.dll", + "lib/portable-net45+wp8+wpa81+win/Microsoft.Azure.KeyVault.Core.xml", + "Microsoft.Azure.KeyVault.Core.1.0.0.nupkg", + "Microsoft.Azure.KeyVault.Core.1.0.0.nupkg.sha512", + "Microsoft.Azure.KeyVault.Core.nuspec" + ] + }, + "Microsoft.CSharp/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "GGOOJF47WzXZoka0JHCToQxzSguIy1UeXZywUjA1NPqvKAWVwbSbZ2VxyeIL3jyTV1BHEbBX8FPL6vweUON2aw==", + "files": [ + "lib/dotnet/de/Microsoft.CSharp.xml", + "lib/dotnet/es/Microsoft.CSharp.xml", + "lib/dotnet/fr/Microsoft.CSharp.xml", + "lib/dotnet/it/Microsoft.CSharp.xml", + "lib/dotnet/ja/Microsoft.CSharp.xml", + "lib/dotnet/ko/Microsoft.CSharp.xml", + "lib/dotnet/Microsoft.CSharp.dll", + "lib/dotnet/Microsoft.CSharp.xml", + "lib/dotnet/ru/Microsoft.CSharp.xml", + "lib/dotnet/zh-hans/Microsoft.CSharp.xml", + "lib/dotnet/zh-hant/Microsoft.CSharp.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcore50/Microsoft.CSharp.xml", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "Microsoft.CSharp.4.0.1-beta-23409.nupkg", + "Microsoft.CSharp.4.0.1-beta-23409.nupkg.sha512", + "Microsoft.CSharp.nuspec", + "ref/dotnet/Microsoft.CSharp.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._" + ] + }, + "Microsoft.Data.Edm/5.6.4": { + "type": "package", + "sha512": "I9ea/CEOufddjjyRYIowshdeFj5SIqfWZ5conK/UIaFx2/jJ+PDRhQ5jcJTqTg/ediCa1C22TeRl/MmL9zwBew==", + "files": [ + "lib/net40/de/Microsoft.Data.Edm.resources.dll", + "lib/net40/es/Microsoft.Data.Edm.resources.dll", + "lib/net40/fr/Microsoft.Data.Edm.resources.dll", + "lib/net40/it/Microsoft.Data.Edm.resources.dll", + "lib/net40/ja/Microsoft.Data.Edm.resources.dll", + "lib/net40/ko/Microsoft.Data.Edm.resources.dll", + "lib/net40/Microsoft.Data.Edm.dll", + "lib/net40/Microsoft.Data.Edm.xml", + "lib/net40/ru/Microsoft.Data.Edm.resources.dll", + "lib/net40/zh-Hans/Microsoft.Data.Edm.resources.dll", + "lib/net40/zh-Hant/Microsoft.Data.Edm.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/de/Microsoft.Data.Edm.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/es/Microsoft.Data.Edm.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/fr/Microsoft.Data.Edm.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/it/Microsoft.Data.Edm.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/ja/Microsoft.Data.Edm.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/ko/Microsoft.Data.Edm.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/Microsoft.Data.Edm.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/Microsoft.Data.Edm.xml", + "lib/portable-net40+sl5+wp8+win8+wpa/ru/Microsoft.Data.Edm.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/zh-Hans/Microsoft.Data.Edm.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/zh-Hant/Microsoft.Data.Edm.resources.dll", + "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.Edm.resources.dll", + "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.Edm.resources.dll", + "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.Edm.resources.dll", + "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.Edm.resources.dll", + "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.Edm.resources.dll", + "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.Edm.resources.dll", + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll", + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.xml", + "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.Edm.resources.dll", + "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.Edm.resources.dll", + "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.Edm.resources.dll", + "lib/sl4/de/Microsoft.Data.Edm.resources.dll", + "lib/sl4/es/Microsoft.Data.Edm.resources.dll", + "lib/sl4/fr/Microsoft.Data.Edm.resources.dll", + "lib/sl4/it/Microsoft.Data.Edm.resources.dll", + "lib/sl4/ja/Microsoft.Data.Edm.resources.dll", + "lib/sl4/ko/Microsoft.Data.Edm.resources.dll", + "lib/sl4/Microsoft.Data.Edm.dll", + "lib/sl4/Microsoft.Data.Edm.xml", + "lib/sl4/ru/Microsoft.Data.Edm.resources.dll", + "lib/sl4/zh-Hans/Microsoft.Data.Edm.resources.dll", + "lib/sl4/zh-Hant/Microsoft.Data.Edm.resources.dll", + "Microsoft.Data.Edm.5.6.4.nupkg", + "Microsoft.Data.Edm.5.6.4.nupkg.sha512", + "Microsoft.Data.Edm.nuspec" + ] + }, + "Microsoft.Data.OData/5.6.4": { + "type": "package", + "sha512": "Te71LAvjYppmBCLWomHvhVzKes3q8L5tmmDMSyLP7YrJMYG5/Ded8uJgxWWkUX/Vh11ZDpN2WXRByOg+BAHCYw==", + "files": [ + "lib/net40/de/Microsoft.Data.OData.resources.dll", + "lib/net40/es/Microsoft.Data.OData.resources.dll", + "lib/net40/fr/Microsoft.Data.OData.resources.dll", + "lib/net40/it/Microsoft.Data.OData.resources.dll", + "lib/net40/ja/Microsoft.Data.OData.resources.dll", + "lib/net40/ko/Microsoft.Data.OData.resources.dll", + "lib/net40/Microsoft.Data.OData.dll", + "lib/net40/Microsoft.Data.OData.xml", + "lib/net40/ru/Microsoft.Data.OData.resources.dll", + "lib/net40/zh-Hans/Microsoft.Data.OData.resources.dll", + "lib/net40/zh-Hant/Microsoft.Data.OData.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/de/Microsoft.Data.OData.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/es/Microsoft.Data.OData.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/fr/Microsoft.Data.OData.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/it/Microsoft.Data.OData.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/ja/Microsoft.Data.OData.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/ko/Microsoft.Data.OData.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/Microsoft.Data.OData.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/Microsoft.Data.OData.xml", + "lib/portable-net40+sl5+wp8+win8+wpa/ru/Microsoft.Data.OData.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/zh-Hans/Microsoft.Data.OData.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/zh-Hant/Microsoft.Data.OData.resources.dll", + "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.OData.resources.dll", + "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.OData.resources.dll", + "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.OData.resources.dll", + "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.OData.resources.dll", + "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.OData.resources.dll", + "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.OData.resources.dll", + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.OData.dll", + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.OData.xml", + "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.OData.resources.dll", + "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.OData.resources.dll", + "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.OData.resources.dll", + "lib/sl4/de/Microsoft.Data.OData.resources.dll", + "lib/sl4/es/Microsoft.Data.OData.resources.dll", + "lib/sl4/fr/Microsoft.Data.OData.resources.dll", + "lib/sl4/it/Microsoft.Data.OData.resources.dll", + "lib/sl4/ja/Microsoft.Data.OData.resources.dll", + "lib/sl4/ko/Microsoft.Data.OData.resources.dll", + "lib/sl4/Microsoft.Data.OData.dll", + "lib/sl4/Microsoft.Data.OData.xml", + "lib/sl4/ru/Microsoft.Data.OData.resources.dll", + "lib/sl4/zh-Hans/Microsoft.Data.OData.resources.dll", + "lib/sl4/zh-Hant/Microsoft.Data.OData.resources.dll", + "Microsoft.Data.OData.5.6.4.nupkg", + "Microsoft.Data.OData.5.6.4.nupkg.sha512", + "Microsoft.Data.OData.nuspec" + ] + }, + "Microsoft.Data.Services.Client/5.6.4": { + "type": "package", + "sha512": "94XNZKwnpHuFAdR70kqNTMBv2ex9m+VVQX8dHknZgtlq+nTlZDgzFmahU0wsBaIqJWc3k8Z+FftQ2Voq9r0NWA==", + "files": [ + "lib/net40/de/Microsoft.Data.Services.Client.resources.dll", + "lib/net40/es/Microsoft.Data.Services.Client.resources.dll", + "lib/net40/fr/Microsoft.Data.Services.Client.resources.dll", + "lib/net40/it/Microsoft.Data.Services.Client.resources.dll", + "lib/net40/ja/Microsoft.Data.Services.Client.resources.dll", + "lib/net40/ko/Microsoft.Data.Services.Client.resources.dll", + "lib/net40/Microsoft.Data.Services.Client.dll", + "lib/net40/Microsoft.Data.Services.Client.xml", + "lib/net40/ru/Microsoft.Data.Services.Client.resources.dll", + "lib/net40/zh-Hans/Microsoft.Data.Services.Client.resources.dll", + "lib/net40/zh-Hant/Microsoft.Data.Services.Client.resources.dll", + "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.Services.Client.resources.dll", + "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.Services.Client.resources.dll", + "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.Services.Client.resources.dll", + "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.Services.Client.resources.dll", + "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.Services.Client.resources.dll", + "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.Services.Client.resources.dll", + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Services.Client.dll", + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Services.Client.xml", + "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.Services.Client.resources.dll", + "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.Services.Client.resources.dll", + "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.Services.Client.resources.dll", + "lib/sl4/de/Microsoft.Data.Services.Client.resources.dll", + "lib/sl4/es/Microsoft.Data.Services.Client.resources.dll", + "lib/sl4/fr/Microsoft.Data.Services.Client.resources.dll", + "lib/sl4/it/Microsoft.Data.Services.Client.resources.dll", + "lib/sl4/ja/Microsoft.Data.Services.Client.resources.dll", + "lib/sl4/ko/Microsoft.Data.Services.Client.resources.dll", + "lib/sl4/Microsoft.Data.Services.Client.dll", + "lib/sl4/Microsoft.Data.Services.Client.xml", + "lib/sl4/ru/Microsoft.Data.Services.Client.resources.dll", + "lib/sl4/zh-Hans/Microsoft.Data.Services.Client.resources.dll", + "lib/sl4/zh-Hant/Microsoft.Data.Services.Client.resources.dll", + "Microsoft.Data.Services.Client.5.6.4.nupkg", + "Microsoft.Data.Services.Client.5.6.4.nupkg.sha512", + "Microsoft.Data.Services.Client.nuspec" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "CvJ0sdlPcrGDcF7wULMLArda7PsNgbci/DY8AzTjj5rRdu0ZJQ30uFWFsd4CzA7358Qkeq19PmYrptvIG5weqA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnxcore50/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-beta8.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "6TmUFq/mt2l7QKoDyCuJOrDFcJ9A3ljZ/P3SBQMb+IYJ9J7XivUb47E+E9dQXhIjs5FpFHUGAE5Mxj2oKpxkfA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.dll", + "lib/dnxcore50/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-beta8.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "7WL9hy+7bYDyBtIrrW5tw57dChBcizjSyuD0p5pVkay+gSseLqvAk72a4KldMmRgH//7t74d/YVrTvLhw83b7w==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnxcore50/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-beta8.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Primitives/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "tCmbjiE+AgwTfikByvv0xEsnA/z5SOAecZT6gb7EbjuanlzzCUyqTSnvi5SRLGBQsTNKjLiQFFlVOeWHZPOcDg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Primitives.dll", + "lib/dnx451/Microsoft.Framework.Primitives.xml", + "lib/dnxcore50/Microsoft.Framework.Primitives.dll", + "lib/dnxcore50/Microsoft.Framework.Primitives.xml", + "lib/dotnet/Microsoft.Framework.Primitives.dll", + "lib/dotnet/Microsoft.Framework.Primitives.xml", + "lib/net45/Microsoft.Framework.Primitives.dll", + "lib/net45/Microsoft.Framework.Primitives.xml", + "Microsoft.Framework.Primitives.1.0.0-beta8.nupkg", + "Microsoft.Framework.Primitives.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.Primitives.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "Microsoft.Win32.Primitives.4.0.0.nupkg", + "Microsoft.Win32.Primitives.4.0.0.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/de/Microsoft.Win32.Primitives.xml", + "ref/dotnet/es/Microsoft.Win32.Primitives.xml", + "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", + "ref/dotnet/it/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._" + ] + }, + "Newtonsoft.Json/6.0.8": { + "type": "package", + "sha512": "7ut47NDedTW19EbL0JpFDYUP62fcuz27hJrehCDNajdCS5NtqL+E39+7Um3OkNc2wl2ym7K8Ln5eNuLus6mVGQ==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.8.nupkg", + "Newtonsoft.Json.6.0.8.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "runtime.win7.System.Diagnostics.Debug/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "ITLu13a/DQDMq1mHgxQnAjy4mFlYTTo+veCZ0K9PDYnzg9sNNjF+GhcKMkh3yOcMXwxdJr5gInXuqGHlD7bEug==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Diagnostics.Debug.4.0.11-beta-23409.nupkg", + "runtime.win7.System.Diagnostics.Debug.4.0.11-beta-23409.nupkg.sha512", + "runtime.win7.System.Diagnostics.Debug.nuspec", + "runtimes/win7/lib/DNXCore50/de/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/DNXCore50/es/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/DNXCore50/fr/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/DNXCore50/it/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/DNXCore50/ja/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/DNXCore50/ko/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/DNXCore50/ru/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/DNXCore50/System.Diagnostics.Debug.dll", + "runtimes/win7/lib/DNXCore50/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/DNXCore50/zh-hans/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/DNXCore50/zh-hant/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/netcore50/de/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/netcore50/es/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/netcore50/fr/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/netcore50/it/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/netcore50/ja/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/netcore50/ko/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/netcore50/ru/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/netcore50/System.Diagnostics.Debug.dll", + "runtimes/win7/lib/netcore50/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" + ] + }, + "runtime.win7.System.Private.Uri/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "9mcAednoAbDrL5t/GBPYFCfrxYaGxfvpkSkAt3LWQeCH0rp4PlJpOQNtIALcyCfG4lD+z0YBAXEQsZmMVs6C+Q==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Private.Uri.4.0.1-beta-23409.nupkg", + "runtime.win7.System.Private.Uri.4.0.1-beta-23409.nupkg.sha512", + "runtime.win7.System.Private.Uri.nuspec", + "runtimes/win7/lib/DNXCore50/System.Private.Uri.dll", + "runtimes/win7/lib/netcore50/System.Private.Uri.dll", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll" + ] + }, + "runtime.win7.System.Threading/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "KUUz+kNOK8ZEaCDERH/lS8RCVN9ww79xSAjWhs1/7pyN43727Xoh4GGODA0BUV3dAmBMvxMQVgDPwi/Ylvj/YQ==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Threading.4.0.11-beta-23409.nupkg", + "runtime.win7.System.Threading.4.0.11-beta-23409.nupkg.sha512", + "runtime.win7.System.Threading.nuspec", + "runtimes/win7/lib/DNXCore50/de/System.Threading.xml", + "runtimes/win7/lib/DNXCore50/es/System.Threading.xml", + "runtimes/win7/lib/DNXCore50/fr/System.Threading.xml", + "runtimes/win7/lib/DNXCore50/it/System.Threading.xml", + "runtimes/win7/lib/DNXCore50/ja/System.Threading.xml", + "runtimes/win7/lib/DNXCore50/ko/System.Threading.xml", + "runtimes/win7/lib/DNXCore50/ru/System.Threading.xml", + "runtimes/win7/lib/DNXCore50/System.Threading.dll", + "runtimes/win7/lib/DNXCore50/System.Threading.xml", + "runtimes/win7/lib/DNXCore50/zh-hans/System.Threading.xml", + "runtimes/win7/lib/DNXCore50/zh-hant/System.Threading.xml", + "runtimes/win7/lib/netcore50/de/System.Threading.xml", + "runtimes/win7/lib/netcore50/es/System.Threading.xml", + "runtimes/win7/lib/netcore50/fr/System.Threading.xml", + "runtimes/win7/lib/netcore50/it/System.Threading.xml", + "runtimes/win7/lib/netcore50/ja/System.Threading.xml", + "runtimes/win7/lib/netcore50/ko/System.Threading.xml", + "runtimes/win7/lib/netcore50/ru/System.Threading.xml", + "runtimes/win7/lib/netcore50/System.Threading.dll", + "runtimes/win7/lib/netcore50/System.Threading.xml", + "runtimes/win7/lib/netcore50/zh-hans/System.Threading.xml", + "runtimes/win7/lib/netcore50/zh-hant/System.Threading.xml", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll" + ] + }, + "System.Collections/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "p32VHfH7pe+EUjGSH+XiNjVn735JZnsvAG5nap5q11s6FjoqZ8bl7HOBM8AQGye/oWbKnSsh3dyKa1K0wbMk2w==", + "files": [ + "lib/DNXCore50/de/System.Collections.xml", + "lib/DNXCore50/es/System.Collections.xml", + "lib/DNXCore50/fr/System.Collections.xml", + "lib/DNXCore50/it/System.Collections.xml", + "lib/DNXCore50/ja/System.Collections.xml", + "lib/DNXCore50/ko/System.Collections.xml", + "lib/DNXCore50/ru/System.Collections.xml", + "lib/DNXCore50/System.Collections.dll", + "lib/DNXCore50/System.Collections.xml", + "lib/DNXCore50/zh-hans/System.Collections.xml", + "lib/DNXCore50/zh-hant/System.Collections.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/de/System.Collections.xml", + "lib/netcore50/es/System.Collections.xml", + "lib/netcore50/fr/System.Collections.xml", + "lib/netcore50/it/System.Collections.xml", + "lib/netcore50/ja/System.Collections.xml", + "lib/netcore50/ko/System.Collections.xml", + "lib/netcore50/ru/System.Collections.xml", + "lib/netcore50/System.Collections.dll", + "lib/netcore50/System.Collections.xml", + "lib/netcore50/zh-hans/System.Collections.xml", + "lib/netcore50/zh-hant/System.Collections.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Collections.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/de/System.Collections.xml", + "runtimes/win8-aot/lib/netcore50/es/System.Collections.xml", + "runtimes/win8-aot/lib/netcore50/fr/System.Collections.xml", + "runtimes/win8-aot/lib/netcore50/it/System.Collections.xml", + "runtimes/win8-aot/lib/netcore50/ja/System.Collections.xml", + "runtimes/win8-aot/lib/netcore50/ko/System.Collections.xml", + "runtimes/win8-aot/lib/netcore50/ru/System.Collections.xml", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "runtimes/win8-aot/lib/netcore50/System.Collections.xml", + "runtimes/win8-aot/lib/netcore50/zh-hans/System.Collections.xml", + "runtimes/win8-aot/lib/netcore50/zh-hant/System.Collections.xml", + "System.Collections.4.0.11-beta-23409.nupkg", + "System.Collections.4.0.11-beta-23409.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "1IpnM4cumRWH4IQovgaUPJG1uelXn7gGogD1DnBFcTm6oh4DEndwv0TTYPzBcjVmQQUgyoPU/k16oeAr3ZkBbg==", + "files": [ + "lib/dotnet/de/System.Collections.Concurrent.xml", + "lib/dotnet/es/System.Collections.Concurrent.xml", + "lib/dotnet/fr/System.Collections.Concurrent.xml", + "lib/dotnet/it/System.Collections.Concurrent.xml", + "lib/dotnet/ja/System.Collections.Concurrent.xml", + "lib/dotnet/ko/System.Collections.Concurrent.xml", + "lib/dotnet/ru/System.Collections.Concurrent.xml", + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/dotnet/System.Collections.Concurrent.xml", + "lib/dotnet/zh-hans/System.Collections.Concurrent.xml", + "lib/dotnet/zh-hant/System.Collections.Concurrent.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Collections.Concurrent.4.0.11-beta-23409.nupkg", + "System.Collections.Concurrent.4.0.11-beta-23409.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Collections.NonGeneric.xml", + "ref/dotnet/es/System.Collections.NonGeneric.xml", + "ref/dotnet/fr/System.Collections.NonGeneric.xml", + "ref/dotnet/it/System.Collections.NonGeneric.xml", + "ref/dotnet/ja/System.Collections.NonGeneric.xml", + "ref/dotnet/ko/System.Collections.NonGeneric.xml", + "ref/dotnet/ru/System.Collections.NonGeneric.xml", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Collections.NonGeneric.4.0.0.nupkg", + "System.Collections.NonGeneric.4.0.0.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.0.0-beta-23109": { + "type": "package", + "serviceable": true, + "sha512": "sHMEvjfZcBO04aDflCBqbNSsrs7NgpkXO4gZN+yt80KMEQ3iWbeK5U8CbdtjDRePNZzoYf5K1mE1c+3RR03UGA==", + "files": [ + "lib/dotnet/System.Collections.Specialized.dll", + "lib/net46/System.Collections.Specialized.dll", + "ref/dotnet/de/System.Collections.Specialized.xml", + "ref/dotnet/es/System.Collections.Specialized.xml", + "ref/dotnet/fr/System.Collections.Specialized.xml", + "ref/dotnet/it/System.Collections.Specialized.xml", + "ref/dotnet/ja/System.Collections.Specialized.xml", + "ref/dotnet/ko/System.Collections.Specialized.xml", + "ref/dotnet/ru/System.Collections.Specialized.xml", + "ref/dotnet/System.Collections.Specialized.dll", + "ref/dotnet/System.Collections.Specialized.xml", + "ref/dotnet/zh-hans/System.Collections.Specialized.xml", + "ref/dotnet/zh-hant/System.Collections.Specialized.xml", + "ref/net46/System.Collections.Specialized.dll", + "System.Collections.Specialized.4.0.0-beta-23109.nupkg", + "System.Collections.Specialized.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.Specialized.nuspec" + ] + }, + "System.ComponentModel/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "4djgHMOshtJ1mwBhceLsbmr2CJyrpSRsKMWmpOfJEjtELVUXRBS2tf+stHEQSkhKgqT2SRjE2aSF4vIzziYsEQ==", + "files": [ + "lib/dotnet/de/System.ComponentModel.xml", + "lib/dotnet/es/System.ComponentModel.xml", + "lib/dotnet/fr/System.ComponentModel.xml", + "lib/dotnet/it/System.ComponentModel.xml", + "lib/dotnet/ja/System.ComponentModel.xml", + "lib/dotnet/ko/System.ComponentModel.xml", + "lib/dotnet/ru/System.ComponentModel.xml", + "lib/dotnet/System.ComponentModel.dll", + "lib/dotnet/System.ComponentModel.xml", + "lib/dotnet/zh-hans/System.ComponentModel.xml", + "lib/dotnet/zh-hant/System.ComponentModel.xml", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netcore50/System.ComponentModel.xml", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.1-beta-23409.nupkg", + "System.ComponentModel.4.0.1-beta-23409.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10": { + "type": "package", + "serviceable": true, + "sha512": "d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==", + "files": [ + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/dotnet/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ComponentModel.EventBasedAsync.4.0.10.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "DWoxJarBvyuhygEDA0rsY5pmEkk9OxefzNxGP1jRbvdEZxy6ONcizLVW1Tq5oXGgTgvN9XVwlK4iDcoe6e8VJQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Diagnostics.Debug.4.0.11-beta-23409.nupkg", + "System.Diagnostics.Debug.4.0.11-beta-23409.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "SMLM08CszBMNYYM5gTonJwXl1hVDyn5yyyKYzmUutGTvtdQzcgybBgsnl3U3ePgZ9TdxEkLHJqQWdP1tLjY/1w==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.1-beta-23225.nupkg", + "System.Diagnostics.Tools.4.0.1-beta-23225.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "YxtO5PTJ2+g5/aSZpwRg5pti3TyR6pSRfkccazIU17v/+mLwaPnCYmfhm+lbjTwBUlZ/plIt2ngI8gpa/goLEg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.TraceSource.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.TraceSource.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Diagnostics.TraceSource.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.TraceSource.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Diagnostics.TraceSource.4.0.0-beta-23225.nupkg", + "System.Diagnostics.TraceSource.4.0.0-beta-23225.nupkg.sha512", + "System.Diagnostics.TraceSource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.21-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "5wQpoAWxFiJFFx5iSZVKIs/3bRZNpyTdCz8Uoj01Kb0FICPO2Q0fXbKAno/0zDv25Irq7q1urWG+f3At9d22sw==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.21-beta-23225.nupkg", + "System.Diagnostics.Tracing.4.0.21-beta-23225.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "aI2Fu/s7rQ4q2HyyLxfpZV5sqqBVjkLRrTJH9duObtSyRcCbuKXAk4H1/GtzTVUpqF804xE5dYnRYDmFohkq/Q==", + "files": [ + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", + "System.Dynamic.Runtime.4.0.11-beta-23225.nupkg", + "System.Dynamic.Runtime.4.0.11-beta-23225.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "v3CMBhz+deioqW3RQMridiJTGoUMv5trwWlTkD++78LcIgEU/KmhoK7oGWLYEKKCOCmn3ZsY5+V1gltKTc69tw==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Globalization.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.11-beta-23409.nupkg", + "System.Globalization.4.0.11-beta-23409.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0": { + "type": "package", + "sha512": "cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Globalization.Calendars.xml", + "ref/dotnet/es/System.Globalization.Calendars.xml", + "ref/dotnet/fr/System.Globalization.Calendars.xml", + "ref/dotnet/it/System.Globalization.Calendars.xml", + "ref/dotnet/ja/System.Globalization.Calendars.xml", + "ref/dotnet/ko/System.Globalization.Calendars.xml", + "ref/dotnet/ru/System.Globalization.Calendars.xml", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hans/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hant/System.Globalization.Calendars.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0.nupkg", + "System.Globalization.Calendars.4.0.0.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.0.0-beta-23109": { + "type": "package", + "serviceable": true, + "sha512": "YO+kZA7Lb6oWj9Voas0F/xiKPDvBcOqOnaDaJfDFSO42IDX/4Y+e63AX6ri+c8CvPmc+5sQc3wavjSGTjRPklg==", + "files": [ + "lib/dotnet/System.Globalization.Extensions.dll", + "lib/net46/System.Globalization.Extensions.dll", + "ref/dotnet/de/System.Globalization.Extensions.xml", + "ref/dotnet/es/System.Globalization.Extensions.xml", + "ref/dotnet/fr/System.Globalization.Extensions.xml", + "ref/dotnet/it/System.Globalization.Extensions.xml", + "ref/dotnet/ja/System.Globalization.Extensions.xml", + "ref/dotnet/ko/System.Globalization.Extensions.xml", + "ref/dotnet/ru/System.Globalization.Extensions.xml", + "ref/dotnet/System.Globalization.Extensions.dll", + "ref/dotnet/System.Globalization.Extensions.xml", + "ref/dotnet/zh-hans/System.Globalization.Extensions.xml", + "ref/dotnet/zh-hant/System.Globalization.Extensions.xml", + "ref/net46/System.Globalization.Extensions.dll", + "System.Globalization.Extensions.4.0.0-beta-23109.nupkg", + "System.Globalization.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.Extensions.nuspec" + ] + }, + "System.IO/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "k0ifEyjQmQhEc1MLynTPTp7Up3vikFu3ogB+i8x9KhdPeSq+CaEH9+eIVULiX2DdduyVjZV5mQanGyHLWprXHg==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.IO.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.11-beta-23225.nupkg", + "System.IO.4.0.11-beta-23225.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.Compression/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "S+ljBE3py8pujTrsOOYHtDg2cnAifn6kBu/pfh1hMWIXd8DoVh0ADTA6Puv4q+nYj+Msm6JoFLNwuRSmztbsDQ==", + "files": [ + "lib/dotnet/System.IO.Compression.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.IO.Compression.xml", + "ref/dotnet/es/System.IO.Compression.xml", + "ref/dotnet/fr/System.IO.Compression.xml", + "ref/dotnet/it/System.IO.Compression.xml", + "ref/dotnet/ja/System.IO.Compression.xml", + "ref/dotnet/ko/System.IO.Compression.xml", + "ref/dotnet/ru/System.IO.Compression.xml", + "ref/dotnet/System.IO.Compression.dll", + "ref/dotnet/System.IO.Compression.xml", + "ref/dotnet/zh-hans/System.IO.Compression.xml", + "ref/dotnet/zh-hant/System.IO.Compression.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.IO.Compression.4.0.0.nupkg", + "System.IO.Compression.4.0.0.nupkg.sha512", + "System.IO.Compression.nuspec" + ] + }, + "System.IO.Compression.clrcompression-x64/4.0.0": { + "type": "package", + "sha512": "Lqr+URMwKzf+8HJF6YrqEqzKzDzFJTE4OekaxqdIns71r8Ufbd8SbZa0LKl9q+7nu6Em4SkIEXVMB7plSXekOw==", + "files": [ + "runtimes/win10-x64/native/ClrCompression.dll", + "runtimes/win7-x64/native/clrcompression.dll", + "System.IO.Compression.clrcompression-x64.4.0.0.nupkg", + "System.IO.Compression.clrcompression-x64.4.0.0.nupkg.sha512", + "System.IO.Compression.clrcompression-x64.nuspec" + ] + }, + "System.IO.Compression.clrcompression-x86/4.0.0": { + "type": "package", + "sha512": "GmevpuaMRzYDXHu+xuV10fxTO8DsP7OKweWxYtkaxwVnDSj9X6RBupSiXdiveq9yj/xjZ1NbG+oRRRb99kj+VQ==", + "files": [ + "runtimes/win10-x86/native/ClrCompression.dll", + "runtimes/win7-x86/native/clrcompression.dll", + "System.IO.Compression.clrcompression-x86.4.0.0.nupkg", + "System.IO.Compression.clrcompression-x86.4.0.0.nupkg.sha512", + "System.IO.Compression.clrcompression-x86.nuspec" + ] + }, + "System.IO.FileSystem/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "R1t2THiMBUI3Sa5lXJiGzjO4fLXIyQZGp/MUGR4gnt6nar05/nk8ilZplzakk4YXN3V5h+F8LeeiQNZ+4Yw/Bw==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.IO.FileSystem.4.0.1-beta-23225.nupkg", + "System.IO.FileSystem.4.0.1-beta-23225.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "OguYM1tjYAxnzxsCrxlU6YbTUqBhLFuaBPUe0BZ4tgRV3XHK6n+Y3bmNpzcCW7NouiNYJkCOEALYJH6aFmEbmw==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.IO.FileSystem.Primitives.4.0.1-beta-23225.nupkg", + "System.IO.FileSystem.Primitives.4.0.1-beta-23225.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.Linq/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "PaualgQ0um/Dw8y3iKD5bUNZ4PoJGfmFgKh3U//0VsCj+IEQH3oeKwvrPIlWr/YHKwwmLz0uvWKPWxGG+u5Oag==", + "files": [ + "lib/dotnet/de/System.Linq.xml", + "lib/dotnet/es/System.Linq.xml", + "lib/dotnet/fr/System.Linq.xml", + "lib/dotnet/it/System.Linq.xml", + "lib/dotnet/ja/System.Linq.xml", + "lib/dotnet/ko/System.Linq.xml", + "lib/dotnet/ru/System.Linq.xml", + "lib/dotnet/System.Linq.dll", + "lib/dotnet/System.Linq.xml", + "lib/dotnet/zh-hans/System.Linq.xml", + "lib/dotnet/zh-hant/System.Linq.xml", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/netcore50/System.Linq.xml", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.1-beta-23409.nupkg", + "System.Linq.4.0.1-beta-23409.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "ISOgZYf8k95HBBxCzuUzRLmBu2RF2mWGfaaX3j3tc59p7qJNv1qe8BvLUg1YDvK3wBqcQZq1pkI5qO8ySQBd9w==", + "files": [ + "lib/DNXCore50/de/System.Linq.Expressions.xml", + "lib/DNXCore50/es/System.Linq.Expressions.xml", + "lib/DNXCore50/fr/System.Linq.Expressions.xml", + "lib/DNXCore50/it/System.Linq.Expressions.xml", + "lib/DNXCore50/ja/System.Linq.Expressions.xml", + "lib/DNXCore50/ko/System.Linq.Expressions.xml", + "lib/DNXCore50/ru/System.Linq.Expressions.xml", + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/DNXCore50/System.Linq.Expressions.xml", + "lib/DNXCore50/zh-hans/System.Linq.Expressions.xml", + "lib/DNXCore50/zh-hant/System.Linq.Expressions.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/de/System.Linq.Expressions.xml", + "lib/netcore50/es/System.Linq.Expressions.xml", + "lib/netcore50/fr/System.Linq.Expressions.xml", + "lib/netcore50/it/System.Linq.Expressions.xml", + "lib/netcore50/ja/System.Linq.Expressions.xml", + "lib/netcore50/ko/System.Linq.Expressions.xml", + "lib/netcore50/ru/System.Linq.Expressions.xml", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.xml", + "lib/netcore50/zh-hans/System.Linq.Expressions.xml", + "lib/netcore50/zh-hant/System.Linq.Expressions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/de/System.Linq.Expressions.xml", + "runtimes/win8-aot/lib/netcore50/es/System.Linq.Expressions.xml", + "runtimes/win8-aot/lib/netcore50/fr/System.Linq.Expressions.xml", + "runtimes/win8-aot/lib/netcore50/it/System.Linq.Expressions.xml", + "runtimes/win8-aot/lib/netcore50/ja/System.Linq.Expressions.xml", + "runtimes/win8-aot/lib/netcore50/ko/System.Linq.Expressions.xml", + "runtimes/win8-aot/lib/netcore50/ru/System.Linq.Expressions.xml", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.xml", + "runtimes/win8-aot/lib/netcore50/zh-hans/System.Linq.Expressions.xml", + "runtimes/win8-aot/lib/netcore50/zh-hant/System.Linq.Expressions.xml", + "System.Linq.Expressions.4.0.11-beta-23409.nupkg", + "System.Linq.Expressions.4.0.11-beta-23409.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "type": "package", + "serviceable": true, + "sha512": "LwtHRyqV+JSR5vDfHdDP5V0nfw229gq0h6yHTQY5nZD2xs6NyCNGlwbTXLuZNgjqj/A2GnZUKa1kNFsBEChjww==", + "files": [ + "lib/dotnet/System.Linq.Queryable.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.Queryable.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.Queryable.xml", + "ref/dotnet/es/System.Linq.Queryable.xml", + "ref/dotnet/fr/System.Linq.Queryable.xml", + "ref/dotnet/it/System.Linq.Queryable.xml", + "ref/dotnet/ja/System.Linq.Queryable.xml", + "ref/dotnet/ko/System.Linq.Queryable.xml", + "ref/dotnet/ru/System.Linq.Queryable.xml", + "ref/dotnet/System.Linq.Queryable.dll", + "ref/dotnet/System.Linq.Queryable.xml", + "ref/dotnet/zh-hans/System.Linq.Queryable.xml", + "ref/dotnet/zh-hant/System.Linq.Queryable.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.Queryable.dll", + "ref/netcore50/System.Linq.Queryable.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.Queryable.4.0.0-beta-23109.nupkg", + "System.Linq.Queryable.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.Queryable.nuspec" + ] + }, + "System.Net.Http/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "PFh0rGs7K+NaRAzijr/ENcFDCOraQ7Tr22Ip++CI298rZWtLsA7nJ/INsibL0clFDwqd/hj4kGwZ65D+9zHwhQ==", + "files": [ + "lib/DNXCore50/System.Net.Http.dll", + "lib/net45/_._", + "lib/netcore50/System.Net.Http.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Net.Http.dll", + "ref/net45/_._", + "ref/netcore50/System.Net.Http.dll", + "ref/win8/_._", + "ref/wpa81/_._", + "System.Net.Http.4.0.1-beta-23225.nupkg", + "System.Net.Http.4.0.1-beta-23225.nupkg.sha512", + "System.Net.Http.nuspec" + ] + }, + "System.Net.Primitives/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "OngOJnmjl2P6CRIAsGfJItiTmuKM+TfrcKVjt+nv24ZtxmnSV45wyPghSPRb2/cHiVjHKQ/L7m582LDSfMu/jA==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Net.Primitives.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Net.Primitives.4.0.11-beta-23225.nupkg", + "System.Net.Primitives.4.0.11-beta-23225.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.ObjectModel/4.0.10": { + "type": "package", + "serviceable": true, + "sha512": "Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.ObjectModel.xml", + "ref/dotnet/es/System.ObjectModel.xml", + "ref/dotnet/fr/System.ObjectModel.xml", + "ref/dotnet/it/System.ObjectModel.xml", + "ref/dotnet/ja/System.ObjectModel.xml", + "ref/dotnet/ko/System.ObjectModel.xml", + "ref/dotnet/ru/System.ObjectModel.xml", + "ref/dotnet/System.ObjectModel.dll", + "ref/dotnet/System.ObjectModel.xml", + "ref/dotnet/zh-hans/System.ObjectModel.xml", + "ref/dotnet/zh-hant/System.ObjectModel.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ObjectModel.4.0.10.nupkg", + "System.ObjectModel.4.0.10.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.DataContractSerialization/4.0.0-beta-23109": { + "type": "package", + "serviceable": true, + "sha512": "pkQQTBZ5unPWpS0txMVtOqFCfbvOkmQj9obZNWtsuECE31L/OJAbBAztk19EnjfkVS0eh2LHwTG2RjVozkz44g==", + "files": [ + "lib/DNXCore50/System.Private.DataContractSerialization.dll", + "lib/netcore50/System.Private.DataContractSerialization.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll", + "System.Private.DataContractSerialization.4.0.0-beta-23109.nupkg", + "System.Private.DataContractSerialization.4.0.0-beta-23109.nupkg.sha512", + "System.Private.DataContractSerialization.nuspec" + ] + }, + "System.Private.Networking/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "PcMdwhnkodbZmOj2RGGH/I5LvsIIdC+GJHORHnvdRFLUZNqIJE/0mEfA2BhWj5wiEbp8TlLyj/vEX6CXE8IKPQ==", + "files": [ + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.4.0.1-beta-23225.nupkg", + "System.Private.Networking.4.0.1-beta-23225.nupkg.sha512", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.Uri/4.0.1-beta-23409": { + "type": "package", + "sha512": "CDTFX1023ZLDnJvOH9lnBxZbTlosJhta4ymKSgXU4Yk9BVkO3cTwqdiIV5VRddXqQuJ4ksDHV0UmbPNs15pVvQ==", + "files": [ + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtime.json", + "System.Private.Uri.4.0.1-beta-23409.nupkg", + "System.Private.Uri.4.0.1-beta-23409.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.1.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "WbLtaCxoe5XdqEyZuGpemSQ8YBJ8cj11zx+yxOxJfHbNrmu7oMQ29+J50swaqg3soUc3BVBMqfIhb/7gocDHQA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Reflection.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.1.0-beta-23225.nupkg", + "System.Reflection.4.1.0-beta-23225.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0": { + "type": "package", + "sha512": "CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/MonoAndroid10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/xamarinmac20/_._", + "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/MonoAndroid10/_._", + "ref/net45/_._", + "ref/xamarinmac20/_._", + "System.Reflection.Emit.4.0.0.nupkg", + "System.Reflection.Emit.4.0.0.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0": { + "type": "package", + "sha512": "02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==", + "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.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.0.0": { + "type": "package", + "sha512": "DJZhHiOdkN08xJgsJfDjkuOreLLmMcU8qkEEqEHqyhkPUZMMQs0lE8R+6+68BAFWgcdzxtNu0YmIOtEug8j00w==", + "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.nupkg", + "System.Reflection.Emit.Lightweight.4.0.0.nupkg.sha512", + "System.Reflection.Emit.Lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "edn0X2pCm6QN0FpmupFgCwAFhZbLDiQSU3Bx267gZ60gS9nbKfq9Q4qTPKN2Oq+ImhQvbPoFCZtSw9aqO1K3fA==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.1-beta-23225.nupkg", + "System.Reflection.Extensions.4.0.1-beta-23225.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Primitives.xml", + "ref/dotnet/es/System.Reflection.Primitives.xml", + "ref/dotnet/fr/System.Reflection.Primitives.xml", + "ref/dotnet/it/System.Reflection.Primitives.xml", + "ref/dotnet/ja/System.Reflection.Primitives.xml", + "ref/dotnet/ko/System.Reflection.Primitives.xml", + "ref/dotnet/ru/System.Reflection.Primitives.xml", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0.nupkg", + "System.Reflection.Primitives.4.0.0.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "Etpayh8D2py7/uLdpT/U3qtKY00gJR1gfnnowPHIEi6revIRgvtADbCgJ5vybAYkDU9vMbjxt+lYvYafPPQ1rg==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.1-beta-23225.nupkg", + "System.Reflection.TypeExtensions.4.0.1-beta-23225.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "EHNY58/HhDFTLMfxeNtRStY33JAOx+USo0+WhyZyzcYeaE+Bol6YQYpM7/HbfEV5c8tUBCTTBf81u0Q40AoEPw==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/de/System.Resources.ResourceManager.xml", + "runtimes/win8-aot/lib/netcore50/es/System.Resources.ResourceManager.xml", + "runtimes/win8-aot/lib/netcore50/fr/System.Resources.ResourceManager.xml", + "runtimes/win8-aot/lib/netcore50/it/System.Resources.ResourceManager.xml", + "runtimes/win8-aot/lib/netcore50/ja/System.Resources.ResourceManager.xml", + "runtimes/win8-aot/lib/netcore50/ko/System.Resources.ResourceManager.xml", + "runtimes/win8-aot/lib/netcore50/ru/System.Resources.ResourceManager.xml", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.xml", + "runtimes/win8-aot/lib/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "runtimes/win8-aot/lib/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "System.Resources.ResourceManager.4.0.1-beta-23409.nupkg", + "System.Resources.ResourceManager.4.0.1-beta-23409.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.21-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "tv8k2UjvoQdk/XQqPpqmL8nayLjYIIqluTN4n/jnZijUI7JLAFoTSUEl/6Ru//mqYhE3c5sGS5d8c+e7aC1hKA==", + "files": [ + "lib/DNXCore50/de/System.Runtime.xml", + "lib/DNXCore50/es/System.Runtime.xml", + "lib/DNXCore50/fr/System.Runtime.xml", + "lib/DNXCore50/it/System.Runtime.xml", + "lib/DNXCore50/ja/System.Runtime.xml", + "lib/DNXCore50/ko/System.Runtime.xml", + "lib/DNXCore50/ru/System.Runtime.xml", + "lib/DNXCore50/System.Runtime.dll", + "lib/DNXCore50/System.Runtime.xml", + "lib/DNXCore50/zh-hans/System.Runtime.xml", + "lib/DNXCore50/zh-hant/System.Runtime.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/de/System.Runtime.xml", + "lib/netcore50/es/System.Runtime.xml", + "lib/netcore50/fr/System.Runtime.xml", + "lib/netcore50/it/System.Runtime.xml", + "lib/netcore50/ja/System.Runtime.xml", + "lib/netcore50/ko/System.Runtime.xml", + "lib/netcore50/ru/System.Runtime.xml", + "lib/netcore50/System.Runtime.dll", + "lib/netcore50/System.Runtime.xml", + "lib/netcore50/zh-hans/System.Runtime.xml", + "lib/netcore50/zh-hant/System.Runtime.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Runtime.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/de/System.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/es/System.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/fr/System.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/it/System.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/ja/System.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/ko/System.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/ru/System.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "runtimes/win8-aot/lib/netcore50/System.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/zh-hans/System.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/zh-hant/System.Runtime.xml", + "System.Runtime.4.0.21-beta-23409.nupkg", + "System.Runtime.4.0.21-beta-23409.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "crElsF4wljPNYuK8RgwEwxW0++MGp0AWpwz+aeMoAmcvqD7pNyf760u+kK+DFjbhkPLRf3lB8mVfgIOxLrZzyg==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.11-beta-23225.nupkg", + "System.Runtime.Extensions.4.0.11-beta-23225.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0.nupkg", + "System.Runtime.Handles.4.0.0.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.21-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "hVsdPKJ4xS0LZNBMnggMkdYTDbD5xiHbWNTUXKSEfP27XES8GmJH91885cR9m+mu+vdN2VGVVaxRVOY5jY0uQA==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.21-beta-23225.nupkg", + "System.Runtime.InteropServices.4.0.21-beta-23225.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Runtime.Numerics.xml", + "ref/dotnet/es/System.Runtime.Numerics.xml", + "ref/dotnet/fr/System.Runtime.Numerics.xml", + "ref/dotnet/it/System.Runtime.Numerics.xml", + "ref/dotnet/ja/System.Runtime.Numerics.xml", + "ref/dotnet/ko/System.Runtime.Numerics.xml", + "ref/dotnet/ru/System.Runtime.Numerics.xml", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/dotnet/System.Runtime.Numerics.xml", + "ref/dotnet/zh-hans/System.Runtime.Numerics.xml", + "ref/dotnet/zh-hant/System.Runtime.Numerics.xml", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "System.Runtime.Numerics.4.0.0.nupkg", + "System.Runtime.Numerics.4.0.0.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.0.0-beta-23109": { + "type": "package", + "sha512": "vpu8yAOi2v24NuZ+Uvbka6DBpHAUkSQNlx3U6MeOGY0Xas3np5rPgyhEniyASDEelDfmHpxKylcnq7ginJBNOQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/es/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/fr/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/it/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/ja/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/ko/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/ru/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/System.Runtime.Serialization.Primitives.dll", + "ref/dotnet/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Runtime.Serialization.Primitives.4.0.0-beta-23109.nupkg", + "System.Runtime.Serialization.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Serialization.Primitives.nuspec" + ] + }, + "System.Runtime.Serialization.Xml/4.0.10-beta-23109": { + "type": "package", + "sha512": "1FrHeYgE66pSKlJyjvVdAnDUkpcPkUFR2ptAyzTGOIvZrL8G+2dhmGDMTUrXDzdUWWIa5WR7EhyOJ4MuUE9yzA==", + "files": [ + "lib/DNXCore50/System.Runtime.Serialization.Xml.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Serialization.Xml.dll", + "ref/dotnet/de/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/es/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/fr/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/it/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/ja/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/ko/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/ru/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/System.Runtime.Serialization.Xml.dll", + "ref/dotnet/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/zh-hans/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/zh-hant/System.Runtime.Serialization.Xml.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll", + "System.Runtime.Serialization.Xml.4.0.10-beta-23109.nupkg", + "System.Runtime.Serialization.Xml.4.0.10-beta-23109.nupkg.sha512", + "System.Runtime.Serialization.Xml.nuspec" + ] + }, + "System.Security.Cryptography.Algorithms/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "BvUX0qHC9DKP6kjhS6EvHFKSXiiTxPlNvni44x+QAKWsBPWZQLUJVNyiORdRZEqg1zKKV4UI3fo0WTgBIHAPhw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Algorithms.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Security.Cryptography.Algorithms.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.Algorithms.4.0.0-beta-23225.nupkg", + "System.Security.Cryptography.Algorithms.4.0.0-beta-23225.nupkg.sha512", + "System.Security.Cryptography.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "0DJq6Ju6Bo77cMRi8S94uNhkUtpRG6OKUA7EL7qR+Vls31eMtHzG7b8AumxvUDn2dDZLAOyTnIK9Dr+/O5gJFw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Csp.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Security.Cryptography.Csp.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.Csp.4.0.0-beta-23225.nupkg", + "System.Security.Cryptography.Csp.4.0.0-beta-23225.nupkg.sha512", + "System.Security.Cryptography.Csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "enH7FuDRTkGo8SN2uZRs3y54zPC80WMtFpmeBA3/lD6FfSz07B7Pm2fihm0vPSxKCkv5szj/WivwpxS1LqN9LQ==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.Encoding.4.0.0-beta-23225.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23225.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "+d/qgU+N70qzg5oE5x/7NC4Y6LPwGVFbcQRl4MggXJrjWtO/dbybLTpMr3hj07nl17Fj7GxGjpwRZaIGnpux/w==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Security.Cryptography.Primitives.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.Primitives.4.0.0-beta-23225.nupkg", + "System.Security.Cryptography.Primitives.4.0.0-beta-23225.nupkg.sha512", + "System.Security.Cryptography.Primitives.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "SsMAR1PZq3JfGX8IsSdK2sc6pxRp0u/m5EPqo6y5j6Z08hEWsD/U9keQhSKBEG/4Ny1RyQ7yB7xMgDuB/MPd4Q==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23225.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23225.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Spatial/5.6.4": { + "type": "package", + "sha512": "BoXUQ0mHyeAbkR3qlhwXqUFxzJ7rZuFOrvFM/jZRk+S6JLI2JxXRKby6bxuWbmwYv2o/eRPQPbAOvEk5hB2Gmg==", + "files": [ + "lib/net40/de/System.Spatial.resources.dll", + "lib/net40/es/System.Spatial.resources.dll", + "lib/net40/fr/System.Spatial.resources.dll", + "lib/net40/it/System.Spatial.resources.dll", + "lib/net40/ja/System.Spatial.resources.dll", + "lib/net40/ko/System.Spatial.resources.dll", + "lib/net40/ru/System.Spatial.resources.dll", + "lib/net40/System.Spatial.dll", + "lib/net40/System.Spatial.xml", + "lib/net40/zh-Hans/System.Spatial.resources.dll", + "lib/net40/zh-Hant/System.Spatial.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/de/System.Spatial.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/es/System.Spatial.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/fr/System.Spatial.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/it/System.Spatial.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/ja/System.Spatial.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/ko/System.Spatial.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/ru/System.Spatial.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/System.Spatial.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/System.Spatial.xml", + "lib/portable-net40+sl5+wp8+win8+wpa/zh-Hans/System.Spatial.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/zh-Hant/System.Spatial.resources.dll", + "lib/portable-net45+wp8+win8+wpa/de/System.Spatial.resources.dll", + "lib/portable-net45+wp8+win8+wpa/es/System.Spatial.resources.dll", + "lib/portable-net45+wp8+win8+wpa/fr/System.Spatial.resources.dll", + "lib/portable-net45+wp8+win8+wpa/it/System.Spatial.resources.dll", + "lib/portable-net45+wp8+win8+wpa/ja/System.Spatial.resources.dll", + "lib/portable-net45+wp8+win8+wpa/ko/System.Spatial.resources.dll", + "lib/portable-net45+wp8+win8+wpa/ru/System.Spatial.resources.dll", + "lib/portable-net45+wp8+win8+wpa/System.Spatial.dll", + "lib/portable-net45+wp8+win8+wpa/System.Spatial.xml", + "lib/portable-net45+wp8+win8+wpa/zh-Hans/System.Spatial.resources.dll", + "lib/portable-net45+wp8+win8+wpa/zh-Hant/System.Spatial.resources.dll", + "lib/sl4/de/System.Spatial.resources.dll", + "lib/sl4/es/System.Spatial.resources.dll", + "lib/sl4/fr/System.Spatial.resources.dll", + "lib/sl4/it/System.Spatial.resources.dll", + "lib/sl4/ja/System.Spatial.resources.dll", + "lib/sl4/ko/System.Spatial.resources.dll", + "lib/sl4/ru/System.Spatial.resources.dll", + "lib/sl4/System.Spatial.dll", + "lib/sl4/System.Spatial.xml", + "lib/sl4/zh-Hans/System.Spatial.resources.dll", + "lib/sl4/zh-Hant/System.Spatial.resources.dll", + "System.Spatial.5.6.4.nupkg", + "System.Spatial.5.6.4.nupkg.sha512", + "System.Spatial.nuspec" + ] + }, + "System.Text.Encoding/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "Eq4Fw6/CIoNdQ9Kb4fP2dqwF6fq8oY8M4pCoYG1VYENEevYSFMpvtJG58IbtNoq2ojR8vucv4HtKiMI3rQdRzg==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Text.Encoding.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.11-beta-23225.nupkg", + "System.Text.Encoding.4.0.11-beta-23225.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "/AYqaPQmD6Sm3sFQ4cffQYaw12Konredul2cdu9GX0TQgnSwG67DzMD7MAd7u2cNFwmpGDstXnG1EgzQw7cIRQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.11-beta-23225.nupkg", + "System.Text.Encoding.Extensions.4.0.11-beta-23225.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "Wkrt+Fa6JjzRACz7Dgaqd3wdDhZ1giI8M9ISBaVayKXK1D82dCdR+B5ttl4oP+XoH8/kOJvrYxFqahANXeiOlA==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Text.RegularExpressions.4.0.11-beta-23225.nupkg", + "System.Text.RegularExpressions.4.0.11-beta-23225.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "SixT7aIE7gXBZ260KRaxJvIG1vGGO59pzw7MVHMy0RkgDwBel+EgIMdQsEAfVBot9OVnO6GlI/ezFhxFvpCRTQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Threading.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Threading.4.0.11-beta-23409.nupkg", + "System.Threading.4.0.11-beta-23409.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/de/System.Threading.Overlapped.xml", + "ref/dotnet/es/System.Threading.Overlapped.xml", + "ref/dotnet/fr/System.Threading.Overlapped.xml", + "ref/dotnet/it/System.Threading.Overlapped.xml", + "ref/dotnet/ja/System.Threading.Overlapped.xml", + "ref/dotnet/ko/System.Threading.Overlapped.xml", + "ref/dotnet/ru/System.Threading.Overlapped.xml", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0.nupkg", + "System.Threading.Overlapped.4.0.0.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "PhdzC4vUeWMDoroEAKXwGq5uymvEEPa7Zx+qCgO/Lp8YGvK1hTDWepGDsKtdvJH0pCR/gmjzwAMbkwUN4GvYUw==", + "files": [ + "lib/DNXCore50/de/System.Threading.Tasks.xml", + "lib/DNXCore50/es/System.Threading.Tasks.xml", + "lib/DNXCore50/fr/System.Threading.Tasks.xml", + "lib/DNXCore50/it/System.Threading.Tasks.xml", + "lib/DNXCore50/ja/System.Threading.Tasks.xml", + "lib/DNXCore50/ko/System.Threading.Tasks.xml", + "lib/DNXCore50/ru/System.Threading.Tasks.xml", + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/DNXCore50/System.Threading.Tasks.xml", + "lib/DNXCore50/zh-hans/System.Threading.Tasks.xml", + "lib/DNXCore50/zh-hant/System.Threading.Tasks.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/de/System.Threading.Tasks.xml", + "lib/netcore50/es/System.Threading.Tasks.xml", + "lib/netcore50/fr/System.Threading.Tasks.xml", + "lib/netcore50/it/System.Threading.Tasks.xml", + "lib/netcore50/ja/System.Threading.Tasks.xml", + "lib/netcore50/ko/System.Threading.Tasks.xml", + "lib/netcore50/ru/System.Threading.Tasks.xml", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/netcore50/System.Threading.Tasks.xml", + "lib/netcore50/zh-hans/System.Threading.Tasks.xml", + "lib/netcore50/zh-hant/System.Threading.Tasks.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/de/System.Threading.Tasks.xml", + "runtimes/win8-aot/lib/netcore50/es/System.Threading.Tasks.xml", + "runtimes/win8-aot/lib/netcore50/fr/System.Threading.Tasks.xml", + "runtimes/win8-aot/lib/netcore50/it/System.Threading.Tasks.xml", + "runtimes/win8-aot/lib/netcore50/ja/System.Threading.Tasks.xml", + "runtimes/win8-aot/lib/netcore50/ko/System.Threading.Tasks.xml", + "runtimes/win8-aot/lib/netcore50/ru/System.Threading.Tasks.xml", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.xml", + "runtimes/win8-aot/lib/netcore50/zh-hans/System.Threading.Tasks.xml", + "runtimes/win8-aot/lib/netcore50/zh-hant/System.Threading.Tasks.xml", + "System.Threading.Tasks.4.0.11-beta-23409.nupkg", + "System.Threading.Tasks.4.0.11-beta-23409.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "ZRcBjGWWC/KBJkobKqs2VLh6WBm1hMwQnY502FYl/2lR2XexzIzkWw1vC5bhNKVJ8jMEK82nSVt775q0i8k1rg==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.Thread.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Threading.Thread.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.Thread.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Threading.Thread.4.0.0-beta-23225.nupkg", + "System.Threading.Thread.4.0.0-beta-23225.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "PhzoJxm1zWxvCg96n3Ok1rDIQbWmi37bhnFgY1GJoGp5s/0RGDOFI3T6uWQX27NHMy1L2uU5f5x5HmuzRjLyMQ==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.ThreadPool.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.ThreadPool.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Threading.ThreadPool.4.0.10-beta-23225.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23225.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "yvM2+vU/AQ1n+y317/ZUd0WEDSQ687c5pbcc4vc2bm14HG49j0rFem91qok5UEyh1Vnah0nF/NiIydhr9cTmNg==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Threading.Timer.dll", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/win81/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.1-beta-23225.nupkg", + "System.Threading.Timer.4.0.1-beta-23225.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "ObCcU3hOf8Cbn3BwzUjxbaqa+UnSVN6bxf5l9A9iVrzuzbYUkVkjB+/JN/O5lmwpYwiKzYO5fv91O53PZ0hgXw==", + "files": [ + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Xml.ReaderWriter.4.0.11-beta-23225.nupkg", + "System.Xml.ReaderWriter.4.0.11-beta-23225.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "TQhCw2C05bU1UDLZuL9TK8GUxbeYUgbOWO+WEICz1otfVNPcUsDN9o0lEoqxjiZP4K4tv+eK+gQXwOlkHg2JKQ==", + "files": [ + "lib/dotnet/System.Xml.XDocument.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Xml.XDocument.4.0.11-beta-23225.nupkg", + "System.Xml.XDocument.4.0.11-beta-23225.nupkg.sha512", + "System.Xml.XDocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.0.0-beta-23109": { + "type": "package", + "sha512": "jImyL5OqwD4oHtUGEwHK1P9RIiVrsYiyMFQEcyUJP6cxxR6Jfc5TPmYBbzfS2IIqsKwp4gNjrAOXDrf7InfjuA==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Xml.XmlSerializer.xml", + "ref/dotnet/es/System.Xml.XmlSerializer.xml", + "ref/dotnet/fr/System.Xml.XmlSerializer.xml", + "ref/dotnet/it/System.Xml.XmlSerializer.xml", + "ref/dotnet/ja/System.Xml.XmlSerializer.xml", + "ref/dotnet/ko/System.Xml.XmlSerializer.xml", + "ref/dotnet/ru/System.Xml.XmlSerializer.xml", + "ref/dotnet/System.Xml.XmlSerializer.dll", + "ref/dotnet/System.Xml.XmlSerializer.xml", + "ref/dotnet/zh-hans/System.Xml.XmlSerializer.xml", + "ref/dotnet/zh-hant/System.Xml.XmlSerializer.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Xml.XmlSerializer.xml", + "ref/netcore50/es/System.Xml.XmlSerializer.xml", + "ref/netcore50/fr/System.Xml.XmlSerializer.xml", + "ref/netcore50/it/System.Xml.XmlSerializer.xml", + "ref/netcore50/ja/System.Xml.XmlSerializer.xml", + "ref/netcore50/ko/System.Xml.XmlSerializer.xml", + "ref/netcore50/ru/System.Xml.XmlSerializer.xml", + "ref/netcore50/System.Xml.XmlSerializer.dll", + "ref/netcore50/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Xml.XmlSerializer.4.0.0-beta-23109.nupkg", + "System.Xml.XmlSerializer.4.0.0-beta-23109.nupkg.sha512", + "System.Xml.XmlSerializer.nuspec" + ] + }, + "WindowsAzure.Storage/6.1.1-preview": { + "type": "package", + "sha512": "mDSDuW0GcVYsV1jILYz2nvMX0ADNXUBL6vvy5xKbcHGlKY3lZWhA9AuD/UA2dMoAnto611s5j2XPWWXGmB8N8g==", + "files": [ + "lib/dnx451/Microsoft.WindowsAzure.Storage.dll", + "lib/dnx451/Microsoft.WindowsAzure.Storage.pdb", + "lib/dnx451/Microsoft.WindowsAzure.Storage.xml", + "lib/dnxcore50/Microsoft.WindowsAzure.Storage.dll", + "lib/dnxcore50/Microsoft.WindowsAzure.Storage.pdb", + "lib/dnxcore50/Microsoft.WindowsAzure.Storage.xml", + "lib/net40/Microsoft.WindowsAzure.Storage.dll", + "lib/net40/Microsoft.WindowsAzure.Storage.pdb", + "lib/net40/Microsoft.WindowsAzure.Storage.xml", + "lib/portable-net45+netcore45+wpa81+MonoAndroid1+MonoTouch1/Microsoft.WindowsAzure.Storage.dll", + "lib/portable-net45+netcore45+wpa81+MonoAndroid1+MonoTouch1/Microsoft.WindowsAzure.Storage.pdb", + "lib/win8/Microsoft.WindowsAzure.Storage.dll", + "lib/win8/Microsoft.WindowsAzure.Storage.pdb", + "lib/wp8/Microsoft.WindowsAzure.Storage.dll", + "lib/wp8/Microsoft.WindowsAzure.Storage.pdb", + "lib/wpa/Microsoft.WindowsAzure.Storage.dll", + "lib/wpa/Microsoft.WindowsAzure.Storage.pdb", + "WindowsAzure.Storage.6.1.1-preview.nupkg", + "WindowsAzure.Storage.6.1.1-preview.nupkg.sha512", + "WindowsAzure.Storage.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "WindowsAzure.Storage >= 6.1.1-preview", + "Microsoft.Framework.Caching.Abstractions >= 1.0.0-beta8", + "Microsoft.Framework.DependencyInjection >= 1.0.0-beta8" + ], + ".NETFramework,Version=v4.5": [], + "DNXCore,Version=v5.0": [ + "Microsoft.CSharp >= 4.0.1-beta-23409", + "System.Collections >= 4.0.11-beta-23409", + "System.Linq >= 4.0.1-beta-23409", + "System.Runtime >= 4.0.21-beta-23409", + "System.Threading >= 4.0.11-beta-23409" + ] + } +} \ No newline at end of file diff --git a/src/AzureTableStorageCacheSample/.bowerrc b/src/AzureTableStorageCacheSample/.bowerrc new file mode 100644 index 0000000..6406626 --- /dev/null +++ b/src/AzureTableStorageCacheSample/.bowerrc @@ -0,0 +1,3 @@ +{ + "directory": "wwwroot/lib" +} diff --git a/src/AzureTableStorageCacheSample/AzureTableStorageCacheSample.xproj b/src/AzureTableStorageCacheSample/AzureTableStorageCacheSample.xproj new file mode 100644 index 0000000..58216ae --- /dev/null +++ b/src/AzureTableStorageCacheSample/AzureTableStorageCacheSample.xproj @@ -0,0 +1,19 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + d2c11e75-bac6-4619-930e-cca94474365e + AzureTableStorageCacheSample + ..\..\artifacts\obj\$(MSBuildProjectName) + ..\..\artifacts\bin\$(MSBuildProjectName)\ + + + 2.0 + 50593 + + + \ No newline at end of file diff --git a/src/AzureTableStorageCacheSample/Controllers/HomeController.cs b/src/AzureTableStorageCacheSample/Controllers/HomeController.cs new file mode 100644 index 0000000..2870b9c --- /dev/null +++ b/src/AzureTableStorageCacheSample/Controllers/HomeController.cs @@ -0,0 +1,51 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Microsoft.AspNet.Mvc; +using Microsoft.Framework.Caching.Distributed; + +namespace AzureTableStorageCache.Sample.Controllers +{ + public class HomeController : Controller + { + private readonly IDistributedCache cacheMechanism; + + public HomeController(IDistributedCache cacheMechanism) + { + this.cacheMechanism = cacheMechanism; + } + public async Task Index() + { + var data = await cacheMechanism.GetAsync("awesomeRecord"); + var result = string.Empty; + if(data != null) + { + result = Encoding.UTF32.GetString(data); + } + return View(result); + + } + + public async Task AddCache() + { + cacheMechanism.SetAsync("awesomeRecord", Encoding.UTF32.GetBytes("Im Awesome")); + ViewData["Message"] = "Your application description page."; + + return RedirectToAction("Index"); + } + + public IActionResult Contact() + { + ViewData["Message"] = "Your contact page."; + + return View(); + } + + public IActionResult Error() + { + return View("~/Views/Shared/Error.cshtml"); + } + } +} diff --git a/src/AzureTableStorageCacheSample/Project_Readme.html b/src/AzureTableStorageCacheSample/Project_Readme.html new file mode 100644 index 0000000..bc23184 --- /dev/null +++ b/src/AzureTableStorageCacheSample/Project_Readme.html @@ -0,0 +1,203 @@ + + + + + Welcome to ASP.NET 5 + + + + + + + + + + diff --git a/src/AzureTableStorageCacheSample/Properties/AssemblyInfo.cs b/src/AzureTableStorageCacheSample/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..b041abe --- /dev/null +++ b/src/AzureTableStorageCacheSample/Properties/AssemblyInfo.cs @@ -0,0 +1,23 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("AzureTableStorageCacheSample")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("AzureTableStorageCacheSample")] +[assembly: AssemblyCopyright("Copyright © 2015")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("d2c11e75-bac6-4619-930e-cca94474365e")] diff --git a/src/AzureTableStorageCacheSample/Startup.cs b/src/AzureTableStorageCacheSample/Startup.cs new file mode 100644 index 0000000..a48c534 --- /dev/null +++ b/src/AzureTableStorageCacheSample/Startup.cs @@ -0,0 +1,80 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNet.Builder; +using Microsoft.AspNet.Hosting; +using Microsoft.Dnx.Runtime; +using Microsoft.Framework.Configuration; +using Microsoft.Framework.DependencyInjection; +using Microsoft.Framework.Logging; + +namespace AzureTableStorageCacheSample +{ + public class Startup + { + public Startup(IHostingEnvironment env, IApplicationEnvironment appEnv) + { + // Setup configuration sources. + var builder = new ConfigurationBuilder() + .SetBasePath(appEnv.ApplicationBasePath) + .AddJsonFile("appsettings.json") + .AddEnvironmentVariables(); + Configuration = builder.Build(); + } + + public IConfigurationRoot Configuration { get; set; } + + // This method gets called by the runtime. + public void ConfigureServices(IServiceCollection services) + { + services.AddAzureTableStorageCache("!!!CONNECTIONSTRINGHERE!!!", "awesomeTable", "cachedDataKey"); + // Add MVC services to the services container. + services.AddMvc(); + + // Uncomment the following line to add Web API services which makes it easier to port Web API 2 controllers. + // You will also need to add the Microsoft.AspNet.Mvc.WebApiCompatShim package to the 'dependencies' section of project.json. + // services.AddWebApiConventions(); + } + + // Configure is called after ConfigureServices is called. + public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory) + { + loggerFactory.MinimumLevel = LogLevel.Information; + loggerFactory.AddConsole(); + loggerFactory.AddDebug(); + + // Configure the HTTP request pipeline. + + // Add the following to the request pipeline only in development environment. + if (env.IsDevelopment()) + { + app.UseBrowserLink(); + app.UseDeveloperExceptionPage(); + } + else + { + // Add Error handling middleware which catches all application specific errors and + // send the request to the following path or controller action. + app.UseExceptionHandler("/Home/Error"); + } + + // Add the platform handler to the request pipeline. + app.UseIISPlatformHandler(); + + // Add static files to the request pipeline. + app.UseStaticFiles(); + + // Add MVC to the request pipeline. + app.UseMvc(routes => + { + routes.MapRoute( + name: "default", + template: "{controller=Home}/{action=Index}/{id?}"); + + // Uncomment the following line to add a route for porting Web API 2 controllers. + // routes.MapWebApiRoute("DefaultApi", "api/{controller}/{id?}"); + }); + } + } +} diff --git a/src/AzureTableStorageCacheSample/Views/Home/Index.cshtml b/src/AzureTableStorageCacheSample/Views/Home/Index.cshtml new file mode 100644 index 0000000..fe6d9ba --- /dev/null +++ b/src/AzureTableStorageCacheSample/Views/Home/Index.cshtml @@ -0,0 +1,17 @@ +@model string +@{ + ViewData["Title"] = "Home Page"; +} + +
+ @if(string.IsNullOrWhiteSpace(Model)) + { + No data found + Add Item To Cache + + } + else + { + Cached Data: @Model + } +
\ No newline at end of file diff --git a/src/AzureTableStorageCacheSample/Views/Shared/Error.cshtml b/src/AzureTableStorageCacheSample/Views/Shared/Error.cshtml new file mode 100644 index 0000000..4852442 --- /dev/null +++ b/src/AzureTableStorageCacheSample/Views/Shared/Error.cshtml @@ -0,0 +1,6 @@ +@{ + ViewData["Title"] = "Error"; +} + +

Error.

+

An error occurred while processing your request.

diff --git a/src/AzureTableStorageCacheSample/Views/Shared/_Layout.cshtml b/src/AzureTableStorageCacheSample/Views/Shared/_Layout.cshtml new file mode 100644 index 0000000..5bf1afe --- /dev/null +++ b/src/AzureTableStorageCacheSample/Views/Shared/_Layout.cshtml @@ -0,0 +1,78 @@ + + + + + + @ViewData["Title"] - AzureTableStorageCacheSample + + + + + + + + + + + + + + +
+ @RenderBody() +
+
+

© 2015 - AzureTableStorageCacheSample

+
+
+ + + + + + + + + + + + + + + + + @RenderSection("scripts", required: false) + + diff --git a/src/AzureTableStorageCacheSample/Views/_ViewImports.cshtml b/src/AzureTableStorageCacheSample/Views/_ViewImports.cshtml new file mode 100644 index 0000000..aad13f4 --- /dev/null +++ b/src/AzureTableStorageCacheSample/Views/_ViewImports.cshtml @@ -0,0 +1,2 @@ +@using AzureTableStorageCacheSample +@addTagHelper "*, Microsoft.AspNet.Mvc.TagHelpers" diff --git a/src/AzureTableStorageCacheSample/Views/_ViewStart.cshtml b/src/AzureTableStorageCacheSample/Views/_ViewStart.cshtml new file mode 100644 index 0000000..a5f1004 --- /dev/null +++ b/src/AzureTableStorageCacheSample/Views/_ViewStart.cshtml @@ -0,0 +1,3 @@ +@{ + Layout = "_Layout"; +} diff --git a/src/AzureTableStorageCacheSample/appsettings.json b/src/AzureTableStorageCacheSample/appsettings.json new file mode 100644 index 0000000..f117788 --- /dev/null +++ b/src/AzureTableStorageCacheSample/appsettings.json @@ -0,0 +1 @@ +{} diff --git a/src/AzureTableStorageCacheSample/bower.json b/src/AzureTableStorageCacheSample/bower.json new file mode 100644 index 0000000..51002ed --- /dev/null +++ b/src/AzureTableStorageCacheSample/bower.json @@ -0,0 +1,12 @@ +{ + "name": "ASP.NET", + "private": true, + "dependencies": { + "bootstrap": "3.0.0", + "bootstrap-touch-carousel": "0.8.0", + "hammer.js": "2.0.4", + "jquery": "2.1.4", + "jquery-validation": "1.11.1", + "jquery-validation-unobtrusive": "3.2.2" + } +} diff --git a/src/AzureTableStorageCacheSample/gulpfile.js b/src/AzureTableStorageCacheSample/gulpfile.js new file mode 100644 index 0000000..684c5ac --- /dev/null +++ b/src/AzureTableStorageCacheSample/gulpfile.js @@ -0,0 +1,45 @@ +/// + +var gulp = require("gulp"), + rimraf = require("rimraf"), + concat = require("gulp-concat"), + cssmin = require("gulp-cssmin"), + uglify = require("gulp-uglify"), + project = require("./project.json"); + +var paths = { + webroot: "./" + project.webroot + "/" +}; + +paths.js = paths.webroot + "js/**/*.js"; +paths.minJs = paths.webroot + "js/**/*.min.js"; +paths.css = paths.webroot + "css/**/*.css"; +paths.minCss = paths.webroot + "css/**/*.min.css"; +paths.concatJsDest = paths.webroot + "js/site.min.js"; +paths.concatCssDest = paths.webroot + "css/site.min.css"; + +gulp.task("clean:js", function (cb) { + rimraf(paths.concatJsDest, cb); +}); + +gulp.task("clean:css", function (cb) { + rimraf(paths.concatCssDest, cb); +}); + +gulp.task("clean", ["clean:js", "clean:css"]); + +gulp.task("min:js", function () { + gulp.src([paths.js, "!" + paths.minJs], { base: "." }) + .pipe(concat(paths.concatJsDest)) + .pipe(uglify()) + .pipe(gulp.dest(".")); +}); + +gulp.task("min:css", function () { + gulp.src([paths.css, "!" + paths.minCss]) + .pipe(concat(paths.concatCssDest)) + .pipe(cssmin()) + .pipe(gulp.dest(".")); +}); + +gulp.task("min", ["min:js", "min:css"]); diff --git a/src/AzureTableStorageCacheSample/package.json b/src/AzureTableStorageCacheSample/package.json new file mode 100644 index 0000000..d4d71a9 --- /dev/null +++ b/src/AzureTableStorageCacheSample/package.json @@ -0,0 +1,11 @@ +{ + "name": "ASP.NET", + "version": "0.0.0", + "devDependencies": { + "gulp": "3.8.11", + "gulp-concat": "2.5.2", + "gulp-cssmin": "0.1.7", + "gulp-uglify": "1.2.0", + "rimraf": "2.2.8" + } +} diff --git a/src/AzureTableStorageCacheSample/project.json b/src/AzureTableStorageCacheSample/project.json new file mode 100644 index 0000000..8b61cc3 --- /dev/null +++ b/src/AzureTableStorageCacheSample/project.json @@ -0,0 +1,41 @@ +{ + "webroot": "wwwroot", + "version": "1.0.0-*", + + "dependencies": { + "Microsoft.AspNet.Diagnostics": "1.0.0-beta8", + "Microsoft.AspNet.IISPlatformHandler": "1.0.0-beta8", + "Microsoft.AspNet.Mvc": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.TagHelpers": "6.0.0-beta8", + "Microsoft.AspNet.Server.Kestrel": "1.0.0-beta8", + "Microsoft.AspNet.StaticFiles": "1.0.0-beta8", + "Microsoft.AspNet.Tooling.Razor": "1.0.0-beta8", + "Microsoft.Framework.Configuration.Json": "1.0.0-beta8", + "Microsoft.Framework.Logging": "1.0.0-beta8", + "Microsoft.Framework.Logging.Console": "1.0.0-beta8", + "Microsoft.Framework.Logging.Debug": "1.0.0-beta8", + "Microsoft.VisualStudio.Web.BrowserLink.Loader": "14.0.0-beta8", + "AzureTableStorageCache": "" + }, + + "commands": { + "web": "Microsoft.AspNet.Server.Kestrel" + }, + + "frameworks": { + "dnx451": { }, + "dnxcore50": { } + }, + + "exclude": [ + "wwwroot", + "node_modules" + ], + "publishExclude": [ + "**.user", + "**.vspscc" + ], + "scripts": { + "prepublish": [ "npm install", "bower install", "gulp clean", "gulp min" ] + } +} diff --git a/src/AzureTableStorageCacheSample/project.lock.json b/src/AzureTableStorageCacheSample/project.lock.json new file mode 100644 index 0000000..3696235 --- /dev/null +++ b/src/AzureTableStorageCacheSample/project.lock.json @@ -0,0 +1,18002 @@ +{ + "locked": false, + "version": 2, + "targets": { + "DNX,Version=v4.5.1": { + "AzureTableStorageCache/1.0.0": { + "type": "project", + "framework": ".NETFramework,Version=v4.5", + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta8", + "WindowsAzure.Storage": "6.1.1-preview" + } + }, + "Microsoft.AspNet.Antiforgery/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta8", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Antiforgery.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Antiforgery.dll": {} + } + }, + "Microsoft.AspNet.Authorization/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8" + }, + "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/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta8", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Diagnostics.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta8", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta8", + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "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.FileProviders.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta8", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Http": "1.0.0-beta8", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Configuration": "1.0.0-beta8", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta8", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta8", + "Microsoft.Framework.Configuration.Json": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta8", + "Microsoft.Framework.Logging": "1.0.0-beta8", + "Newtonsoft.Json": "6.0.6", + "System.Diagnostics.Tracing.Telemetry": "4.0.0-beta-23409" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Runtime" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta8", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8" + }, + "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.Html.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Html.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Html.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta8", + "Microsoft.Net.Http.Headers": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8", + "Microsoft.Net.Http.Headers": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8" + }, + "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.IISPlatformHandler/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.IISPlatformHandler.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.IISPlatformHandler.dll": {} + } + }, + "Microsoft.AspNet.JsonPatch/1.0.0-beta8": { + "type": "package", + "dependencies": { + "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.Localization/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Framework.Globalization.CultureInfoCache": "1.0.0-beta8", + "Microsoft.Framework.Localization.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Localization.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Localization.dll": {} + } + }, + "Microsoft.AspNet.Mvc/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.ApiExplorer": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Cors": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.DataAnnotations": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Formatters.Json": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Localization": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Razor": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.ViewFeatures": "6.0.0-beta8", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Routing": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Authorization": "1.0.0-beta8", + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Mvc.Abstractions": "6.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "System.Diagnostics.Tracing.Telemetry": "4.0.0-beta-23409" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Runtime" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Mvc.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Mvc.Core.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Cors/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Cors.Core": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8", + "Microsoft.Framework.Localization": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.JsonPatch": "1.0.0-beta8", + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8", + "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.Localization/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Localization": "1.0.0-beta8", + "Microsoft.AspNet.Mvc.Razor": "6.0.0-beta8", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta8", + "Microsoft.Framework.Localization": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Mvc.Localization.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Mvc.Localization.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Razor/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.Razor.Host": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.ViewFeatures": "6.0.0-beta8", + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces": "1.0.0-beta8", + "Microsoft.AspNet.Razor.Runtime.Precompilation": "4.0.0-beta8", + "Microsoft.Dnx.Compilation.CSharp.Abstractions": "1.0.0-beta8", + "Microsoft.Dnx.Compilation.CSharp.Common": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta8", + "Microsoft.AspNet.Razor.Runtime": "4.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta8" + }, + "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.TagHelpers/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.Razor": "6.0.0-beta8", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta8", + "Microsoft.Framework.FileSystemGlobbing": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Mvc.TagHelpers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Mvc.TagHelpers.dll": {} + } + }, + "Microsoft.AspNet.Mvc.ViewFeatures/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Antiforgery": "1.0.0-beta8", + "Microsoft.AspNet.Diagnostics.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Html.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.DataAnnotations": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Formatters.Json": "6.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "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-beta8": { + "type": "package", + "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-beta8": { + "type": "package", + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Html.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Razor": "4.0.0-beta8" + }, + "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.Razor.Runtime.Precompilation/4.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Razor.Runtime": "4.0.0-beta8", + "Microsoft.Dnx.Compilation.CSharp.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Runtime" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Razor.Runtime.Precompilation.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Razor.Runtime.Precompilation.dll": {} + } + }, + "Microsoft.AspNet.Routing/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Routing.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Routing.dll": {} + } + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "System.Numerics.Vectors": "4.1.1-beta-23409" + }, + "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.StaticFiles/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.StaticFiles.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.StaticFiles.dll": {} + } + }, + "Microsoft.AspNet.Tooling.Razor/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Razor.Runtime": "4.0.0-beta8", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Tooling.Razor.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Tooling.Razor.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8" + }, + "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": { + "type": "package", + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.1.0-beta1-20150928-02": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "1.0.0", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.1.0-alpha-00014" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.1.0-beta1-20150928-02": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.1.0-beta1-20150928-02]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Data.Edm/5.6.4": { + "type": "package", + "compile": { + "lib/net40/Microsoft.Data.Edm.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.Data.Edm.dll": {} + }, + "resource": { + "lib/net40/de/Microsoft.Data.Edm.resources.dll": { + "locale": "de" + }, + "lib/net40/es/Microsoft.Data.Edm.resources.dll": { + "locale": "es" + }, + "lib/net40/fr/Microsoft.Data.Edm.resources.dll": { + "locale": "fr" + }, + "lib/net40/it/Microsoft.Data.Edm.resources.dll": { + "locale": "it" + }, + "lib/net40/ja/Microsoft.Data.Edm.resources.dll": { + "locale": "ja" + }, + "lib/net40/ko/Microsoft.Data.Edm.resources.dll": { + "locale": "ko" + }, + "lib/net40/ru/Microsoft.Data.Edm.resources.dll": { + "locale": "ru" + }, + "lib/net40/zh-Hans/Microsoft.Data.Edm.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net40/zh-Hant/Microsoft.Data.Edm.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.OData/5.6.4": { + "type": "package", + "dependencies": { + "Microsoft.Data.Edm": "[5.6.4]", + "System.Spatial": "[5.6.4]" + }, + "compile": { + "lib/net40/Microsoft.Data.OData.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.Data.OData.dll": {} + }, + "resource": { + "lib/net40/de/Microsoft.Data.OData.resources.dll": { + "locale": "de" + }, + "lib/net40/es/Microsoft.Data.OData.resources.dll": { + "locale": "es" + }, + "lib/net40/fr/Microsoft.Data.OData.resources.dll": { + "locale": "fr" + }, + "lib/net40/it/Microsoft.Data.OData.resources.dll": { + "locale": "it" + }, + "lib/net40/ja/Microsoft.Data.OData.resources.dll": { + "locale": "ja" + }, + "lib/net40/ko/Microsoft.Data.OData.resources.dll": { + "locale": "ko" + }, + "lib/net40/ru/Microsoft.Data.OData.resources.dll": { + "locale": "ru" + }, + "lib/net40/zh-Hans/Microsoft.Data.OData.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net40/zh-Hant/Microsoft.Data.OData.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.Services.Client/5.6.4": { + "type": "package", + "dependencies": { + "Microsoft.Data.OData": "[5.6.4]" + }, + "compile": { + "lib/net40/Microsoft.Data.Services.Client.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.Data.Services.Client.dll": {} + }, + "resource": { + "lib/net40/de/Microsoft.Data.Services.Client.resources.dll": { + "locale": "de" + }, + "lib/net40/es/Microsoft.Data.Services.Client.resources.dll": { + "locale": "es" + }, + "lib/net40/fr/Microsoft.Data.Services.Client.resources.dll": { + "locale": "fr" + }, + "lib/net40/it/Microsoft.Data.Services.Client.resources.dll": { + "locale": "it" + }, + "lib/net40/ja/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ja" + }, + "lib/net40/ko/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ko" + }, + "lib/net40/ru/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ru" + }, + "lib/net40/zh-Hans/Microsoft.Data.Services.Client.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net40/zh-Hant/Microsoft.Data.Services.Client.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Dnx.Compilation.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Dnx.Compilation.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Dnx.Compilation.Abstractions.dll": {} + } + }, + "Microsoft.Dnx.Compilation.CSharp.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.1.0-beta1-20150928-02", + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Dnx.Compilation.CSharp.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Dnx.Compilation.CSharp.Abstractions.dll": {} + } + }, + "Microsoft.Dnx.Compilation.CSharp.Common/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.1.0-beta1-20150928-02", + "Microsoft.Dnx.Compilation.CSharp.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "System.Runtime" + ], + "compile": { + "lib/dnx451/Microsoft.Dnx.Compilation.CSharp.Common.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Dnx.Compilation.CSharp.Common.dll": {} + } + }, + "Microsoft.Dnx.Runtime.Abstractions/1.0.0-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Dnx.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Dnx.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8" + }, + "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.FileExtensions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Json/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8", + "Microsoft.Framework.Configuration.FileExtensions": "1.0.0-beta8", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Json.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Json.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.FileSystemGlobbing/1.0.0-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.FileSystemGlobbing.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.FileSystemGlobbing.dll": {} + } + }, + "Microsoft.Framework.Globalization.CultureInfoCache/1.0.0-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Globalization.CultureInfoCache.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Globalization.CultureInfoCache.dll": {} + } + }, + "Microsoft.Framework.Localization/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Localization.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Localization.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Localization.dll": {} + } + }, + "Microsoft.Framework.Localization.Abstractions/1.0.0-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Localization.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Localization.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Console/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8" + }, + "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.Logging.Debug/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Debug.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Debug.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Primitives/1.0.0-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Primitives.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Primitives.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.VisualStudio.Web.BrowserLink.Loader/14.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta8", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces": "1.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {} + } + }, + "Newtonsoft.Json/6.0.8": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Tracing.Telemetry/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet/System.Diagnostics.Tracing.Telemetry.dll": {} + }, + "runtime": { + "lib/dotnet/System.Diagnostics.Tracing.Telemetry.dll": {} + } + }, + "System.Globalization/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Numerics.Vectors/4.1.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/dotnet/System.Numerics.Vectors.dll": {} + } + }, + "System.Reflection.Metadata/1.1.0-alpha-00014": { + "type": "package", + "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.Resources.ResourceManager/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Spatial/5.6.4": { + "type": "package", + "compile": { + "lib/net40/System.Spatial.dll": {} + }, + "runtime": { + "lib/net40/System.Spatial.dll": {} + }, + "resource": { + "lib/net40/de/System.Spatial.resources.dll": { + "locale": "de" + }, + "lib/net40/es/System.Spatial.resources.dll": { + "locale": "es" + }, + "lib/net40/fr/System.Spatial.resources.dll": { + "locale": "fr" + }, + "lib/net40/it/System.Spatial.resources.dll": { + "locale": "it" + }, + "lib/net40/ja/System.Spatial.resources.dll": { + "locale": "ja" + }, + "lib/net40/ko/System.Spatial.resources.dll": { + "locale": "ko" + }, + "lib/net40/ru/System.Spatial.resources.dll": { + "locale": "ru" + }, + "lib/net40/zh-Hans/System.Spatial.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net40/zh-Hant/System.Spatial.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Threading/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "WindowsAzure.Storage/6.1.1-preview": { + "type": "package", + "dependencies": { + "Microsoft.Data.OData": "5.6.4", + "Microsoft.Data.Services.Client": "5.6.4", + "Newtonsoft.Json": "6.0.8", + "System.Spatial": "5.6.4" + }, + "frameworkAssemblies": [ + "System.Data", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.WindowsAzure.Storage.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.WindowsAzure.Storage.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "AzureTableStorageCache/1.0.0": { + "type": "project", + "framework": "DNXCore,Version=v5.0", + "dependencies": { + "Microsoft.CSharp": "4.0.1-beta-23409", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409", + "System.Threading": "4.0.11-beta-23409", + "WindowsAzure.Storage": "6.1.1-preview" + } + }, + "Microsoft.AspNet.Antiforgery/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta8", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Antiforgery.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Antiforgery.dll": {} + } + }, + "Microsoft.AspNet.Authorization/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authorization.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authorization.dll": {} + } + }, + "Microsoft.AspNet.Cors.Core/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Cors.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Cors.Core.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.Runtime.Handles": "4.0.1-beta-23409", + "System.Runtime.InteropServices": "4.0.21-beta-23409", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta8", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "Microsoft.Win32.Registry": "4.0.0-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Reflection.Extensions": "4.0.1-beta-23409", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Security.Claims": "4.0.1-beta-23409", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23409", + "System.Security.Principal.Windows": "4.0.0-beta-23409", + "System.Xml.XDocument": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "System.ComponentModel": "4.0.1-beta-23409", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23409", + "System.Text.Encoding.Extensions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Diagnostics/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Diagnostics.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta8", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta8", + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8", + "System.Reflection.Extensions": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Diagnostics.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Diagnostics.dll": {} + } + }, + "Microsoft.AspNet.Diagnostics.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Diagnostics.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Diagnostics.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8", + "System.IO": "4.0.11-beta-23409", + "System.Resources.ResourceManager": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.IO.FileSystem": "4.0.1-beta-23409", + "System.IO.FileSystem.Primitives": "4.0.1-beta-23409", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Text.RegularExpressions": "4.0.11-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta8", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Http": "1.0.0-beta8", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Configuration": "1.0.0-beta8", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta8", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta8", + "Microsoft.Framework.Configuration.Json": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta8", + "Microsoft.Framework.Logging": "1.0.0-beta8", + "Newtonsoft.Json": "6.0.6", + "System.Console": "4.0.0-beta-23409", + "System.Diagnostics.StackTrace": "4.0.1-beta-23409", + "System.Diagnostics.Tracing.Telemetry": "4.0.0-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta8", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Html.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8", + "System.Resources.ResourceManager": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Html.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Html.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta8", + "Microsoft.Net.Http.Headers": "1.0.0-beta8", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.Text.Encoding": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Diagnostics.Tools": "4.0.1-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Globalization.Extensions": "4.0.1-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Linq.Expressions": "4.0.11-beta-23409", + "System.Net.Primitives": "4.0.11-beta-23409", + "System.Net.WebSockets": "4.0.0-beta-23409", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409", + "System.Runtime.InteropServices": "4.0.21-beta-23409", + "System.Security.Claims": "4.0.1-beta-23409", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23409", + "System.Security.Principal": "4.0.1-beta-23409", + "System.Threading.Tasks": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8", + "Microsoft.Net.Http.Headers": "1.0.0-beta8", + "System.IO.FileSystem": "4.0.1-beta-23409", + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Net.Primitives": "4.0.11-beta-23409", + "System.Net.WebSockets": "4.0.0-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Security.Claims": "4.0.1-beta-23409", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23409", + "System.Security.Principal": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.IISPlatformHandler/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "System.Security.Principal.Windows": "4.0.0-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.IISPlatformHandler.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.IISPlatformHandler.dll": {} + } + }, + "Microsoft.AspNet.JsonPatch/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1-beta-23409", + "Newtonsoft.Json": "6.0.6", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.ComponentModel.TypeConverter": "4.0.1-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Reflection.Extensions": "4.0.1-beta-23409", + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Text.Encoding.Extensions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.JsonPatch.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.JsonPatch.dll": {} + } + }, + "Microsoft.AspNet.Localization/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.CSharp": "4.0.1-beta-23409", + "Microsoft.Framework.Globalization.CultureInfoCache": "1.0.0-beta8", + "Microsoft.Framework.Localization.Abstractions": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Localization.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Localization.dll": {} + } + }, + "Microsoft.AspNet.Mvc/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.ApiExplorer": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Cors": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.DataAnnotations": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Formatters.Json": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Localization": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Razor": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.ViewFeatures": "6.0.0-beta8", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Abstractions/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Routing": "1.0.0-beta8", + "Microsoft.CSharp": "4.0.1-beta-23409", + "System.ComponentModel.TypeConverter": "4.0.1-beta-23409", + "System.Reflection.Extensions": "4.0.1-beta-23409", + "System.Text.Encoding.Extensions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Mvc.ApiExplorer/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.ApiExplorer.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.ApiExplorer.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Core/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Authorization": "1.0.0-beta8", + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Mvc.Abstractions": "6.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "System.Diagnostics.Tracing.Telemetry": "4.0.0-beta-23409", + "System.Text.Encoding": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Core.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Cors/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Cors.Core": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Cors.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Cors.dll": {} + } + }, + "Microsoft.AspNet.Mvc.DataAnnotations/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8", + "Microsoft.Framework.Localization": "1.0.0-beta8", + "System.ComponentModel.Annotations": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.DataAnnotations.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.DataAnnotations.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Formatters.Json/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.JsonPatch": "1.0.0-beta8", + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8", + "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.Localization/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Localization": "1.0.0-beta8", + "Microsoft.AspNet.Mvc.Razor": "6.0.0-beta8", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta8", + "Microsoft.Framework.Localization": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Localization.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Localization.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Razor/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.Razor.Host": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.ViewFeatures": "6.0.0-beta8", + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces": "1.0.0-beta8", + "Microsoft.AspNet.Razor.Runtime.Precompilation": "4.0.0-beta8", + "Microsoft.Dnx.Compilation.CSharp.Abstractions": "1.0.0-beta8", + "Microsoft.Dnx.Compilation.CSharp.Common": "1.0.0-beta8", + "System.Text.Encoding": "4.0.11-beta-23409", + "System.Threading.Tasks.Parallel": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Razor.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Razor.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Razor.Host/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta8", + "Microsoft.AspNet.Razor.Runtime": "4.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta8", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.ComponentModel.TypeConverter": "4.0.1-beta-23409", + "System.Reflection.Extensions": "4.0.1-beta-23409", + "System.Text.Encoding.Extensions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Razor.Host.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Razor.Host.dll": {} + } + }, + "Microsoft.AspNet.Mvc.TagHelpers/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.Razor": "6.0.0-beta8", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta8", + "Microsoft.Framework.FileSystemGlobbing": "1.0.0-beta8", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.TagHelpers.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.TagHelpers.dll": {} + } + }, + "Microsoft.AspNet.Mvc.ViewFeatures/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Antiforgery": "1.0.0-beta8", + "Microsoft.AspNet.Diagnostics.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Html.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.DataAnnotations": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Formatters.Json": "6.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.ViewFeatures.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.ViewFeatures.dll": {} + } + }, + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.IO": "4.0.11-beta-23409", + "System.Resources.ResourceManager": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.PageExecutionInstrumentation.Interfaces.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.PageExecutionInstrumentation.Interfaces.dll": {} + } + }, + "Microsoft.AspNet.Razor/4.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Diagnostics.Tools": "4.0.1-beta-23409", + "System.IO.FileSystem": "4.0.1-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23409", + "System.Threading.Thread": "4.0.0-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Razor.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Razor.dll": {} + } + }, + "Microsoft.AspNet.Razor.Runtime/4.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Html.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Razor": "4.0.0-beta8", + "System.Reflection.Extensions": "4.0.1-beta-23409", + "System.Text.RegularExpressions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Razor.Runtime.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Razor.Runtime.dll": {} + } + }, + "Microsoft.AspNet.Razor.Runtime.Precompilation/4.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Razor.Runtime": "4.0.0-beta8", + "Microsoft.Dnx.Compilation.CSharp.Abstractions": "1.0.0-beta8", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.Linq.Expressions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Razor.Runtime.Precompilation.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Razor.Runtime.Precompilation.dll": {} + } + }, + "Microsoft.AspNet.Routing/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "System.Text.RegularExpressions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Routing.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Routing.dll": {} + } + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.Diagnostics.TraceSource": "4.0.0-beta-23409", + "System.Diagnostics.Tracing": "4.0.21-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.IO": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Net.Primitives": "4.0.11-beta-23409", + "System.Numerics.Vectors": "4.1.1-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Runtime.InteropServices": "4.0.21-beta-23409", + "System.Text.Encoding": "4.0.11-beta-23409", + "System.Threading": "4.0.11-beta-23409", + "System.Threading.Tasks": "4.0.11-beta-23409", + "System.Threading.Thread": "4.0.0-beta-23409", + "System.Threading.ThreadPool": "4.0.10-beta-23409", + "System.Threading.Timer": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.dll": {} + } + }, + "Microsoft.AspNet.StaticFiles/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.StaticFiles.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.StaticFiles.dll": {} + } + }, + "Microsoft.AspNet.Tooling.Razor/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Razor.Runtime": "4.0.0-beta8", + "Newtonsoft.Json": "6.0.6", + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Tooling.Razor.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Tooling.Razor.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.IO": "4.0.11-beta-23409", + "System.IO.FileSystem": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "type": "package" + }, + "Microsoft.CodeAnalysis.Common/1.1.0-beta1-20150928-02": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "1.0.0", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.1.0-alpha-00014" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.1.0-beta1-20150928-02": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.1.0-beta1-20150928-02]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CSharp/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Dynamic.Runtime": "4.0.0", + "System.Globalization": "4.0.10", + "System.Linq": "4.0.0", + "System.Linq.Expressions": "4.0.0", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Data.Edm/5.6.4": { + "type": "package", + "compile": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll": {} + }, + "runtime": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll": {} + }, + "resource": { + "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.Edm.resources.dll": { + "locale": "de" + }, + "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.Edm.resources.dll": { + "locale": "es" + }, + "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.Edm.resources.dll": { + "locale": "fr" + }, + "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.Edm.resources.dll": { + "locale": "it" + }, + "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.Edm.resources.dll": { + "locale": "ja" + }, + "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.Edm.resources.dll": { + "locale": "ko" + }, + "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.Edm.resources.dll": { + "locale": "ru" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.Edm.resources.dll": { + "locale": "zh-Hans" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.Edm.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.OData/5.6.4": { + "type": "package", + "dependencies": { + "Microsoft.Data.Edm": "[5.6.4]", + "System.Spatial": "[5.6.4]" + }, + "compile": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.OData.dll": {} + }, + "runtime": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.OData.dll": {} + }, + "resource": { + "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.OData.resources.dll": { + "locale": "de" + }, + "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.OData.resources.dll": { + "locale": "es" + }, + "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.OData.resources.dll": { + "locale": "fr" + }, + "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.OData.resources.dll": { + "locale": "it" + }, + "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.OData.resources.dll": { + "locale": "ja" + }, + "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.OData.resources.dll": { + "locale": "ko" + }, + "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.OData.resources.dll": { + "locale": "ru" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.OData.resources.dll": { + "locale": "zh-Hans" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.OData.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.Services.Client/5.6.4": { + "type": "package", + "dependencies": { + "Microsoft.Data.OData": "[5.6.4]" + }, + "compile": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Services.Client.dll": {} + }, + "runtime": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Services.Client.dll": {} + }, + "resource": { + "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.Services.Client.resources.dll": { + "locale": "de" + }, + "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.Services.Client.resources.dll": { + "locale": "es" + }, + "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.Services.Client.resources.dll": { + "locale": "fr" + }, + "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.Services.Client.resources.dll": { + "locale": "it" + }, + "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ja" + }, + "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ko" + }, + "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ru" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.Services.Client.resources.dll": { + "locale": "zh-Hans" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.Services.Client.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Dnx.Compilation.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "System.IO.FileSystem": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Dnx.Compilation.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Dnx.Compilation.Abstractions.dll": {} + } + }, + "Microsoft.Dnx.Compilation.CSharp.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.1.0-beta1-20150928-02", + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-beta8", + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Dnx.Compilation.CSharp.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Dnx.Compilation.CSharp.Abstractions.dll": {} + } + }, + "Microsoft.Dnx.Compilation.CSharp.Common/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.1.0-beta1-20150928-02", + "Microsoft.Dnx.Compilation.CSharp.Abstractions": "1.0.0-beta8", + "System.Console": "4.0.0-beta-23409", + "System.IO": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Dnx.Compilation.CSharp.Common.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Dnx.Compilation.CSharp.Common.dll": {} + } + }, + "Microsoft.Dnx.Runtime.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23409", + "System.ComponentModel": "4.0.1-beta-23409", + "System.IO": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime": "4.0.21-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Threading.Tasks": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Dnx.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Dnx.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Threading": "4.0.11-beta-23409", + "System.Threading.Tasks": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "System.Linq": "4.0.1-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.IO": "4.0.11-beta-23409", + "System.IO.FileSystem": "4.0.1-beta-23409", + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Runtime.InteropServices": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Linq": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8", + "System.ComponentModel.TypeConverter": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.FileExtensions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Json/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8", + "Microsoft.Framework.Configuration.FileExtensions": "1.0.0-beta8", + "Newtonsoft.Json": "6.0.6", + "System.Dynamic.Runtime": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Configuration.Json.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Configuration.Json.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.Threading": "4.0.11-beta-23409", + "System.Threading.Tasks": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-beta-23409", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Linq.Expressions": "4.0.11-beta-23409", + "System.Reflection": "4.1.0-beta-23225", + "System.Resources.ResourceManager": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.FileSystemGlobbing/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23409", + "System.IO.FileSystem": "4.0.1-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.FileSystemGlobbing.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.FileSystemGlobbing.dll": {} + } + }, + "Microsoft.Framework.Globalization.CultureInfoCache/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1-beta-23409", + "System.Collections": "4.0.11-beta-23409", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Globalization.CultureInfoCache.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Globalization.CultureInfoCache.dll": {} + } + }, + "Microsoft.Framework.Localization/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1-beta-23409", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Localization.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Resources.ReaderWriter": "4.0.0-beta-23409", + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Localization.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Localization.dll": {} + } + }, + "Microsoft.Framework.Localization.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1-beta-23409", + "System.Collections": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Localization.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Localization.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.ComponentModel": "4.0.1-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23409", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime": "4.0.21-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Runtime.InteropServices": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Console/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "System.Console": "4.0.0-beta-23409", + "System.IO": "4.0.11-beta-23409", + "System.Runtime": "4.0.21-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Logging.Console.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Logging.Console.dll": {} + } + }, + "Microsoft.Framework.Logging.Debug/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Logging.Debug.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Logging.Debug.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "System.ComponentModel": "4.0.1-beta-23409", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Linq.Expressions": "4.0.11-beta-23409", + "System.Reflection": "4.0.10", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Primitives/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Primitives.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Primitives.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-beta-23409", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.IO": "4.0.11-beta-23409", + "System.Reflection": "4.0.10", + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23409", + "System.Diagnostics.Contracts": "4.0.1-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Globalization.Extensions": "4.0.1-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409", + "System.Text.Encoding": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.VisualStudio.Web.BrowserLink.Loader/14.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta8", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces": "1.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Win32.Registry": "4.0.0-beta-23409", + "System.Collections": "4.0.10", + "System.Net.Sockets": "4.0.10-beta-23123", + "System.Reflection.Extensions": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "lib/dnxcore50/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.8": { + "type": "package", + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "System.Collections/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Globalization.Extensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.ComponentModel": "4.0.0", + "System.Globalization": "4.0.10", + "System.Linq": "4.0.0", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Text.RegularExpressions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.ComponentModel.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.ComponentModel": "4.0.0", + "System.ComponentModel.Primitives": "4.0.0", + "System.Globalization": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Console/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.StackTrace/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.StackTrace.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.StackTrace.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.21-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Diagnostics.Tracing.Telemetry/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet/System.Diagnostics.Tracing.Telemetry.dll": {} + }, + "runtime": { + "lib/dotnet/System.Diagnostics.Tracing.Telemetry.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Linq": "4.0.0", + "System.Linq.Expressions": "4.0.10", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Emit": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.IO": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.InteropServices": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.Linq": "4.0.0", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Emit": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.Compression": "4.0.0", + "System.Net.Primitives": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23225", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.dll": {} + } + }, + "System.Net.Primitives/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.0.10-beta-23123": { + "type": "package", + "dependencies": { + "System.Private.Networking": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/dotnet/System.Net.WebSockets.dll": {} + } + }, + "System.Numerics.Vectors/4.1.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/dotnet/System.Numerics.Vectors.dll": {} + } + }, + "System.ObjectModel/4.0.10": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Serialization.Primitives": "4.0.10-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Xml.ReaderWriter": "4.0.10-beta-23109", + "System.Xml.XmlSerializer": "4.0.10-beta-23109" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Private.Networking/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Collections": "4.0.10", + "System.Collections.Concurrent": "4.0.0", + "System.Collections.NonGeneric": "4.0.0", + "System.ComponentModel.EventBasedAsync": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.1-beta-23409": { + "type": "package", + "compile": { + "ref/dnxcore50/_._": {} + } + }, + "System.Reflection/4.1.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.1.0-alpha-00014": { + "type": "package", + "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": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ReaderWriter/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Resources.ReaderWriter.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ReaderWriter.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.21-beta-23409": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1-beta-23409" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.21-beta-23409": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.0.10-beta-23109": { + "type": "package", + "dependencies": { + "System.Private.DataContractSerialization": "4.0.0-beta-23109", + "System.Runtime.Serialization.Primitives": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Security.Claims/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.IO": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.0", + "System.Security.Principal": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23409" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23409", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23409" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Diagnostics.Debug": "4.0.0", + "System.Reflection": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Claims": "4.0.0", + "System.Security.Principal": "4.0.0", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Spatial/5.6.4": { + "type": "package", + "compile": { + "lib/portable-net45+wp8+win8+wpa/System.Spatial.dll": {} + }, + "runtime": { + "lib/portable-net45+wp8+win8+wpa/System.Spatial.dll": {} + }, + "resource": { + "lib/portable-net45+wp8+win8+wpa/de/System.Spatial.resources.dll": { + "locale": "de" + }, + "lib/portable-net45+wp8+win8+wpa/es/System.Spatial.resources.dll": { + "locale": "es" + }, + "lib/portable-net45+wp8+win8+wpa/fr/System.Spatial.resources.dll": { + "locale": "fr" + }, + "lib/portable-net45+wp8+win8+wpa/it/System.Spatial.resources.dll": { + "locale": "it" + }, + "lib/portable-net45+wp8+win8+wpa/ja/System.Spatial.resources.dll": { + "locale": "ja" + }, + "lib/portable-net45+wp8+win8+wpa/ko/System.Spatial.resources.dll": { + "locale": "ko" + }, + "lib/portable-net45+wp8+win8+wpa/ru/System.Spatial.resources.dll": { + "locale": "ru" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hans/System.Spatial.resources.dll": { + "locale": "zh-Hans" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hant/System.Spatial.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Text.Encoding/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Text.Encoding": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/dotnet/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.InteropServices": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Text.RegularExpressions": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tools": "4.0.0", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.Reflection": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10", + "System.Xml.ReaderWriter": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Xml.ReaderWriter": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + } + }, + "WindowsAzure.Storage/6.1.1-preview": { + "type": "package", + "dependencies": { + "Microsoft.Data.OData": "5.6.4", + "Microsoft.Data.Services.Client": "5.6.4", + "Newtonsoft.Json": "6.0.8", + "System.Collections": "4.0.11-beta-23225", + "System.Collections.Concurrent": "4.0.11-beta-23225", + "System.Collections.Specialized": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.11-beta-23225", + "System.Diagnostics.Tools": "4.0.1-beta-23225", + "System.Diagnostics.TraceSource": "4.0.0-beta-23225", + "System.Diagnostics.Tracing": "4.0.21-beta-23225", + "System.Dynamic.Runtime": "4.0.11-beta-23225", + "System.Globalization": "4.0.11-beta-23225", + "System.IO": "4.0.11-beta-23225", + "System.IO.FileSystem": "4.0.1-beta-23225", + "System.IO.FileSystem.Primitives": "4.0.1-beta-23225", + "System.Linq": "4.0.1-beta-23225", + "System.Linq.Expressions": "4.0.11-beta-23225", + "System.Linq.Queryable": "4.0.0-beta-23109", + "System.Net.Http": "4.0.1-beta-23225", + "System.Net.Primitives": "4.0.11-beta-23225", + "System.Reflection": "4.1.0-beta-23225", + "System.Reflection.Extensions": "4.0.1-beta-23225", + "System.Reflection.TypeExtensions": "4.0.1-beta-23225", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.11-beta-23225", + "System.Runtime.InteropServices": "4.0.21-beta-23225", + "System.Runtime.Serialization.Primitives": "4.0.0-beta-23109", + "System.Runtime.Serialization.Xml": "4.0.10-beta-23109", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23225", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23225", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Spatial": "5.6.4", + "System.Text.Encoding": "4.0.11-beta-23225", + "System.Text.Encoding.Extensions": "4.0.11-beta-23225", + "System.Text.RegularExpressions": "4.0.11-beta-23225", + "System.Threading": "4.0.11-beta-23225", + "System.Threading.Tasks": "4.0.11-beta-23225", + "System.Threading.Thread": "4.0.0-beta-23225", + "System.Threading.ThreadPool": "4.0.10-beta-23225", + "System.Threading.Timer": "4.0.1-beta-23225", + "System.Xml.ReaderWriter": "4.0.11-beta-23225", + "System.Xml.XDocument": "4.0.11-beta-23225", + "System.Xml.XmlSerializer": "4.0.0-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.WindowsAzure.Storage.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.WindowsAzure.Storage.dll": {} + } + } + }, + "DNX,Version=v4.5.1/win7-x86": { + "AzureTableStorageCache/1.0.0": { + "type": "project", + "framework": ".NETFramework,Version=v4.5", + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta8", + "WindowsAzure.Storage": "6.1.1-preview" + } + }, + "Microsoft.AspNet.Antiforgery/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta8", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Antiforgery.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Antiforgery.dll": {} + } + }, + "Microsoft.AspNet.Authorization/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8" + }, + "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/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta8", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Diagnostics.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta8", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta8", + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "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.FileProviders.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta8", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Http": "1.0.0-beta8", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Configuration": "1.0.0-beta8", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta8", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta8", + "Microsoft.Framework.Configuration.Json": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta8", + "Microsoft.Framework.Logging": "1.0.0-beta8", + "Newtonsoft.Json": "6.0.6", + "System.Diagnostics.Tracing.Telemetry": "4.0.0-beta-23409" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Runtime" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta8", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8" + }, + "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.Html.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Html.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Html.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta8", + "Microsoft.Net.Http.Headers": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8", + "Microsoft.Net.Http.Headers": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8" + }, + "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.IISPlatformHandler/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.IISPlatformHandler.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.IISPlatformHandler.dll": {} + } + }, + "Microsoft.AspNet.JsonPatch/1.0.0-beta8": { + "type": "package", + "dependencies": { + "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.Localization/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Framework.Globalization.CultureInfoCache": "1.0.0-beta8", + "Microsoft.Framework.Localization.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Localization.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Localization.dll": {} + } + }, + "Microsoft.AspNet.Mvc/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.ApiExplorer": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Cors": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.DataAnnotations": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Formatters.Json": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Localization": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Razor": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.ViewFeatures": "6.0.0-beta8", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Routing": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Authorization": "1.0.0-beta8", + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Mvc.Abstractions": "6.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "System.Diagnostics.Tracing.Telemetry": "4.0.0-beta-23409" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Runtime" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Mvc.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Mvc.Core.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Cors/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Cors.Core": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8", + "Microsoft.Framework.Localization": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.JsonPatch": "1.0.0-beta8", + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8", + "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.Localization/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Localization": "1.0.0-beta8", + "Microsoft.AspNet.Mvc.Razor": "6.0.0-beta8", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta8", + "Microsoft.Framework.Localization": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Mvc.Localization.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Mvc.Localization.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Razor/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.Razor.Host": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.ViewFeatures": "6.0.0-beta8", + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces": "1.0.0-beta8", + "Microsoft.AspNet.Razor.Runtime.Precompilation": "4.0.0-beta8", + "Microsoft.Dnx.Compilation.CSharp.Abstractions": "1.0.0-beta8", + "Microsoft.Dnx.Compilation.CSharp.Common": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta8", + "Microsoft.AspNet.Razor.Runtime": "4.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta8" + }, + "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.TagHelpers/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.Razor": "6.0.0-beta8", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta8", + "Microsoft.Framework.FileSystemGlobbing": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Mvc.TagHelpers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Mvc.TagHelpers.dll": {} + } + }, + "Microsoft.AspNet.Mvc.ViewFeatures/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Antiforgery": "1.0.0-beta8", + "Microsoft.AspNet.Diagnostics.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Html.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.DataAnnotations": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Formatters.Json": "6.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "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-beta8": { + "type": "package", + "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-beta8": { + "type": "package", + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Html.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Razor": "4.0.0-beta8" + }, + "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.Razor.Runtime.Precompilation/4.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Razor.Runtime": "4.0.0-beta8", + "Microsoft.Dnx.Compilation.CSharp.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Runtime" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Razor.Runtime.Precompilation.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Razor.Runtime.Precompilation.dll": {} + } + }, + "Microsoft.AspNet.Routing/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Routing.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Routing.dll": {} + } + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "System.Numerics.Vectors": "4.1.1-beta-23409" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll": {} + }, + "native": { + "runtimes/win7-x86/native/libuv.dll": {} + } + }, + "Microsoft.AspNet.StaticFiles/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.StaticFiles.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.StaticFiles.dll": {} + } + }, + "Microsoft.AspNet.Tooling.Razor/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Razor.Runtime": "4.0.0-beta8", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Tooling.Razor.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Tooling.Razor.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8" + }, + "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": { + "type": "package", + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.1.0-beta1-20150928-02": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "1.0.0", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.1.0-alpha-00014" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.1.0-beta1-20150928-02": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.1.0-beta1-20150928-02]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Data.Edm/5.6.4": { + "type": "package", + "compile": { + "lib/net40/Microsoft.Data.Edm.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.Data.Edm.dll": {} + }, + "resource": { + "lib/net40/de/Microsoft.Data.Edm.resources.dll": { + "locale": "de" + }, + "lib/net40/es/Microsoft.Data.Edm.resources.dll": { + "locale": "es" + }, + "lib/net40/fr/Microsoft.Data.Edm.resources.dll": { + "locale": "fr" + }, + "lib/net40/it/Microsoft.Data.Edm.resources.dll": { + "locale": "it" + }, + "lib/net40/ja/Microsoft.Data.Edm.resources.dll": { + "locale": "ja" + }, + "lib/net40/ko/Microsoft.Data.Edm.resources.dll": { + "locale": "ko" + }, + "lib/net40/ru/Microsoft.Data.Edm.resources.dll": { + "locale": "ru" + }, + "lib/net40/zh-Hans/Microsoft.Data.Edm.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net40/zh-Hant/Microsoft.Data.Edm.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.OData/5.6.4": { + "type": "package", + "dependencies": { + "Microsoft.Data.Edm": "[5.6.4]", + "System.Spatial": "[5.6.4]" + }, + "compile": { + "lib/net40/Microsoft.Data.OData.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.Data.OData.dll": {} + }, + "resource": { + "lib/net40/de/Microsoft.Data.OData.resources.dll": { + "locale": "de" + }, + "lib/net40/es/Microsoft.Data.OData.resources.dll": { + "locale": "es" + }, + "lib/net40/fr/Microsoft.Data.OData.resources.dll": { + "locale": "fr" + }, + "lib/net40/it/Microsoft.Data.OData.resources.dll": { + "locale": "it" + }, + "lib/net40/ja/Microsoft.Data.OData.resources.dll": { + "locale": "ja" + }, + "lib/net40/ko/Microsoft.Data.OData.resources.dll": { + "locale": "ko" + }, + "lib/net40/ru/Microsoft.Data.OData.resources.dll": { + "locale": "ru" + }, + "lib/net40/zh-Hans/Microsoft.Data.OData.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net40/zh-Hant/Microsoft.Data.OData.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.Services.Client/5.6.4": { + "type": "package", + "dependencies": { + "Microsoft.Data.OData": "[5.6.4]" + }, + "compile": { + "lib/net40/Microsoft.Data.Services.Client.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.Data.Services.Client.dll": {} + }, + "resource": { + "lib/net40/de/Microsoft.Data.Services.Client.resources.dll": { + "locale": "de" + }, + "lib/net40/es/Microsoft.Data.Services.Client.resources.dll": { + "locale": "es" + }, + "lib/net40/fr/Microsoft.Data.Services.Client.resources.dll": { + "locale": "fr" + }, + "lib/net40/it/Microsoft.Data.Services.Client.resources.dll": { + "locale": "it" + }, + "lib/net40/ja/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ja" + }, + "lib/net40/ko/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ko" + }, + "lib/net40/ru/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ru" + }, + "lib/net40/zh-Hans/Microsoft.Data.Services.Client.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net40/zh-Hant/Microsoft.Data.Services.Client.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Dnx.Compilation.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Dnx.Compilation.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Dnx.Compilation.Abstractions.dll": {} + } + }, + "Microsoft.Dnx.Compilation.CSharp.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.1.0-beta1-20150928-02", + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Dnx.Compilation.CSharp.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Dnx.Compilation.CSharp.Abstractions.dll": {} + } + }, + "Microsoft.Dnx.Compilation.CSharp.Common/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.1.0-beta1-20150928-02", + "Microsoft.Dnx.Compilation.CSharp.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "System.Runtime" + ], + "compile": { + "lib/dnx451/Microsoft.Dnx.Compilation.CSharp.Common.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Dnx.Compilation.CSharp.Common.dll": {} + } + }, + "Microsoft.Dnx.Runtime.Abstractions/1.0.0-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Dnx.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Dnx.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8" + }, + "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.FileExtensions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Json/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8", + "Microsoft.Framework.Configuration.FileExtensions": "1.0.0-beta8", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Json.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Json.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.FileSystemGlobbing/1.0.0-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.FileSystemGlobbing.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.FileSystemGlobbing.dll": {} + } + }, + "Microsoft.Framework.Globalization.CultureInfoCache/1.0.0-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Globalization.CultureInfoCache.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Globalization.CultureInfoCache.dll": {} + } + }, + "Microsoft.Framework.Localization/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Localization.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Localization.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Localization.dll": {} + } + }, + "Microsoft.Framework.Localization.Abstractions/1.0.0-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Localization.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Localization.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Console/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8" + }, + "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.Logging.Debug/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Debug.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Debug.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Primitives/1.0.0-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Primitives.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Primitives.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.VisualStudio.Web.BrowserLink.Loader/14.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta8", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces": "1.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {} + } + }, + "Newtonsoft.Json/6.0.8": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Tracing.Telemetry/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet/System.Diagnostics.Tracing.Telemetry.dll": {} + }, + "runtime": { + "lib/dotnet/System.Diagnostics.Tracing.Telemetry.dll": {} + } + }, + "System.Globalization/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Numerics.Vectors/4.1.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/dotnet/System.Numerics.Vectors.dll": {} + } + }, + "System.Reflection.Metadata/1.1.0-alpha-00014": { + "type": "package", + "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.Resources.ResourceManager/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Spatial/5.6.4": { + "type": "package", + "compile": { + "lib/net40/System.Spatial.dll": {} + }, + "runtime": { + "lib/net40/System.Spatial.dll": {} + }, + "resource": { + "lib/net40/de/System.Spatial.resources.dll": { + "locale": "de" + }, + "lib/net40/es/System.Spatial.resources.dll": { + "locale": "es" + }, + "lib/net40/fr/System.Spatial.resources.dll": { + "locale": "fr" + }, + "lib/net40/it/System.Spatial.resources.dll": { + "locale": "it" + }, + "lib/net40/ja/System.Spatial.resources.dll": { + "locale": "ja" + }, + "lib/net40/ko/System.Spatial.resources.dll": { + "locale": "ko" + }, + "lib/net40/ru/System.Spatial.resources.dll": { + "locale": "ru" + }, + "lib/net40/zh-Hans/System.Spatial.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net40/zh-Hant/System.Spatial.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Threading/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "WindowsAzure.Storage/6.1.1-preview": { + "type": "package", + "dependencies": { + "Microsoft.Data.OData": "5.6.4", + "Microsoft.Data.Services.Client": "5.6.4", + "Newtonsoft.Json": "6.0.8", + "System.Spatial": "5.6.4" + }, + "frameworkAssemblies": [ + "System.Data", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.WindowsAzure.Storage.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.WindowsAzure.Storage.dll": {} + } + } + }, + "DNX,Version=v4.5.1/win7-x64": { + "AzureTableStorageCache/1.0.0": { + "type": "project", + "framework": ".NETFramework,Version=v4.5", + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta8", + "WindowsAzure.Storage": "6.1.1-preview" + } + }, + "Microsoft.AspNet.Antiforgery/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta8", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Antiforgery.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Antiforgery.dll": {} + } + }, + "Microsoft.AspNet.Authorization/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8" + }, + "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/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta8", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Diagnostics.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta8", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta8", + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "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.FileProviders.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta8", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Http": "1.0.0-beta8", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Configuration": "1.0.0-beta8", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta8", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta8", + "Microsoft.Framework.Configuration.Json": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta8", + "Microsoft.Framework.Logging": "1.0.0-beta8", + "Newtonsoft.Json": "6.0.6", + "System.Diagnostics.Tracing.Telemetry": "4.0.0-beta-23409" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Runtime" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta8", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8" + }, + "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.Html.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Html.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Html.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta8", + "Microsoft.Net.Http.Headers": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8", + "Microsoft.Net.Http.Headers": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8" + }, + "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.IISPlatformHandler/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.IISPlatformHandler.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.IISPlatformHandler.dll": {} + } + }, + "Microsoft.AspNet.JsonPatch/1.0.0-beta8": { + "type": "package", + "dependencies": { + "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.Localization/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Framework.Globalization.CultureInfoCache": "1.0.0-beta8", + "Microsoft.Framework.Localization.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Localization.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Localization.dll": {} + } + }, + "Microsoft.AspNet.Mvc/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.ApiExplorer": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Cors": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.DataAnnotations": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Formatters.Json": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Localization": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Razor": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.ViewFeatures": "6.0.0-beta8", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Routing": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Authorization": "1.0.0-beta8", + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Mvc.Abstractions": "6.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "System.Diagnostics.Tracing.Telemetry": "4.0.0-beta-23409" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Runtime" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Mvc.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Mvc.Core.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Cors/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Cors.Core": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8", + "Microsoft.Framework.Localization": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.JsonPatch": "1.0.0-beta8", + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8", + "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.Localization/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Localization": "1.0.0-beta8", + "Microsoft.AspNet.Mvc.Razor": "6.0.0-beta8", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta8", + "Microsoft.Framework.Localization": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Mvc.Localization.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Mvc.Localization.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Razor/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.Razor.Host": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.ViewFeatures": "6.0.0-beta8", + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces": "1.0.0-beta8", + "Microsoft.AspNet.Razor.Runtime.Precompilation": "4.0.0-beta8", + "Microsoft.Dnx.Compilation.CSharp.Abstractions": "1.0.0-beta8", + "Microsoft.Dnx.Compilation.CSharp.Common": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta8", + "Microsoft.AspNet.Razor.Runtime": "4.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta8" + }, + "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.TagHelpers/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.Razor": "6.0.0-beta8", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta8", + "Microsoft.Framework.FileSystemGlobbing": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Mvc.TagHelpers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Mvc.TagHelpers.dll": {} + } + }, + "Microsoft.AspNet.Mvc.ViewFeatures/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Antiforgery": "1.0.0-beta8", + "Microsoft.AspNet.Diagnostics.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Html.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.DataAnnotations": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Formatters.Json": "6.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "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-beta8": { + "type": "package", + "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-beta8": { + "type": "package", + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Html.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Razor": "4.0.0-beta8" + }, + "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.Razor.Runtime.Precompilation/4.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Razor.Runtime": "4.0.0-beta8", + "Microsoft.Dnx.Compilation.CSharp.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Runtime" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Razor.Runtime.Precompilation.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Razor.Runtime.Precompilation.dll": {} + } + }, + "Microsoft.AspNet.Routing/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Routing.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Routing.dll": {} + } + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "System.Numerics.Vectors": "4.1.1-beta-23409" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Server.Kestrel.dll": {} + }, + "native": { + "runtimes/win7-x64/native/libuv.dll": {} + } + }, + "Microsoft.AspNet.StaticFiles/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.StaticFiles.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.StaticFiles.dll": {} + } + }, + "Microsoft.AspNet.Tooling.Razor/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Razor.Runtime": "4.0.0-beta8", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Tooling.Razor.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Tooling.Razor.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8" + }, + "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": { + "type": "package", + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.1.0-beta1-20150928-02": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "1.0.0", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.1.0-alpha-00014" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.1.0-beta1-20150928-02": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.1.0-beta1-20150928-02]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Data.Edm/5.6.4": { + "type": "package", + "compile": { + "lib/net40/Microsoft.Data.Edm.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.Data.Edm.dll": {} + }, + "resource": { + "lib/net40/de/Microsoft.Data.Edm.resources.dll": { + "locale": "de" + }, + "lib/net40/es/Microsoft.Data.Edm.resources.dll": { + "locale": "es" + }, + "lib/net40/fr/Microsoft.Data.Edm.resources.dll": { + "locale": "fr" + }, + "lib/net40/it/Microsoft.Data.Edm.resources.dll": { + "locale": "it" + }, + "lib/net40/ja/Microsoft.Data.Edm.resources.dll": { + "locale": "ja" + }, + "lib/net40/ko/Microsoft.Data.Edm.resources.dll": { + "locale": "ko" + }, + "lib/net40/ru/Microsoft.Data.Edm.resources.dll": { + "locale": "ru" + }, + "lib/net40/zh-Hans/Microsoft.Data.Edm.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net40/zh-Hant/Microsoft.Data.Edm.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.OData/5.6.4": { + "type": "package", + "dependencies": { + "Microsoft.Data.Edm": "[5.6.4]", + "System.Spatial": "[5.6.4]" + }, + "compile": { + "lib/net40/Microsoft.Data.OData.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.Data.OData.dll": {} + }, + "resource": { + "lib/net40/de/Microsoft.Data.OData.resources.dll": { + "locale": "de" + }, + "lib/net40/es/Microsoft.Data.OData.resources.dll": { + "locale": "es" + }, + "lib/net40/fr/Microsoft.Data.OData.resources.dll": { + "locale": "fr" + }, + "lib/net40/it/Microsoft.Data.OData.resources.dll": { + "locale": "it" + }, + "lib/net40/ja/Microsoft.Data.OData.resources.dll": { + "locale": "ja" + }, + "lib/net40/ko/Microsoft.Data.OData.resources.dll": { + "locale": "ko" + }, + "lib/net40/ru/Microsoft.Data.OData.resources.dll": { + "locale": "ru" + }, + "lib/net40/zh-Hans/Microsoft.Data.OData.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net40/zh-Hant/Microsoft.Data.OData.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.Services.Client/5.6.4": { + "type": "package", + "dependencies": { + "Microsoft.Data.OData": "[5.6.4]" + }, + "compile": { + "lib/net40/Microsoft.Data.Services.Client.dll": {} + }, + "runtime": { + "lib/net40/Microsoft.Data.Services.Client.dll": {} + }, + "resource": { + "lib/net40/de/Microsoft.Data.Services.Client.resources.dll": { + "locale": "de" + }, + "lib/net40/es/Microsoft.Data.Services.Client.resources.dll": { + "locale": "es" + }, + "lib/net40/fr/Microsoft.Data.Services.Client.resources.dll": { + "locale": "fr" + }, + "lib/net40/it/Microsoft.Data.Services.Client.resources.dll": { + "locale": "it" + }, + "lib/net40/ja/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ja" + }, + "lib/net40/ko/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ko" + }, + "lib/net40/ru/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ru" + }, + "lib/net40/zh-Hans/Microsoft.Data.Services.Client.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net40/zh-Hant/Microsoft.Data.Services.Client.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Dnx.Compilation.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Dnx.Compilation.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Dnx.Compilation.Abstractions.dll": {} + } + }, + "Microsoft.Dnx.Compilation.CSharp.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.1.0-beta1-20150928-02", + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Dnx.Compilation.CSharp.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Dnx.Compilation.CSharp.Abstractions.dll": {} + } + }, + "Microsoft.Dnx.Compilation.CSharp.Common/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.1.0-beta1-20150928-02", + "Microsoft.Dnx.Compilation.CSharp.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.IO", + "System.Runtime" + ], + "compile": { + "lib/dnx451/Microsoft.Dnx.Compilation.CSharp.Common.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Dnx.Compilation.CSharp.Common.dll": {} + } + }, + "Microsoft.Dnx.Runtime.Abstractions/1.0.0-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Dnx.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Dnx.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8" + }, + "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.FileExtensions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Json/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8", + "Microsoft.Framework.Configuration.FileExtensions": "1.0.0-beta8", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Json.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Json.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.FileSystemGlobbing/1.0.0-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.FileSystemGlobbing.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.FileSystemGlobbing.dll": {} + } + }, + "Microsoft.Framework.Globalization.CultureInfoCache/1.0.0-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Globalization.CultureInfoCache.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Globalization.CultureInfoCache.dll": {} + } + }, + "Microsoft.Framework.Localization/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Localization.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Localization.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Localization.dll": {} + } + }, + "Microsoft.Framework.Localization.Abstractions/1.0.0-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Localization.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Localization.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Console/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8" + }, + "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.Logging.Debug/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Debug.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Debug.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Primitives/1.0.0-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Primitives.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Primitives.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8" + }, + "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-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta8": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.VisualStudio.Web.BrowserLink.Loader/14.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta8", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces": "1.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {} + } + }, + "Newtonsoft.Json/6.0.8": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Tracing.Telemetry/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet/System.Diagnostics.Tracing.Telemetry.dll": {} + }, + "runtime": { + "lib/dotnet/System.Diagnostics.Tracing.Telemetry.dll": {} + } + }, + "System.Globalization/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Numerics.Vectors/4.1.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/dotnet/System.Numerics.Vectors.dll": {} + } + }, + "System.Reflection.Metadata/1.1.0-alpha-00014": { + "type": "package", + "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.Resources.ResourceManager/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Spatial/5.6.4": { + "type": "package", + "compile": { + "lib/net40/System.Spatial.dll": {} + }, + "runtime": { + "lib/net40/System.Spatial.dll": {} + }, + "resource": { + "lib/net40/de/System.Spatial.resources.dll": { + "locale": "de" + }, + "lib/net40/es/System.Spatial.resources.dll": { + "locale": "es" + }, + "lib/net40/fr/System.Spatial.resources.dll": { + "locale": "fr" + }, + "lib/net40/it/System.Spatial.resources.dll": { + "locale": "it" + }, + "lib/net40/ja/System.Spatial.resources.dll": { + "locale": "ja" + }, + "lib/net40/ko/System.Spatial.resources.dll": { + "locale": "ko" + }, + "lib/net40/ru/System.Spatial.resources.dll": { + "locale": "ru" + }, + "lib/net40/zh-Hans/System.Spatial.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net40/zh-Hant/System.Spatial.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Threading/4.0.0": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "WindowsAzure.Storage/6.1.1-preview": { + "type": "package", + "dependencies": { + "Microsoft.Data.OData": "5.6.4", + "Microsoft.Data.Services.Client": "5.6.4", + "Newtonsoft.Json": "6.0.8", + "System.Spatial": "5.6.4" + }, + "frameworkAssemblies": [ + "System.Data", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.WindowsAzure.Storage.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.WindowsAzure.Storage.dll": {} + } + } + }, + "DNXCore,Version=v5.0/win7-x86": { + "AzureTableStorageCache/1.0.0": { + "type": "project", + "framework": "DNXCore,Version=v5.0", + "dependencies": { + "Microsoft.CSharp": "4.0.1-beta-23409", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409", + "System.Threading": "4.0.11-beta-23409", + "WindowsAzure.Storage": "6.1.1-preview" + } + }, + "Microsoft.AspNet.Antiforgery/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta8", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Antiforgery.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Antiforgery.dll": {} + } + }, + "Microsoft.AspNet.Authorization/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authorization.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authorization.dll": {} + } + }, + "Microsoft.AspNet.Cors.Core/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Cors.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Cors.Core.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.Runtime.Handles": "4.0.1-beta-23409", + "System.Runtime.InteropServices": "4.0.21-beta-23409", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta8", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "Microsoft.Win32.Registry": "4.0.0-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Reflection.Extensions": "4.0.1-beta-23409", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Security.Claims": "4.0.1-beta-23409", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23409", + "System.Security.Principal.Windows": "4.0.0-beta-23409", + "System.Xml.XDocument": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "System.ComponentModel": "4.0.1-beta-23409", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23409", + "System.Text.Encoding.Extensions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Diagnostics/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Diagnostics.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta8", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta8", + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8", + "System.Reflection.Extensions": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Diagnostics.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Diagnostics.dll": {} + } + }, + "Microsoft.AspNet.Diagnostics.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Diagnostics.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Diagnostics.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8", + "System.IO": "4.0.11-beta-23409", + "System.Resources.ResourceManager": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.IO.FileSystem": "4.0.1-beta-23409", + "System.IO.FileSystem.Primitives": "4.0.1-beta-23409", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Text.RegularExpressions": "4.0.11-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta8", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Http": "1.0.0-beta8", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Configuration": "1.0.0-beta8", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta8", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta8", + "Microsoft.Framework.Configuration.Json": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta8", + "Microsoft.Framework.Logging": "1.0.0-beta8", + "Newtonsoft.Json": "6.0.6", + "System.Console": "4.0.0-beta-23409", + "System.Diagnostics.StackTrace": "4.0.1-beta-23409", + "System.Diagnostics.Tracing.Telemetry": "4.0.0-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta8", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Html.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8", + "System.Resources.ResourceManager": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Html.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Html.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta8", + "Microsoft.Net.Http.Headers": "1.0.0-beta8", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.Text.Encoding": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Diagnostics.Tools": "4.0.1-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Globalization.Extensions": "4.0.1-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Linq.Expressions": "4.0.11-beta-23409", + "System.Net.Primitives": "4.0.11-beta-23409", + "System.Net.WebSockets": "4.0.0-beta-23409", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409", + "System.Runtime.InteropServices": "4.0.21-beta-23409", + "System.Security.Claims": "4.0.1-beta-23409", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23409", + "System.Security.Principal": "4.0.1-beta-23409", + "System.Threading.Tasks": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8", + "Microsoft.Net.Http.Headers": "1.0.0-beta8", + "System.IO.FileSystem": "4.0.1-beta-23409", + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Net.Primitives": "4.0.11-beta-23409", + "System.Net.WebSockets": "4.0.0-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Security.Claims": "4.0.1-beta-23409", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23409", + "System.Security.Principal": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.IISPlatformHandler/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "System.Security.Principal.Windows": "4.0.0-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.IISPlatformHandler.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.IISPlatformHandler.dll": {} + } + }, + "Microsoft.AspNet.JsonPatch/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1-beta-23409", + "Newtonsoft.Json": "6.0.6", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.ComponentModel.TypeConverter": "4.0.1-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Reflection.Extensions": "4.0.1-beta-23409", + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Text.Encoding.Extensions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.JsonPatch.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.JsonPatch.dll": {} + } + }, + "Microsoft.AspNet.Localization/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.CSharp": "4.0.1-beta-23409", + "Microsoft.Framework.Globalization.CultureInfoCache": "1.0.0-beta8", + "Microsoft.Framework.Localization.Abstractions": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Localization.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Localization.dll": {} + } + }, + "Microsoft.AspNet.Mvc/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.ApiExplorer": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Cors": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.DataAnnotations": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Formatters.Json": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Localization": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Razor": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.ViewFeatures": "6.0.0-beta8", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Abstractions/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Routing": "1.0.0-beta8", + "Microsoft.CSharp": "4.0.1-beta-23409", + "System.ComponentModel.TypeConverter": "4.0.1-beta-23409", + "System.Reflection.Extensions": "4.0.1-beta-23409", + "System.Text.Encoding.Extensions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Mvc.ApiExplorer/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.ApiExplorer.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.ApiExplorer.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Core/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Authorization": "1.0.0-beta8", + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Mvc.Abstractions": "6.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "System.Diagnostics.Tracing.Telemetry": "4.0.0-beta-23409", + "System.Text.Encoding": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Core.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Cors/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Cors.Core": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Cors.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Cors.dll": {} + } + }, + "Microsoft.AspNet.Mvc.DataAnnotations/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8", + "Microsoft.Framework.Localization": "1.0.0-beta8", + "System.ComponentModel.Annotations": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.DataAnnotations.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.DataAnnotations.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Formatters.Json/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.JsonPatch": "1.0.0-beta8", + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8", + "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.Localization/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Localization": "1.0.0-beta8", + "Microsoft.AspNet.Mvc.Razor": "6.0.0-beta8", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta8", + "Microsoft.Framework.Localization": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Localization.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Localization.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Razor/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.Razor.Host": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.ViewFeatures": "6.0.0-beta8", + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces": "1.0.0-beta8", + "Microsoft.AspNet.Razor.Runtime.Precompilation": "4.0.0-beta8", + "Microsoft.Dnx.Compilation.CSharp.Abstractions": "1.0.0-beta8", + "Microsoft.Dnx.Compilation.CSharp.Common": "1.0.0-beta8", + "System.Text.Encoding": "4.0.11-beta-23409", + "System.Threading.Tasks.Parallel": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Razor.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Razor.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Razor.Host/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta8", + "Microsoft.AspNet.Razor.Runtime": "4.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta8", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.ComponentModel.TypeConverter": "4.0.1-beta-23409", + "System.Reflection.Extensions": "4.0.1-beta-23409", + "System.Text.Encoding.Extensions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Razor.Host.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Razor.Host.dll": {} + } + }, + "Microsoft.AspNet.Mvc.TagHelpers/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.Razor": "6.0.0-beta8", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta8", + "Microsoft.Framework.FileSystemGlobbing": "1.0.0-beta8", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.TagHelpers.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.TagHelpers.dll": {} + } + }, + "Microsoft.AspNet.Mvc.ViewFeatures/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Antiforgery": "1.0.0-beta8", + "Microsoft.AspNet.Diagnostics.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Html.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.DataAnnotations": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Formatters.Json": "6.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.ViewFeatures.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.ViewFeatures.dll": {} + } + }, + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.IO": "4.0.11-beta-23409", + "System.Resources.ResourceManager": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.PageExecutionInstrumentation.Interfaces.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.PageExecutionInstrumentation.Interfaces.dll": {} + } + }, + "Microsoft.AspNet.Razor/4.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Diagnostics.Tools": "4.0.1-beta-23409", + "System.IO.FileSystem": "4.0.1-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23409", + "System.Threading.Thread": "4.0.0-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Razor.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Razor.dll": {} + } + }, + "Microsoft.AspNet.Razor.Runtime/4.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Html.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Razor": "4.0.0-beta8", + "System.Reflection.Extensions": "4.0.1-beta-23409", + "System.Text.RegularExpressions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Razor.Runtime.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Razor.Runtime.dll": {} + } + }, + "Microsoft.AspNet.Razor.Runtime.Precompilation/4.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Razor.Runtime": "4.0.0-beta8", + "Microsoft.Dnx.Compilation.CSharp.Abstractions": "1.0.0-beta8", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.Linq.Expressions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Razor.Runtime.Precompilation.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Razor.Runtime.Precompilation.dll": {} + } + }, + "Microsoft.AspNet.Routing/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "System.Text.RegularExpressions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Routing.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Routing.dll": {} + } + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.Diagnostics.TraceSource": "4.0.0-beta-23409", + "System.Diagnostics.Tracing": "4.0.21-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.IO": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Net.Primitives": "4.0.11-beta-23409", + "System.Numerics.Vectors": "4.1.1-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Runtime.InteropServices": "4.0.21-beta-23409", + "System.Text.Encoding": "4.0.11-beta-23409", + "System.Threading": "4.0.11-beta-23409", + "System.Threading.Tasks": "4.0.11-beta-23409", + "System.Threading.Thread": "4.0.0-beta-23409", + "System.Threading.ThreadPool": "4.0.10-beta-23409", + "System.Threading.Timer": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.dll": {} + }, + "native": { + "runtimes/win7-x86/native/libuv.dll": {} + } + }, + "Microsoft.AspNet.StaticFiles/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.StaticFiles.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.StaticFiles.dll": {} + } + }, + "Microsoft.AspNet.Tooling.Razor/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Razor.Runtime": "4.0.0-beta8", + "Newtonsoft.Json": "6.0.6", + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Tooling.Razor.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Tooling.Razor.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.IO": "4.0.11-beta-23409", + "System.IO.FileSystem": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "type": "package" + }, + "Microsoft.CodeAnalysis.Common/1.1.0-beta1-20150928-02": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "1.0.0", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.1.0-alpha-00014" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.1.0-beta1-20150928-02": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.1.0-beta1-20150928-02]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CSharp/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Dynamic.Runtime": "4.0.0", + "System.Globalization": "4.0.10", + "System.Linq": "4.0.0", + "System.Linq.Expressions": "4.0.0", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Data.Edm/5.6.4": { + "type": "package", + "compile": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll": {} + }, + "runtime": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll": {} + }, + "resource": { + "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.Edm.resources.dll": { + "locale": "de" + }, + "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.Edm.resources.dll": { + "locale": "es" + }, + "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.Edm.resources.dll": { + "locale": "fr" + }, + "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.Edm.resources.dll": { + "locale": "it" + }, + "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.Edm.resources.dll": { + "locale": "ja" + }, + "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.Edm.resources.dll": { + "locale": "ko" + }, + "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.Edm.resources.dll": { + "locale": "ru" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.Edm.resources.dll": { + "locale": "zh-Hans" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.Edm.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.OData/5.6.4": { + "type": "package", + "dependencies": { + "Microsoft.Data.Edm": "[5.6.4]", + "System.Spatial": "[5.6.4]" + }, + "compile": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.OData.dll": {} + }, + "runtime": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.OData.dll": {} + }, + "resource": { + "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.OData.resources.dll": { + "locale": "de" + }, + "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.OData.resources.dll": { + "locale": "es" + }, + "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.OData.resources.dll": { + "locale": "fr" + }, + "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.OData.resources.dll": { + "locale": "it" + }, + "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.OData.resources.dll": { + "locale": "ja" + }, + "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.OData.resources.dll": { + "locale": "ko" + }, + "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.OData.resources.dll": { + "locale": "ru" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.OData.resources.dll": { + "locale": "zh-Hans" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.OData.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.Services.Client/5.6.4": { + "type": "package", + "dependencies": { + "Microsoft.Data.OData": "[5.6.4]" + }, + "compile": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Services.Client.dll": {} + }, + "runtime": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Services.Client.dll": {} + }, + "resource": { + "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.Services.Client.resources.dll": { + "locale": "de" + }, + "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.Services.Client.resources.dll": { + "locale": "es" + }, + "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.Services.Client.resources.dll": { + "locale": "fr" + }, + "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.Services.Client.resources.dll": { + "locale": "it" + }, + "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ja" + }, + "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ko" + }, + "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ru" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.Services.Client.resources.dll": { + "locale": "zh-Hans" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.Services.Client.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Dnx.Compilation.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "System.IO.FileSystem": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Dnx.Compilation.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Dnx.Compilation.Abstractions.dll": {} + } + }, + "Microsoft.Dnx.Compilation.CSharp.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.1.0-beta1-20150928-02", + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-beta8", + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Dnx.Compilation.CSharp.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Dnx.Compilation.CSharp.Abstractions.dll": {} + } + }, + "Microsoft.Dnx.Compilation.CSharp.Common/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.1.0-beta1-20150928-02", + "Microsoft.Dnx.Compilation.CSharp.Abstractions": "1.0.0-beta8", + "System.Console": "4.0.0-beta-23409", + "System.IO": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Dnx.Compilation.CSharp.Common.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Dnx.Compilation.CSharp.Common.dll": {} + } + }, + "Microsoft.Dnx.Runtime.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23409", + "System.ComponentModel": "4.0.1-beta-23409", + "System.IO": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime": "4.0.21-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Threading.Tasks": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Dnx.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Dnx.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Threading": "4.0.11-beta-23409", + "System.Threading.Tasks": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "System.Linq": "4.0.1-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.IO": "4.0.11-beta-23409", + "System.IO.FileSystem": "4.0.1-beta-23409", + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Runtime.InteropServices": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Linq": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8", + "System.ComponentModel.TypeConverter": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.FileExtensions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Json/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8", + "Microsoft.Framework.Configuration.FileExtensions": "1.0.0-beta8", + "Newtonsoft.Json": "6.0.6", + "System.Dynamic.Runtime": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Configuration.Json.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Configuration.Json.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.Threading": "4.0.11-beta-23409", + "System.Threading.Tasks": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-beta-23409", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Linq.Expressions": "4.0.11-beta-23409", + "System.Reflection": "4.1.0-beta-23225", + "System.Resources.ResourceManager": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.FileSystemGlobbing/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23409", + "System.IO.FileSystem": "4.0.1-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.FileSystemGlobbing.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.FileSystemGlobbing.dll": {} + } + }, + "Microsoft.Framework.Globalization.CultureInfoCache/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1-beta-23409", + "System.Collections": "4.0.11-beta-23409", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Globalization.CultureInfoCache.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Globalization.CultureInfoCache.dll": {} + } + }, + "Microsoft.Framework.Localization/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1-beta-23409", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Localization.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Resources.ReaderWriter": "4.0.0-beta-23409", + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Localization.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Localization.dll": {} + } + }, + "Microsoft.Framework.Localization.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1-beta-23409", + "System.Collections": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Localization.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Localization.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.ComponentModel": "4.0.1-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23409", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime": "4.0.21-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Runtime.InteropServices": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Console/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "System.Console": "4.0.0-beta-23409", + "System.IO": "4.0.11-beta-23409", + "System.Runtime": "4.0.21-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Logging.Console.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Logging.Console.dll": {} + } + }, + "Microsoft.Framework.Logging.Debug/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Logging.Debug.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Logging.Debug.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "System.ComponentModel": "4.0.1-beta-23409", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Linq.Expressions": "4.0.11-beta-23409", + "System.Reflection": "4.0.10", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Primitives/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Primitives.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Primitives.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-beta-23409", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.IO": "4.0.11-beta-23409", + "System.Reflection": "4.0.10", + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23409", + "System.Diagnostics.Contracts": "4.0.1-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Globalization.Extensions": "4.0.1-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409", + "System.Text.Encoding": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.VisualStudio.Web.BrowserLink.Loader/14.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta8", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces": "1.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Win32.Registry": "4.0.0-beta-23409", + "System.Collections": "4.0.10", + "System.Net.Sockets": "4.0.10-beta-23123", + "System.Reflection.Extensions": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "lib/dnxcore50/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.8": { + "type": "package", + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "runtime.win7.System.Console/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet/System.Console.dll": {} + } + }, + "runtime.win7.System.Diagnostics.Debug/4.0.11-beta-23409": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.win7.System.Diagnostics.TraceSource/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet/System.Diagnostics.TraceSource.dll": {} + } + }, + "runtime.win7.System.Globalization.Extensions/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "runtime.win7.System.IO.FileSystem/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet/System.IO.FileSystem.dll": {} + } + }, + "runtime.win7.System.IO.FileSystem.Watcher/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.IO.FileSystem": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet/System.IO.FileSystem.Watcher.dll": {} + } + }, + "runtime.win7.System.Net.Primitives/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Private.Networking": "4.0.1-beta-23409" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "runtime.win7.System.Private.Uri/4.0.1-beta-23409": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "runtime.win7.System.Runtime.Extensions/4.0.11-beta-23409": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23409", + "System.Text.Encoding": "4.0.0", + "System.Text.Encoding.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23409" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet/System.Security.Cryptography.Encoding.dll": {} + } + }, + "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Globalization.Calendars": "4.0.0", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Runtime.Numerics": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23409", + "System.Security.Cryptography.Cng": "4.0.0-beta-23409", + "System.Security.Cryptography.Csp": "4.0.0-beta-23409", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23409", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23409", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "runtime.win7.System.Threading/4.0.11-beta-23409": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Collections/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Globalization.Extensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.ComponentModel": "4.0.0", + "System.Globalization": "4.0.10", + "System.Linq": "4.0.0", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Text.RegularExpressions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.ComponentModel.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.ComponentModel": "4.0.0", + "System.ComponentModel.Primitives": "4.0.0", + "System.Globalization": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Console/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.StackTrace/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.StackTrace.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.StackTrace.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.21-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Diagnostics.Tracing.Telemetry/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet/System.Diagnostics.Tracing.Telemetry.dll": {} + }, + "runtime": { + "lib/dotnet/System.Diagnostics.Tracing.Telemetry.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Linq": "4.0.0", + "System.Linq.Expressions": "4.0.10", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Emit": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.IO": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.InteropServices": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.clrcompression-x86/4.0.0": { + "type": "package", + "native": { + "runtimes/win7-x86/native/clrcompression.dll": {} + } + }, + "System.IO.FileSystem/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.Linq": "4.0.0", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Emit": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.Compression": "4.0.0", + "System.Net.Primitives": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23225", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.dll": {} + } + }, + "System.Net.Primitives/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.0.10-beta-23123": { + "type": "package", + "dependencies": { + "System.Private.Networking": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/dotnet/System.Net.WebSockets.dll": {} + } + }, + "System.Numerics.Vectors/4.1.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/dotnet/System.Numerics.Vectors.dll": {} + } + }, + "System.ObjectModel/4.0.10": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Serialization.Primitives": "4.0.10-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Xml.ReaderWriter": "4.0.10-beta-23109", + "System.Xml.XmlSerializer": "4.0.10-beta-23109" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Private.Networking/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Collections": "4.0.10", + "System.Collections.Concurrent": "4.0.0", + "System.Collections.NonGeneric": "4.0.0", + "System.ComponentModel.EventBasedAsync": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23409", + "System.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.1-beta-23409": { + "type": "package", + "compile": { + "ref/dnxcore50/_._": {} + } + }, + "System.Reflection/4.1.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.1.0-alpha-00014": { + "type": "package", + "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": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ReaderWriter/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Resources.ReaderWriter.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ReaderWriter.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.21-beta-23409": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1-beta-23409" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.21-beta-23409": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.0.10-beta-23109": { + "type": "package", + "dependencies": { + "System.Private.DataContractSerialization": "4.0.0-beta-23109", + "System.Runtime.Serialization.Primitives": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Security.Claims/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.IO": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.0", + "System.Security.Principal": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23409" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23409", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23409" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Cng.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.Csp/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23409", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23409", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23409", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Csp.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Csp.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23409", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23409" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Diagnostics.Debug": "4.0.0", + "System.Reflection": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Claims": "4.0.0", + "System.Security.Principal": "4.0.0", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Spatial/5.6.4": { + "type": "package", + "compile": { + "lib/portable-net45+wp8+win8+wpa/System.Spatial.dll": {} + }, + "runtime": { + "lib/portable-net45+wp8+win8+wpa/System.Spatial.dll": {} + }, + "resource": { + "lib/portable-net45+wp8+win8+wpa/de/System.Spatial.resources.dll": { + "locale": "de" + }, + "lib/portable-net45+wp8+win8+wpa/es/System.Spatial.resources.dll": { + "locale": "es" + }, + "lib/portable-net45+wp8+win8+wpa/fr/System.Spatial.resources.dll": { + "locale": "fr" + }, + "lib/portable-net45+wp8+win8+wpa/it/System.Spatial.resources.dll": { + "locale": "it" + }, + "lib/portable-net45+wp8+win8+wpa/ja/System.Spatial.resources.dll": { + "locale": "ja" + }, + "lib/portable-net45+wp8+win8+wpa/ko/System.Spatial.resources.dll": { + "locale": "ko" + }, + "lib/portable-net45+wp8+win8+wpa/ru/System.Spatial.resources.dll": { + "locale": "ru" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hans/System.Spatial.resources.dll": { + "locale": "zh-Hans" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hant/System.Spatial.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Text.Encoding/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Text.Encoding": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/dotnet/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.InteropServices": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Text.RegularExpressions": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tools": "4.0.0", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.Reflection": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10", + "System.Xml.ReaderWriter": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Xml.ReaderWriter": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + } + }, + "WindowsAzure.Storage/6.1.1-preview": { + "type": "package", + "dependencies": { + "Microsoft.Data.OData": "5.6.4", + "Microsoft.Data.Services.Client": "5.6.4", + "Newtonsoft.Json": "6.0.8", + "System.Collections": "4.0.11-beta-23225", + "System.Collections.Concurrent": "4.0.11-beta-23225", + "System.Collections.Specialized": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.11-beta-23225", + "System.Diagnostics.Tools": "4.0.1-beta-23225", + "System.Diagnostics.TraceSource": "4.0.0-beta-23225", + "System.Diagnostics.Tracing": "4.0.21-beta-23225", + "System.Dynamic.Runtime": "4.0.11-beta-23225", + "System.Globalization": "4.0.11-beta-23225", + "System.IO": "4.0.11-beta-23225", + "System.IO.FileSystem": "4.0.1-beta-23225", + "System.IO.FileSystem.Primitives": "4.0.1-beta-23225", + "System.Linq": "4.0.1-beta-23225", + "System.Linq.Expressions": "4.0.11-beta-23225", + "System.Linq.Queryable": "4.0.0-beta-23109", + "System.Net.Http": "4.0.1-beta-23225", + "System.Net.Primitives": "4.0.11-beta-23225", + "System.Reflection": "4.1.0-beta-23225", + "System.Reflection.Extensions": "4.0.1-beta-23225", + "System.Reflection.TypeExtensions": "4.0.1-beta-23225", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.11-beta-23225", + "System.Runtime.InteropServices": "4.0.21-beta-23225", + "System.Runtime.Serialization.Primitives": "4.0.0-beta-23109", + "System.Runtime.Serialization.Xml": "4.0.10-beta-23109", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23225", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23225", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Spatial": "5.6.4", + "System.Text.Encoding": "4.0.11-beta-23225", + "System.Text.Encoding.Extensions": "4.0.11-beta-23225", + "System.Text.RegularExpressions": "4.0.11-beta-23225", + "System.Threading": "4.0.11-beta-23225", + "System.Threading.Tasks": "4.0.11-beta-23225", + "System.Threading.Thread": "4.0.0-beta-23225", + "System.Threading.ThreadPool": "4.0.10-beta-23225", + "System.Threading.Timer": "4.0.1-beta-23225", + "System.Xml.ReaderWriter": "4.0.11-beta-23225", + "System.Xml.XDocument": "4.0.11-beta-23225", + "System.Xml.XmlSerializer": "4.0.0-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.WindowsAzure.Storage.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.WindowsAzure.Storage.dll": {} + } + } + }, + "DNXCore,Version=v5.0/win7-x64": { + "AzureTableStorageCache/1.0.0": { + "type": "project", + "framework": "DNXCore,Version=v5.0", + "dependencies": { + "Microsoft.CSharp": "4.0.1-beta-23409", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409", + "System.Threading": "4.0.11-beta-23409", + "WindowsAzure.Storage": "6.1.1-preview" + } + }, + "Microsoft.AspNet.Antiforgery/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.DataProtection": "1.0.0-beta8", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Antiforgery.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Antiforgery.dll": {} + } + }, + "Microsoft.AspNet.Authorization/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Authorization.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Authorization.dll": {} + } + }, + "Microsoft.AspNet.Cors.Core/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Cors.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Cors.Core.dll": {} + } + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.Runtime.Handles": "4.0.1-beta-23409", + "System.Runtime.InteropServices": "4.0.21-beta-23409", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Cryptography.Internal": "1.0.0-beta8", + "Microsoft.AspNet.DataProtection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "Microsoft.Win32.Registry": "4.0.0-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Reflection.Extensions": "4.0.1-beta-23409", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Security.Claims": "4.0.1-beta-23409", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23409", + "System.Security.Principal.Windows": "4.0.0-beta-23409", + "System.Xml.XDocument": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.dll": {} + } + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "System.ComponentModel": "4.0.1-beta-23409", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23409", + "System.Text.Encoding.Extensions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Diagnostics/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Diagnostics.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta8", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta8", + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8", + "System.Reflection.Extensions": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Diagnostics.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Diagnostics.dll": {} + } + }, + "Microsoft.AspNet.Diagnostics.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Diagnostics.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Diagnostics.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8", + "System.IO": "4.0.11-beta-23409", + "System.Resources.ResourceManager": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.IO.FileSystem": "4.0.1-beta-23409", + "System.IO.FileSystem.Primitives": "4.0.1-beta-23409", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Text.RegularExpressions": "4.0.11-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta8", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Http": "1.0.0-beta8", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Configuration": "1.0.0-beta8", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta8", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta8", + "Microsoft.Framework.Configuration.Json": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta8", + "Microsoft.Framework.Logging": "1.0.0-beta8", + "Newtonsoft.Json": "6.0.6", + "System.Console": "4.0.0-beta-23409", + "System.Diagnostics.StackTrace": "4.0.1-beta-23409", + "System.Diagnostics.Tracing.Telemetry": "4.0.0-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta8", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Html.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8", + "System.Resources.ResourceManager": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Html.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Html.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta8", + "Microsoft.Net.Http.Headers": "1.0.0-beta8", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.Text.Encoding": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Diagnostics.Tools": "4.0.1-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Globalization.Extensions": "4.0.1-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Linq.Expressions": "4.0.11-beta-23409", + "System.Net.Primitives": "4.0.11-beta-23409", + "System.Net.WebSockets": "4.0.0-beta-23409", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409", + "System.Runtime.InteropServices": "4.0.21-beta-23409", + "System.Security.Claims": "4.0.1-beta-23409", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23409", + "System.Security.Principal": "4.0.1-beta-23409", + "System.Threading.Tasks": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8", + "Microsoft.Net.Http.Headers": "1.0.0-beta8", + "System.IO.FileSystem": "4.0.1-beta-23409", + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Net.Primitives": "4.0.11-beta-23409", + "System.Net.WebSockets": "4.0.0-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Security.Claims": "4.0.1-beta-23409", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23409", + "System.Security.Principal": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.IISPlatformHandler/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "System.Security.Principal.Windows": "4.0.0-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.IISPlatformHandler.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.IISPlatformHandler.dll": {} + } + }, + "Microsoft.AspNet.JsonPatch/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1-beta-23409", + "Newtonsoft.Json": "6.0.6", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.ComponentModel.TypeConverter": "4.0.1-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Reflection.Extensions": "4.0.1-beta-23409", + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Text.Encoding.Extensions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.JsonPatch.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.JsonPatch.dll": {} + } + }, + "Microsoft.AspNet.Localization/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.CSharp": "4.0.1-beta-23409", + "Microsoft.Framework.Globalization.CultureInfoCache": "1.0.0-beta8", + "Microsoft.Framework.Localization.Abstractions": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Localization.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Localization.dll": {} + } + }, + "Microsoft.AspNet.Mvc/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.ApiExplorer": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Cors": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.DataAnnotations": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Formatters.Json": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Localization": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Razor": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.ViewFeatures": "6.0.0-beta8", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Abstractions/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Routing": "1.0.0-beta8", + "Microsoft.CSharp": "4.0.1-beta-23409", + "System.ComponentModel.TypeConverter": "4.0.1-beta-23409", + "System.Reflection.Extensions": "4.0.1-beta-23409", + "System.Text.Encoding.Extensions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Mvc.ApiExplorer/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.ApiExplorer.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.ApiExplorer.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Core/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Authorization": "1.0.0-beta8", + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Mvc.Abstractions": "6.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "System.Diagnostics.Tracing.Telemetry": "4.0.0-beta-23409", + "System.Text.Encoding": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Core.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Cors/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Cors.Core": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Cors.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Cors.dll": {} + } + }, + "Microsoft.AspNet.Mvc.DataAnnotations/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8", + "Microsoft.Framework.Localization": "1.0.0-beta8", + "System.ComponentModel.Annotations": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.DataAnnotations.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.DataAnnotations.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Formatters.Json/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.JsonPatch": "1.0.0-beta8", + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8", + "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.Localization/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Localization": "1.0.0-beta8", + "Microsoft.AspNet.Mvc.Razor": "6.0.0-beta8", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta8", + "Microsoft.Framework.Localization": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Localization.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Localization.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Razor/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.Razor.Host": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.ViewFeatures": "6.0.0-beta8", + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces": "1.0.0-beta8", + "Microsoft.AspNet.Razor.Runtime.Precompilation": "4.0.0-beta8", + "Microsoft.Dnx.Compilation.CSharp.Abstractions": "1.0.0-beta8", + "Microsoft.Dnx.Compilation.CSharp.Common": "1.0.0-beta8", + "System.Text.Encoding": "4.0.11-beta-23409", + "System.Threading.Tasks.Parallel": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Razor.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Razor.dll": {} + } + }, + "Microsoft.AspNet.Mvc.Razor.Host/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta8", + "Microsoft.AspNet.Razor.Runtime": "4.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta8", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.ComponentModel.TypeConverter": "4.0.1-beta-23409", + "System.Reflection.Extensions": "4.0.1-beta-23409", + "System.Text.Encoding.Extensions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Razor.Host.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.Razor.Host.dll": {} + } + }, + "Microsoft.AspNet.Mvc.TagHelpers/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Mvc.Razor": "6.0.0-beta8", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta8", + "Microsoft.Framework.FileSystemGlobbing": "1.0.0-beta8", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.TagHelpers.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.TagHelpers.dll": {} + } + }, + "Microsoft.AspNet.Mvc.ViewFeatures/6.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Antiforgery": "1.0.0-beta8", + "Microsoft.AspNet.Diagnostics.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Html.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Mvc.Core": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.DataAnnotations": "6.0.0-beta8", + "Microsoft.AspNet.Mvc.Formatters.Json": "6.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.ViewFeatures.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Mvc.ViewFeatures.dll": {} + } + }, + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.IO": "4.0.11-beta-23409", + "System.Resources.ResourceManager": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.PageExecutionInstrumentation.Interfaces.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.PageExecutionInstrumentation.Interfaces.dll": {} + } + }, + "Microsoft.AspNet.Razor/4.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Diagnostics.Tools": "4.0.1-beta-23409", + "System.IO.FileSystem": "4.0.1-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23409", + "System.Threading.Thread": "4.0.0-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Razor.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Razor.dll": {} + } + }, + "Microsoft.AspNet.Razor.Runtime/4.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Html.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Razor": "4.0.0-beta8", + "System.Reflection.Extensions": "4.0.1-beta-23409", + "System.Text.RegularExpressions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Razor.Runtime.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Razor.Runtime.dll": {} + } + }, + "Microsoft.AspNet.Razor.Runtime.Precompilation/4.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Razor.Runtime": "4.0.0-beta8", + "Microsoft.Dnx.Compilation.CSharp.Abstractions": "1.0.0-beta8", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.Linq.Expressions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Razor.Runtime.Precompilation.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Razor.Runtime.Precompilation.dll": {} + } + }, + "Microsoft.AspNet.Routing/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "System.Text.RegularExpressions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Routing.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Routing.dll": {} + } + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Hosting": "1.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.Diagnostics.TraceSource": "4.0.0-beta-23409", + "System.Diagnostics.Tracing": "4.0.21-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.IO": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Net.Primitives": "4.0.11-beta-23409", + "System.Numerics.Vectors": "4.1.1-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Runtime.InteropServices": "4.0.21-beta-23409", + "System.Text.Encoding": "4.0.11-beta-23409", + "System.Threading": "4.0.11-beta-23409", + "System.Threading.Tasks": "4.0.11-beta-23409", + "System.Threading.Thread": "4.0.0-beta-23409", + "System.Threading.ThreadPool": "4.0.10-beta-23409", + "System.Threading.Timer": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Server.Kestrel.dll": {} + }, + "native": { + "runtimes/win7-x64/native/libuv.dll": {} + } + }, + "Microsoft.AspNet.StaticFiles/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.StaticFiles.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.StaticFiles.dll": {} + } + }, + "Microsoft.AspNet.Tooling.Razor/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.Razor.Runtime": "4.0.0-beta8", + "Newtonsoft.Json": "6.0.6", + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Tooling.Razor.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Tooling.Razor.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.IO": "4.0.11-beta-23409", + "System.IO.FileSystem": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "type": "package" + }, + "Microsoft.CodeAnalysis.Common/1.1.0-beta1-20150928-02": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "1.0.0", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.1.0-alpha-00014" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.1.0-beta1-20150928-02": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.1.0-beta1-20150928-02]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CSharp/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Dynamic.Runtime": "4.0.0", + "System.Globalization": "4.0.10", + "System.Linq": "4.0.0", + "System.Linq.Expressions": "4.0.0", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Data.Edm/5.6.4": { + "type": "package", + "compile": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll": {} + }, + "runtime": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll": {} + }, + "resource": { + "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.Edm.resources.dll": { + "locale": "de" + }, + "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.Edm.resources.dll": { + "locale": "es" + }, + "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.Edm.resources.dll": { + "locale": "fr" + }, + "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.Edm.resources.dll": { + "locale": "it" + }, + "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.Edm.resources.dll": { + "locale": "ja" + }, + "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.Edm.resources.dll": { + "locale": "ko" + }, + "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.Edm.resources.dll": { + "locale": "ru" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.Edm.resources.dll": { + "locale": "zh-Hans" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.Edm.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.OData/5.6.4": { + "type": "package", + "dependencies": { + "Microsoft.Data.Edm": "[5.6.4]", + "System.Spatial": "[5.6.4]" + }, + "compile": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.OData.dll": {} + }, + "runtime": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.OData.dll": {} + }, + "resource": { + "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.OData.resources.dll": { + "locale": "de" + }, + "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.OData.resources.dll": { + "locale": "es" + }, + "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.OData.resources.dll": { + "locale": "fr" + }, + "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.OData.resources.dll": { + "locale": "it" + }, + "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.OData.resources.dll": { + "locale": "ja" + }, + "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.OData.resources.dll": { + "locale": "ko" + }, + "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.OData.resources.dll": { + "locale": "ru" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.OData.resources.dll": { + "locale": "zh-Hans" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.OData.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.Services.Client/5.6.4": { + "type": "package", + "dependencies": { + "Microsoft.Data.OData": "[5.6.4]" + }, + "compile": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Services.Client.dll": {} + }, + "runtime": { + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Services.Client.dll": {} + }, + "resource": { + "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.Services.Client.resources.dll": { + "locale": "de" + }, + "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.Services.Client.resources.dll": { + "locale": "es" + }, + "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.Services.Client.resources.dll": { + "locale": "fr" + }, + "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.Services.Client.resources.dll": { + "locale": "it" + }, + "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ja" + }, + "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ko" + }, + "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.Services.Client.resources.dll": { + "locale": "ru" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.Services.Client.resources.dll": { + "locale": "zh-Hans" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.Services.Client.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Dnx.Compilation.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "System.IO.FileSystem": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Dnx.Compilation.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Dnx.Compilation.Abstractions.dll": {} + } + }, + "Microsoft.Dnx.Compilation.CSharp.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.1.0-beta1-20150928-02", + "Microsoft.Dnx.Compilation.Abstractions": "1.0.0-beta8", + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Dnx.Compilation.CSharp.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Dnx.Compilation.CSharp.Abstractions.dll": {} + } + }, + "Microsoft.Dnx.Compilation.CSharp.Common/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.1.0-beta1-20150928-02", + "Microsoft.Dnx.Compilation.CSharp.Abstractions": "1.0.0-beta8", + "System.Console": "4.0.0-beta-23409", + "System.IO": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Dnx.Compilation.CSharp.Common.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Dnx.Compilation.CSharp.Common.dll": {} + } + }, + "Microsoft.Dnx.Runtime.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23409", + "System.ComponentModel": "4.0.1-beta-23409", + "System.IO": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime": "4.0.21-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Threading.Tasks": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Dnx.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Dnx.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Primitives": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Threading": "4.0.11-beta-23409", + "System.Threading.Tasks": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "System.Linq": "4.0.1-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.IO": "4.0.11-beta-23409", + "System.IO.FileSystem": "4.0.1-beta-23409", + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Runtime.InteropServices": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Linq": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8", + "System.ComponentModel.TypeConverter": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.FileExtensions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Json/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta8", + "Microsoft.Framework.Configuration.FileExtensions": "1.0.0-beta8", + "Newtonsoft.Json": "6.0.6", + "System.Dynamic.Runtime": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Configuration.Json.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Configuration.Json.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.Threading": "4.0.11-beta-23409", + "System.Threading.Tasks": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-beta-23409", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Linq.Expressions": "4.0.11-beta-23409", + "System.Reflection": "4.1.0-beta-23225", + "System.Resources.ResourceManager": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.FileSystemGlobbing/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23409", + "System.IO.FileSystem": "4.0.1-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.FileSystemGlobbing.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.FileSystemGlobbing.dll": {} + } + }, + "Microsoft.Framework.Globalization.CultureInfoCache/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1-beta-23409", + "System.Collections": "4.0.11-beta-23409", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Globalization.CultureInfoCache.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Globalization.CultureInfoCache.dll": {} + } + }, + "Microsoft.Framework.Localization/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1-beta-23409", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Localization.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Resources.ReaderWriter": "4.0.0-beta-23409", + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Localization.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Localization.dll": {} + } + }, + "Microsoft.Framework.Localization.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1-beta-23409", + "System.Collections": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Localization.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Localization.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.ComponentModel": "4.0.1-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23409", + "System.Collections.Concurrent": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Reflection": "4.1.0-beta-23225", + "System.Runtime": "4.0.21-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Runtime.InteropServices": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging.Console/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "System.Console": "4.0.0-beta-23409", + "System.IO": "4.0.11-beta-23409", + "System.Runtime": "4.0.21-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Logging.Console.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Logging.Console.dll": {} + } + }, + "Microsoft.Framework.Logging.Debug/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta8", + "System.Collections": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Logging.Debug.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Logging.Debug.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta8", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "System.ComponentModel": "4.0.1-beta-23409", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Linq.Expressions": "4.0.11-beta-23409", + "System.Reflection": "4.0.10", + "System.Reflection.TypeExtensions": "4.0.1-beta-23409", + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Primitives/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Primitives.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Primitives.dll": {} + } + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta8", + "Microsoft.Framework.OptionsModel": "1.0.0-beta8", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta8" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-beta-23409", + "System.Diagnostics.Debug": "4.0.11-beta-23409", + "System.IO": "4.0.11-beta-23409", + "System.Reflection": "4.0.10", + "System.Resources.ResourceManager": "4.0.1-beta-23409", + "System.Runtime.Extensions": "4.0.11-beta-23409", + "System.Threading": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta8": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-beta-23409", + "System.Diagnostics.Contracts": "4.0.1-beta-23409", + "System.Globalization": "4.0.11-beta-23409", + "System.Globalization.Extensions": "4.0.1-beta-23409", + "System.Linq": "4.0.1-beta-23409", + "System.Runtime": "4.0.21-beta-23409", + "System.Text.Encoding": "4.0.11-beta-23409" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.VisualStudio.Web.BrowserLink.Loader/14.0.0-beta8": { + "type": "package", + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta8", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta8", + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces": "1.0.0-beta8", + "Microsoft.Dnx.Runtime.Abstractions": "1.0.0-beta8", + "Microsoft.Win32.Registry": "4.0.0-beta-23409", + "System.Collections": "4.0.10", + "System.Net.Sockets": "4.0.10-beta-23123", + "System.Reflection.Extensions": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "lib/dnxcore50/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.8": { + "type": "package", + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "runtime.win7.System.Console/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet/System.Console.dll": {} + } + }, + "runtime.win7.System.Diagnostics.Debug/4.0.11-beta-23409": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "runtime.win7.System.Diagnostics.TraceSource/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet/System.Diagnostics.TraceSource.dll": {} + } + }, + "runtime.win7.System.Globalization.Extensions/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "runtime.win7.System.IO.FileSystem/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet/System.IO.FileSystem.dll": {} + } + }, + "runtime.win7.System.IO.FileSystem.Watcher/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.IO.FileSystem": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet/System.IO.FileSystem.Watcher.dll": {} + } + }, + "runtime.win7.System.Net.Primitives/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Private.Networking": "4.0.1-beta-23409" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "runtime.win7.System.Private.Uri/4.0.1-beta-23409": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "runtime.win7.System.Runtime.Extensions/4.0.11-beta-23409": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23409", + "System.Text.Encoding": "4.0.0", + "System.Text.Encoding.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23409" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet/System.Security.Cryptography.Encoding.dll": {} + } + }, + "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Globalization.Calendars": "4.0.0", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Runtime.Numerics": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23409", + "System.Security.Cryptography.Cng": "4.0.0-beta-23409", + "System.Security.Cryptography.Csp": "4.0.0-beta-23409", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23409", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23409", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "runtime.win7.System.Threading/4.0.11-beta-23409": { + "type": "package", + "compile": { + "ref/dotnet/_._": {} + }, + "runtime": { + "runtimes/win7/lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Collections/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.21-beta-23409" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.36": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Globalization.Extensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.ComponentModel": "4.0.0", + "System.Globalization": "4.0.10", + "System.Linq": "4.0.0", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Text.RegularExpressions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.ComponentModel.Primitives/4.0.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.ComponentModel": "4.0.0", + "System.ComponentModel.Primitives": "4.0.0", + "System.Globalization": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Console/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.StackTrace/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.StackTrace.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.StackTrace.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.21-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Diagnostics.Tracing.Telemetry/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading": "4.0.0" + }, + "compile": { + "lib/dotnet/System.Diagnostics.Tracing.Telemetry.dll": {} + }, + "runtime": { + "lib/dotnet/System.Diagnostics.Tracing.Telemetry.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.Linq": "4.0.0", + "System.Linq.Expressions": "4.0.10", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Emit": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.IO": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.InteropServices": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.clrcompression-x64/4.0.0": { + "type": "package", + "native": { + "runtimes/win7-x64/native/clrcompression.dll": {} + } + }, + "System.IO.FileSystem/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Text.Encoding": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.Linq": "4.0.0", + "System.ObjectModel": "4.0.10", + "System.Reflection": "4.0.10", + "System.Reflection.Emit": "4.0.0", + "System.Reflection.Extensions": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Reflection.TypeExtensions": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.0.1-beta-23225": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.Compression": "4.0.0", + "System.Net.Primitives": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23225", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.dll": {} + } + }, + "System.Net.Primitives/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.0.10-beta-23123": { + "type": "package", + "dependencies": { + "System.Private.Networking": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/dotnet/System.Net.WebSockets.dll": {} + } + }, + "System.Numerics.Vectors/4.1.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Extensions": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/dotnet/System.Numerics.Vectors.dll": {} + } + }, + "System.ObjectModel/4.0.10": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Serialization.Primitives": "4.0.10-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Xml.ReaderWriter": "4.0.10-beta-23109", + "System.Xml.XmlSerializer": "4.0.10-beta-23109" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Private.Networking/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0", + "System.Collections": "4.0.10", + "System.Collections.Concurrent": "4.0.0", + "System.Collections.NonGeneric": "4.0.0", + "System.ComponentModel.EventBasedAsync": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23409", + "System.Threading": "4.0.10", + "System.Threading.Overlapped": "4.0.0", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.1-beta-23409": { + "type": "package", + "compile": { + "ref/dnxcore50/_._": {} + } + }, + "System.Reflection/4.1.0-beta-23225": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Reflection": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Emit.ILGeneration": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.1.0-alpha-00014": { + "type": "package", + "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": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ReaderWriter/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Resources.ReaderWriter.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ReaderWriter.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.0", + "System.Reflection": "4.0.0", + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.21-beta-23409": { + "type": "package", + "dependencies": { + "System.Private.Uri": "4.0.1-beta-23409" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.20" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.21-beta-23409": { + "type": "package", + "dependencies": { + "System.Reflection": "4.0.0", + "System.Reflection.Primitives": "4.0.0", + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.0.10-beta-23109": { + "type": "package", + "dependencies": { + "System.Private.DataContractSerialization": "4.0.0-beta-23109", + "System.Runtime.Serialization.Primitives": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Security.Claims/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.IO": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.0", + "System.Security.Principal": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0", + "System.Runtime": "4.0.0", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23409" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Cng/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23409", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23409" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Cng.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Security.Cryptography.Csp/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.IO": "4.0.10", + "System.Reflection": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23409", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23409", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23409", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Csp.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Csp.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Primitives/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.0.0", + "System.Globalization": "4.0.0", + "System.IO": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Threading": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23409", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23409" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.0", + "System.Diagnostics.Debug": "4.0.0", + "System.Reflection": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.0", + "System.Runtime.Handles": "4.0.0", + "System.Runtime.InteropServices": "4.0.20", + "System.Security.Claims": "4.0.0", + "System.Security.Principal": "4.0.0", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Spatial/5.6.4": { + "type": "package", + "compile": { + "lib/portable-net45+wp8+win8+wpa/System.Spatial.dll": {} + }, + "runtime": { + "lib/portable-net45+wp8+win8+wpa/System.Spatial.dll": {} + }, + "resource": { + "lib/portable-net45+wp8+win8+wpa/de/System.Spatial.resources.dll": { + "locale": "de" + }, + "lib/portable-net45+wp8+win8+wpa/es/System.Spatial.resources.dll": { + "locale": "es" + }, + "lib/portable-net45+wp8+win8+wpa/fr/System.Spatial.resources.dll": { + "locale": "fr" + }, + "lib/portable-net45+wp8+win8+wpa/it/System.Spatial.resources.dll": { + "locale": "it" + }, + "lib/portable-net45+wp8+win8+wpa/ja/System.Spatial.resources.dll": { + "locale": "ja" + }, + "lib/portable-net45+wp8+win8+wpa/ko/System.Spatial.resources.dll": { + "locale": "ko" + }, + "lib/portable-net45+wp8+win8+wpa/ru/System.Spatial.resources.dll": { + "locale": "ru" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hans/System.Spatial.resources.dll": { + "locale": "zh-Hans" + }, + "lib/portable-net45+wp8+win8+wpa/zh-Hant/System.Spatial.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Text.Encoding/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Text.Encoding": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Globalization": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Threading.Tasks": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.Handles": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tracing": "4.0.20", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Threading": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.Parallel.dll": {} + }, + "runtime": { + "lib/dotnet/System.Threading.Tasks.Parallel.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0", + "System.Runtime.InteropServices": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.1-beta-23409": { + "type": "package", + "dependencies": { + "System.Runtime": "4.0.0" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.11-beta-23225": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.IO.FileSystem": "4.0.0", + "System.IO.FileSystem.Primitives": "4.0.0", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Runtime.InteropServices": "4.0.20", + "System.Text.Encoding": "4.0.10", + "System.Text.Encoding.Extensions": "4.0.10", + "System.Text.RegularExpressions": "4.0.10", + "System.Threading.Tasks": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.11-beta-23409": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.10", + "System.Diagnostics.Debug": "4.0.10", + "System.Diagnostics.Tools": "4.0.0", + "System.Globalization": "4.0.10", + "System.IO": "4.0.10", + "System.Reflection": "4.0.10", + "System.Resources.ResourceManager": "4.0.0", + "System.Runtime": "4.0.20", + "System.Runtime.Extensions": "4.0.10", + "System.Text.Encoding": "4.0.10", + "System.Threading": "4.0.10", + "System.Xml.ReaderWriter": "4.0.10" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.0-beta-23109": { + "type": "package", + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Xml.ReaderWriter": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + } + }, + "WindowsAzure.Storage/6.1.1-preview": { + "type": "package", + "dependencies": { + "Microsoft.Data.OData": "5.6.4", + "Microsoft.Data.Services.Client": "5.6.4", + "Newtonsoft.Json": "6.0.8", + "System.Collections": "4.0.11-beta-23225", + "System.Collections.Concurrent": "4.0.11-beta-23225", + "System.Collections.Specialized": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.11-beta-23225", + "System.Diagnostics.Tools": "4.0.1-beta-23225", + "System.Diagnostics.TraceSource": "4.0.0-beta-23225", + "System.Diagnostics.Tracing": "4.0.21-beta-23225", + "System.Dynamic.Runtime": "4.0.11-beta-23225", + "System.Globalization": "4.0.11-beta-23225", + "System.IO": "4.0.11-beta-23225", + "System.IO.FileSystem": "4.0.1-beta-23225", + "System.IO.FileSystem.Primitives": "4.0.1-beta-23225", + "System.Linq": "4.0.1-beta-23225", + "System.Linq.Expressions": "4.0.11-beta-23225", + "System.Linq.Queryable": "4.0.0-beta-23109", + "System.Net.Http": "4.0.1-beta-23225", + "System.Net.Primitives": "4.0.11-beta-23225", + "System.Reflection": "4.1.0-beta-23225", + "System.Reflection.Extensions": "4.0.1-beta-23225", + "System.Reflection.TypeExtensions": "4.0.1-beta-23225", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.11-beta-23225", + "System.Runtime.InteropServices": "4.0.21-beta-23225", + "System.Runtime.Serialization.Primitives": "4.0.0-beta-23109", + "System.Runtime.Serialization.Xml": "4.0.10-beta-23109", + "System.Security.Cryptography.Algorithms": "4.0.0-beta-23225", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23225", + "System.Security.Cryptography.Primitives": "4.0.0-beta-23225", + "System.Spatial": "5.6.4", + "System.Text.Encoding": "4.0.11-beta-23225", + "System.Text.Encoding.Extensions": "4.0.11-beta-23225", + "System.Text.RegularExpressions": "4.0.11-beta-23225", + "System.Threading": "4.0.11-beta-23225", + "System.Threading.Tasks": "4.0.11-beta-23225", + "System.Threading.Thread": "4.0.0-beta-23225", + "System.Threading.ThreadPool": "4.0.10-beta-23225", + "System.Threading.Timer": "4.0.1-beta-23225", + "System.Xml.ReaderWriter": "4.0.11-beta-23225", + "System.Xml.XDocument": "4.0.11-beta-23225", + "System.Xml.XmlSerializer": "4.0.0-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.WindowsAzure.Storage.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.WindowsAzure.Storage.dll": {} + } + } + } + }, + "libraries": { + "AzureTableStorageCache/1.0.0": { + "type": "project", + "path": "../AzureTableStorageCache/project.json" + }, + "Microsoft.AspNet.Antiforgery/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "My35Z9/SCt10QWsCey6aDUnJ1Vi3eFj79aLN8Gg7mk0TBgqUR/PBvQzCnlRex5oMg+g3Edqj/abTJUstlcu8FA==", + "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-beta8.nupkg", + "Microsoft.AspNet.Antiforgery.1.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Antiforgery.nuspec" + ] + }, + "Microsoft.AspNet.Authorization/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "9QQtgVWALSwyQgok0YFI1/UISvsN8tK4BaLKEnkRpRaJhsgUFc+TdrdjpmdpLIazSZ1YTRecR6irfAcFajokXw==", + "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-beta8.nupkg", + "Microsoft.AspNet.Authorization.1.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Authorization.nuspec" + ] + }, + "Microsoft.AspNet.Cors.Core/6.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "w00ANdLwP22/vLZF/4UFhXtgzBbKvW3EralXGhY31MS2DmZiUwseDrdJMdChPa6XG559aapUIv2W8HAa1G+K+w==", + "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.6.0.0-beta8.nupkg", + "Microsoft.AspNet.Cors.Core.6.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Cors.Core.nuspec" + ] + }, + "Microsoft.AspNet.Cryptography.Internal/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "J67SBINXrpZkijuPZRVCs1kAksiu3t3f6ARKrIDI5B7IsPHoKi0zz9eMlzVlhL70/pI358vHZ65a8oi5fgVsEQ==", + "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-beta8.nupkg", + "Microsoft.AspNet.Cryptography.Internal.1.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Cryptography.Internal.nuspec" + ] + }, + "Microsoft.AspNet.DataProtection/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "DirYiN2VbxjyQrQw1n/cGrF8rnRqa9q7KuWRhlwfiRv2rlxpzsm5ldK0S50c3ikAvHjYRUiYEaWaciRmsmdSbA==", + "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-beta8.nupkg", + "Microsoft.AspNet.DataProtection.1.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.DataProtection.nuspec" + ] + }, + "Microsoft.AspNet.DataProtection.Abstractions/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "yWqxyReY+vwEXvbi3qZNKLuErt49yPNHQfxH7HmJj2nmvJdOnUV9R+hM8X0xMSY1axxtuH9r+XdgcnQxoxmdrw==", + "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-beta8.nupkg", + "Microsoft.AspNet.DataProtection.Abstractions.1.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.DataProtection.Abstractions.nuspec" + ] + }, + "Microsoft.AspNet.Diagnostics/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "HGByiHoaozNzsAwRLsKuVlb8LugZVlv+gF/J869PNK8oeHg+LU6tVlAQ8qq2YYMibgJM9nL/fxu/4iB2hVX4tw==", + "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-beta8.nupkg", + "Microsoft.AspNet.Diagnostics.1.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Diagnostics.nuspec" + ] + }, + "Microsoft.AspNet.Diagnostics.Abstractions/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "T7Uu6i61gXQdtdGnJv36ECLfOIGLW5CCyZ/RPFaq5T3hV5BDRvf+QUhLJkJ5KvQmZCQ8aLZKaL38H+bjrdU43w==", + "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-beta8.nupkg", + "Microsoft.AspNet.Diagnostics.Abstractions.1.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Diagnostics.Abstractions.nuspec" + ] + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "5tWBeetRF6s45E7iN3cfl0Vu8Zdd9mKVJLQB9LED3PUQ3O3k0dfnHmBDWK8HsZmDRJpPOKVk/NfDh46lG9n7VA==", + "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-beta8.nupkg", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Abstractions.nuspec" + ] + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "3rzqnoVFPtTe2X8jPLGjfLJLVd1USawPUm5ZGxLjIdk9sSBcnYd1ZVSiuzvoqMbxnuMAQgKpT/80vWYUW0Cz7A==", + "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-beta8.nupkg", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Physical.nuspec" + ] + }, + "Microsoft.AspNet.Hosting/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "qzF58Si7bKeSy0A2GWyrUkqZm7VFydT0JJWO09hcqIwNLFguw51x5N6BFwzKa78QFZXdoN77uGh2ck++83qfQA==", + "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-beta8.nupkg", + "Microsoft.AspNet.Hosting.1.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Hosting.nuspec" + ] + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "Gj33JLrT5TQJrJF8djVrZDIdJiL305qU7C8aetn0+Z5138wewWFyKdrcGab6z0DwabSMMMx4NMSaFLGanOHZFg==", + "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-beta8.nupkg", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Hosting.Abstractions.nuspec" + ] + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "BNXJvw5VVzEWIW0gHtR4GygOE9CzsB4uXS5qMbjJmgrSwVlP+zseXwMxKRgwz1m1wN4shtnTRha3iGH9D4E1fw==", + "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-beta8.nupkg", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Hosting.Server.Abstractions.nuspec" + ] + }, + "Microsoft.AspNet.Html.Abstractions/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "Xz4kwkpE4+jjizQFC0xOkZCh1X+qR9iwKUK+6/nvgr/Qq3FuRJ1Ph1gTnSGdHRE4tMH3sJNNSoTtOjb/weRzCg==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Html.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.Html.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.Html.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.Html.Abstractions.xml", + "lib/net45/Microsoft.AspNet.Html.Abstractions.dll", + "lib/net45/Microsoft.AspNet.Html.Abstractions.xml", + "Microsoft.AspNet.Html.Abstractions.1.0.0-beta8.nupkg", + "Microsoft.AspNet.Html.Abstractions.1.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Html.Abstractions.nuspec" + ] + }, + "Microsoft.AspNet.Http/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "ZNeUVdEQDHtaqJATo96DmlPSgq/g2op0JXaRM/of1opsfbIdmrZlx8f/zn6pOCzL0F8X8fnDIil3bEhnLq6AYg==", + "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-beta8.nupkg", + "Microsoft.AspNet.Http.1.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec" + ] + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "/ACoXcPQcqsNmHLN+ZvlgIGn/oRrIFOKO6its0EJLLRTq/qhcAgbTPhweEJlM8DtE56Q12xEO/+DyeSh/ZBldg==", + "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-beta8.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec" + ] + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "PYOtVqU254kU+7IuN+krRtwCfUwqvYyAynSS4K279vCPlhgeHUMEaBu6m7I/9jns65L/cD20WopQtXZ/EOcBfw==", + "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-beta8.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec" + ] + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "fXUDl/0HSqgJFXE4MBjJQG3CQGwnYu6h2ALnnhOi66uf1379dngAQUyFJTUNQC9u+raRV8ocEsTRfyMq+0BBKQ==", + "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-beta8.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec" + ] + }, + "Microsoft.AspNet.IISPlatformHandler/1.0.0-beta8": { + "type": "package", + "sha512": "+PSE7BrucroIWZw8C1fQilmuo84ToZ//5Ek7AJ77JSL0SrCK+KrzrmcywDRBLruUuVZbkjHkFW3OA+VFwKOkuA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.IISPlatformHandler.dll", + "lib/dnx451/Microsoft.AspNet.IISPlatformHandler.xml", + "lib/dnxcore50/Microsoft.AspNet.IISPlatformHandler.dll", + "lib/dnxcore50/Microsoft.AspNet.IISPlatformHandler.xml", + "Microsoft.AspNet.IISPlatformHandler.1.0.0-beta8.nupkg", + "Microsoft.AspNet.IISPlatformHandler.1.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.IISPlatformHandler.nuspec" + ] + }, + "Microsoft.AspNet.JsonPatch/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "4l7B0GCa2Rc51riVa74QqqJZtehDAVHIzqKPN8N0sVqs6s7WJM9eOCaiO+nhu8mOeEl0HcLifUQFrE6+t99Vdw==", + "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-beta8.nupkg", + "Microsoft.AspNet.JsonPatch.1.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.JsonPatch.nuspec" + ] + }, + "Microsoft.AspNet.Localization/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "W3G3kSSxoQ309Zb7uMTbzM/CcD4G3RsHkA2aD4cVP6Y9aaRNxSMaYhl0nqdz+x/Z+kQR1JySN9EzMWdqOgnpdA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Localization.dll", + "lib/dnx451/Microsoft.AspNet.Localization.xml", + "lib/dnxcore50/Microsoft.AspNet.Localization.dll", + "lib/dnxcore50/Microsoft.AspNet.Localization.xml", + "Microsoft.AspNet.Localization.1.0.0-beta8.nupkg", + "Microsoft.AspNet.Localization.1.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Localization.nuspec" + ] + }, + "Microsoft.AspNet.Mvc/6.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "YUindvfgIo9Kh6a3GSAIIgYjZ2GXBkecKvc8BELwLg3CnW+NhwazihRCIp6Ieu8UhVegUpqgd3Wkn3suohiYQA==", + "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-beta8.nupkg", + "Microsoft.AspNet.Mvc.6.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Mvc.nuspec" + ] + }, + "Microsoft.AspNet.Mvc.Abstractions/6.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "bHIgcNJt4rReI6L6dshmP91Q6HdZD23vPuPVaVxqd5M+V+Y5fSr01vEllC9Om7myyO5owl2PtDSGHRKR2Ql83g==", + "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-beta8.nupkg", + "Microsoft.AspNet.Mvc.Abstractions.6.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Mvc.Abstractions.nuspec" + ] + }, + "Microsoft.AspNet.Mvc.ApiExplorer/6.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "XFnpF/JpkK/hkYhflugi1uCXoVzdgaD7NpmnZdTPnRFOneNeWzuB2rPIyTBsr5WiLPQEta8De2XN/56JsQOUdA==", + "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-beta8.nupkg", + "Microsoft.AspNet.Mvc.ApiExplorer.6.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Mvc.ApiExplorer.nuspec" + ] + }, + "Microsoft.AspNet.Mvc.Core/6.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "9WkWfJeb8ZbsG0wEsuHwXyb4lDhKdyTcnVg+TapajGsZsgzUAGfq4ZuMK6bd8AcynLlGLQhR2y42TaoxKUwyFg==", + "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-beta8.nupkg", + "Microsoft.AspNet.Mvc.Core.6.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Mvc.Core.nuspec" + ] + }, + "Microsoft.AspNet.Mvc.Cors/6.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "FiotIjkDIPdeoRbBv0jvbn2G2oH2TUSWXBmDX2wESktU4bUMQm3ggq2iaLg0+zMNjUWBEQG8sNrqDjIVHraFJQ==", + "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-beta8.nupkg", + "Microsoft.AspNet.Mvc.Cors.6.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Mvc.Cors.nuspec" + ] + }, + "Microsoft.AspNet.Mvc.DataAnnotations/6.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "juf0EOqCvHuOsujI9dgAqIMnCmaWcAV/SJKahVhl2yf5EffbabQhMGu2gQe5YMYEbRKRUQGvgyexTjGOmIIzUQ==", + "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-beta8.nupkg", + "Microsoft.AspNet.Mvc.DataAnnotations.6.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Mvc.DataAnnotations.nuspec" + ] + }, + "Microsoft.AspNet.Mvc.Formatters.Json/6.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "wY27jjzhSn4GKBpZ3WDoxp6DAWfRvSn6XIGVpGEx9cU3eR77MGjkie/GBf6v4QM22LMCgjxPmIwoQir+aGSi5A==", + "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-beta8.nupkg", + "Microsoft.AspNet.Mvc.Formatters.Json.6.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Mvc.Formatters.Json.nuspec" + ] + }, + "Microsoft.AspNet.Mvc.Localization/6.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "enUKMCe+d5b0GLZGss3pIaUlNPuT9yuELd7NKaWUKUO4cUDTU7bot/9fnQKr4y/sYTRuoZMBQQVAQFo268xG8Q==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Mvc.Localization.dll", + "lib/dnx451/Microsoft.AspNet.Mvc.Localization.xml", + "lib/dnxcore50/Microsoft.AspNet.Mvc.Localization.dll", + "lib/dnxcore50/Microsoft.AspNet.Mvc.Localization.xml", + "Microsoft.AspNet.Mvc.Localization.6.0.0-beta8.nupkg", + "Microsoft.AspNet.Mvc.Localization.6.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Mvc.Localization.nuspec" + ] + }, + "Microsoft.AspNet.Mvc.Razor/6.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "U5ufnY3ouytFXzlMGzJ8XXCu4kvc2hthuZAw9qKwtu6L/seTe8TQaXj1kCWyMm0T2RibIGaxvhb+hS1mYRCa4g==", + "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-beta8.nupkg", + "Microsoft.AspNet.Mvc.Razor.6.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Mvc.Razor.nuspec" + ] + }, + "Microsoft.AspNet.Mvc.Razor.Host/6.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "O+0N+Xw4BLMLTzxX1rJtkeHjW+jeYiyPYRcsNoN1wWL16WdWZloMjWh6rs6ZO1evU94+eHZPuA3aEIP95AL8Vw==", + "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-beta8.nupkg", + "Microsoft.AspNet.Mvc.Razor.Host.6.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Mvc.Razor.Host.nuspec" + ] + }, + "Microsoft.AspNet.Mvc.TagHelpers/6.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "+J/9ekUXvBx3x6Ll/tgci2ywhcQl1lww29EzLzytOAyikbCbNKi2EkTxNrRQIxWoXIYbkU5PwQdyvPKxeyq5/Q==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Mvc.TagHelpers.dll", + "lib/dnx451/Microsoft.AspNet.Mvc.TagHelpers.xml", + "lib/dnxcore50/Microsoft.AspNet.Mvc.TagHelpers.dll", + "lib/dnxcore50/Microsoft.AspNet.Mvc.TagHelpers.xml", + "Microsoft.AspNet.Mvc.TagHelpers.6.0.0-beta8.nupkg", + "Microsoft.AspNet.Mvc.TagHelpers.6.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Mvc.TagHelpers.nuspec" + ] + }, + "Microsoft.AspNet.Mvc.ViewFeatures/6.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "MquzjdiJ6apbgTbmQY/WkxINvWfUBF08KJBch+BhRcVSiHpOMBh7KeLRgQUcT+iL0P0fLMUSjRbBhlZsVkb/FQ==", + "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-beta8.nupkg", + "Microsoft.AspNet.Mvc.ViewFeatures.6.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Mvc.ViewFeatures.nuspec" + ] + }, + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "RD6vEtGmoCCSgND3/0BT7AeEcCw20jQayeh8xyoDnMDghuJFrGsCeDqslLRLKkQUc0icovsj2aDuKpaB0xoFug==", + "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-beta8.nupkg", + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces.1.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.PageExecutionInstrumentation.Interfaces.nuspec" + ] + }, + "Microsoft.AspNet.Razor/4.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "XJbBbotN4Ka8X871T+blbYdfINphZ2BjvKooikfkUFrlcDKvexHyHxDY2OPOhAulimusI59FTSS6ZQ/U+L77zA==", + "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-beta8.nupkg", + "Microsoft.AspNet.Razor.4.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Razor.nuspec" + ] + }, + "Microsoft.AspNet.Razor.Runtime/4.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "jHz5l+XjaVMgc96qCGNqCMM5fW51Hz8+zWx/5QJIWJk9vJmd47DfW/+BiNFGi2xJ6QqHNbGE4Pk98/8e+4vmGg==", + "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-beta8.nupkg", + "Microsoft.AspNet.Razor.Runtime.4.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Razor.Runtime.nuspec" + ] + }, + "Microsoft.AspNet.Razor.Runtime.Precompilation/4.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "FIziD/UCERafj5Fm8ImlSEGuYYCYHJktR89XTqYNJgVtc0fo15OPBihwyP2qnbdL7tZ6k9yOwsne/gp4LA2qSQ==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Razor.Runtime.Precompilation.dll", + "lib/dnx451/Microsoft.AspNet.Razor.Runtime.Precompilation.xml", + "lib/dnxcore50/Microsoft.AspNet.Razor.Runtime.Precompilation.dll", + "lib/dnxcore50/Microsoft.AspNet.Razor.Runtime.Precompilation.xml", + "Microsoft.AspNet.Razor.Runtime.Precompilation.4.0.0-beta8.nupkg", + "Microsoft.AspNet.Razor.Runtime.Precompilation.4.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Razor.Runtime.Precompilation.nuspec" + ] + }, + "Microsoft.AspNet.Routing/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "nipFnU+iBd9UoGLz4jNn96ld3LWiHFKgLQm7zHvIx/GCz3J98+12NSqLTybabqTKgGFDnovkmCUJ8unLCm0gwA==", + "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-beta8.nupkg", + "Microsoft.AspNet.Routing.1.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Routing.nuspec" + ] + }, + "Microsoft.AspNet.Server.Kestrel/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "it/Cyxz7+7HdrrTXQqh3tjvd8Ehm9s1nFdRxyssJ1XcVwuDjW3KdP+r44T8GmXnxBaRVS1j6wjExYy1n7pRNJw==", + "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-beta8.nupkg", + "Microsoft.AspNet.Server.Kestrel.1.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Server.Kestrel.nuspec", + "runtimes/osx/native/libuv.dylib", + "runtimes/win10-arm/native/libuv.dll", + "runtimes/win7-x64/native/libuv.dll", + "runtimes/win7-x86/native/libuv.dll", + "thirdpartynotices.txt" + ] + }, + "Microsoft.AspNet.StaticFiles/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "oI8Lss/NE3v1/cAJIK0XzbdAT772b4bCimiqpzSnYnYUjXhdwXOkXNgvgXWw92q9ZKSAiMkN02YKmt5ZY5EVrA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.StaticFiles.dll", + "lib/dnx451/Microsoft.AspNet.StaticFiles.xml", + "lib/dnxcore50/Microsoft.AspNet.StaticFiles.dll", + "lib/dnxcore50/Microsoft.AspNet.StaticFiles.xml", + "Microsoft.AspNet.StaticFiles.1.0.0-beta8.nupkg", + "Microsoft.AspNet.StaticFiles.1.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.StaticFiles.nuspec" + ] + }, + "Microsoft.AspNet.Tooling.Razor/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "DRQ18XqDRioUBmsqeaJB4earPw+RIWQoNEIRXsOCSK4RNTtEmGMtxbBfFDx3xQ75Dr4MlGETsjourlEE9Dw9sA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Tooling.Razor.dll", + "lib/dnx451/Microsoft.AspNet.Tooling.Razor.xml", + "lib/dnxcore50/Microsoft.AspNet.Tooling.Razor.dll", + "lib/dnxcore50/Microsoft.AspNet.Tooling.Razor.xml", + "Microsoft.AspNet.Tooling.Razor.1.0.0-beta8.nupkg", + "Microsoft.AspNet.Tooling.Razor.1.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.Tooling.Razor.nuspec" + ] + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "OHGE6y076ZoPI5FDqLSLg0BSiSpp4p6eF2HzT1wECWBP0YAxDR02B3yf7yXDFTI7r3lbUuJa/erhZH8KmshYAQ==", + "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-beta8.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-beta8.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "type": "package", + "sha512": "E7VdmGw6xO3VHWapC+pNLZmo6yncS53UY3bmb5WZm9wliJBB1A6brgzKA4fcqiLrmJFx71r0M2zEbRDphRLUNg==", + "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.nupkg", + "Microsoft.CodeAnalysis.Analyzers.1.0.0.nupkg.sha512", + "Microsoft.CodeAnalysis.Analyzers.nuspec", + "ThirdPartyNotices.rtf", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.1.0-beta1-20150928-02": { + "type": "package", + "sha512": "qNudc/ue3MXTUPCt6QK2HyNPhiUYyZCBjY6TvTAGlHcjANz32El4XMrODPN3NXxF2e2QzpwGUiKtua6XsPDLrQ==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.1.0-beta1-20150928-02.nupkg", + "Microsoft.CodeAnalysis.Common.1.1.0-beta1-20150928-02.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.1.0-beta1-20150928-02": { + "type": "package", + "sha512": "8QxHximRTuY9TWSZzTa/4bplILVSrljK65wkAT9+GenaOg1rB5d5sQKJysNw/SpEHzbAGrUnP4pw0gAqGZz0Ug==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.1.0-beta1-20150928-02.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.1.0-beta1-20150928-02.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CSharp/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "GGOOJF47WzXZoka0JHCToQxzSguIy1UeXZywUjA1NPqvKAWVwbSbZ2VxyeIL3jyTV1BHEbBX8FPL6vweUON2aw==", + "files": [ + "lib/dotnet/de/Microsoft.CSharp.xml", + "lib/dotnet/es/Microsoft.CSharp.xml", + "lib/dotnet/fr/Microsoft.CSharp.xml", + "lib/dotnet/it/Microsoft.CSharp.xml", + "lib/dotnet/ja/Microsoft.CSharp.xml", + "lib/dotnet/ko/Microsoft.CSharp.xml", + "lib/dotnet/Microsoft.CSharp.dll", + "lib/dotnet/Microsoft.CSharp.xml", + "lib/dotnet/ru/Microsoft.CSharp.xml", + "lib/dotnet/zh-hans/Microsoft.CSharp.xml", + "lib/dotnet/zh-hant/Microsoft.CSharp.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcore50/Microsoft.CSharp.xml", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "Microsoft.CSharp.4.0.1-beta-23409.nupkg", + "Microsoft.CSharp.4.0.1-beta-23409.nupkg.sha512", + "Microsoft.CSharp.nuspec", + "ref/dotnet/Microsoft.CSharp.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._" + ] + }, + "Microsoft.Data.Edm/5.6.4": { + "type": "package", + "sha512": "I9ea/CEOufddjjyRYIowshdeFj5SIqfWZ5conK/UIaFx2/jJ+PDRhQ5jcJTqTg/ediCa1C22TeRl/MmL9zwBew==", + "files": [ + "lib/net40/de/Microsoft.Data.Edm.resources.dll", + "lib/net40/es/Microsoft.Data.Edm.resources.dll", + "lib/net40/fr/Microsoft.Data.Edm.resources.dll", + "lib/net40/it/Microsoft.Data.Edm.resources.dll", + "lib/net40/ja/Microsoft.Data.Edm.resources.dll", + "lib/net40/ko/Microsoft.Data.Edm.resources.dll", + "lib/net40/Microsoft.Data.Edm.dll", + "lib/net40/Microsoft.Data.Edm.xml", + "lib/net40/ru/Microsoft.Data.Edm.resources.dll", + "lib/net40/zh-Hans/Microsoft.Data.Edm.resources.dll", + "lib/net40/zh-Hant/Microsoft.Data.Edm.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/de/Microsoft.Data.Edm.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/es/Microsoft.Data.Edm.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/fr/Microsoft.Data.Edm.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/it/Microsoft.Data.Edm.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/ja/Microsoft.Data.Edm.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/ko/Microsoft.Data.Edm.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/Microsoft.Data.Edm.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/Microsoft.Data.Edm.xml", + "lib/portable-net40+sl5+wp8+win8+wpa/ru/Microsoft.Data.Edm.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/zh-Hans/Microsoft.Data.Edm.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/zh-Hant/Microsoft.Data.Edm.resources.dll", + "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.Edm.resources.dll", + "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.Edm.resources.dll", + "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.Edm.resources.dll", + "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.Edm.resources.dll", + "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.Edm.resources.dll", + "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.Edm.resources.dll", + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.dll", + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Edm.xml", + "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.Edm.resources.dll", + "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.Edm.resources.dll", + "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.Edm.resources.dll", + "lib/sl4/de/Microsoft.Data.Edm.resources.dll", + "lib/sl4/es/Microsoft.Data.Edm.resources.dll", + "lib/sl4/fr/Microsoft.Data.Edm.resources.dll", + "lib/sl4/it/Microsoft.Data.Edm.resources.dll", + "lib/sl4/ja/Microsoft.Data.Edm.resources.dll", + "lib/sl4/ko/Microsoft.Data.Edm.resources.dll", + "lib/sl4/Microsoft.Data.Edm.dll", + "lib/sl4/Microsoft.Data.Edm.xml", + "lib/sl4/ru/Microsoft.Data.Edm.resources.dll", + "lib/sl4/zh-Hans/Microsoft.Data.Edm.resources.dll", + "lib/sl4/zh-Hant/Microsoft.Data.Edm.resources.dll", + "Microsoft.Data.Edm.5.6.4.nupkg", + "Microsoft.Data.Edm.5.6.4.nupkg.sha512", + "Microsoft.Data.Edm.nuspec" + ] + }, + "Microsoft.Data.OData/5.6.4": { + "type": "package", + "sha512": "Te71LAvjYppmBCLWomHvhVzKes3q8L5tmmDMSyLP7YrJMYG5/Ded8uJgxWWkUX/Vh11ZDpN2WXRByOg+BAHCYw==", + "files": [ + "lib/net40/de/Microsoft.Data.OData.resources.dll", + "lib/net40/es/Microsoft.Data.OData.resources.dll", + "lib/net40/fr/Microsoft.Data.OData.resources.dll", + "lib/net40/it/Microsoft.Data.OData.resources.dll", + "lib/net40/ja/Microsoft.Data.OData.resources.dll", + "lib/net40/ko/Microsoft.Data.OData.resources.dll", + "lib/net40/Microsoft.Data.OData.dll", + "lib/net40/Microsoft.Data.OData.xml", + "lib/net40/ru/Microsoft.Data.OData.resources.dll", + "lib/net40/zh-Hans/Microsoft.Data.OData.resources.dll", + "lib/net40/zh-Hant/Microsoft.Data.OData.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/de/Microsoft.Data.OData.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/es/Microsoft.Data.OData.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/fr/Microsoft.Data.OData.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/it/Microsoft.Data.OData.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/ja/Microsoft.Data.OData.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/ko/Microsoft.Data.OData.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/Microsoft.Data.OData.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/Microsoft.Data.OData.xml", + "lib/portable-net40+sl5+wp8+win8+wpa/ru/Microsoft.Data.OData.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/zh-Hans/Microsoft.Data.OData.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/zh-Hant/Microsoft.Data.OData.resources.dll", + "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.OData.resources.dll", + "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.OData.resources.dll", + "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.OData.resources.dll", + "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.OData.resources.dll", + "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.OData.resources.dll", + "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.OData.resources.dll", + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.OData.dll", + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.OData.xml", + "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.OData.resources.dll", + "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.OData.resources.dll", + "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.OData.resources.dll", + "lib/sl4/de/Microsoft.Data.OData.resources.dll", + "lib/sl4/es/Microsoft.Data.OData.resources.dll", + "lib/sl4/fr/Microsoft.Data.OData.resources.dll", + "lib/sl4/it/Microsoft.Data.OData.resources.dll", + "lib/sl4/ja/Microsoft.Data.OData.resources.dll", + "lib/sl4/ko/Microsoft.Data.OData.resources.dll", + "lib/sl4/Microsoft.Data.OData.dll", + "lib/sl4/Microsoft.Data.OData.xml", + "lib/sl4/ru/Microsoft.Data.OData.resources.dll", + "lib/sl4/zh-Hans/Microsoft.Data.OData.resources.dll", + "lib/sl4/zh-Hant/Microsoft.Data.OData.resources.dll", + "Microsoft.Data.OData.5.6.4.nupkg", + "Microsoft.Data.OData.5.6.4.nupkg.sha512", + "Microsoft.Data.OData.nuspec" + ] + }, + "Microsoft.Data.Services.Client/5.6.4": { + "type": "package", + "sha512": "94XNZKwnpHuFAdR70kqNTMBv2ex9m+VVQX8dHknZgtlq+nTlZDgzFmahU0wsBaIqJWc3k8Z+FftQ2Voq9r0NWA==", + "files": [ + "lib/net40/de/Microsoft.Data.Services.Client.resources.dll", + "lib/net40/es/Microsoft.Data.Services.Client.resources.dll", + "lib/net40/fr/Microsoft.Data.Services.Client.resources.dll", + "lib/net40/it/Microsoft.Data.Services.Client.resources.dll", + "lib/net40/ja/Microsoft.Data.Services.Client.resources.dll", + "lib/net40/ko/Microsoft.Data.Services.Client.resources.dll", + "lib/net40/Microsoft.Data.Services.Client.dll", + "lib/net40/Microsoft.Data.Services.Client.xml", + "lib/net40/ru/Microsoft.Data.Services.Client.resources.dll", + "lib/net40/zh-Hans/Microsoft.Data.Services.Client.resources.dll", + "lib/net40/zh-Hant/Microsoft.Data.Services.Client.resources.dll", + "lib/portable-net45+wp8+win8+wpa/de/Microsoft.Data.Services.Client.resources.dll", + "lib/portable-net45+wp8+win8+wpa/es/Microsoft.Data.Services.Client.resources.dll", + "lib/portable-net45+wp8+win8+wpa/fr/Microsoft.Data.Services.Client.resources.dll", + "lib/portable-net45+wp8+win8+wpa/it/Microsoft.Data.Services.Client.resources.dll", + "lib/portable-net45+wp8+win8+wpa/ja/Microsoft.Data.Services.Client.resources.dll", + "lib/portable-net45+wp8+win8+wpa/ko/Microsoft.Data.Services.Client.resources.dll", + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Services.Client.dll", + "lib/portable-net45+wp8+win8+wpa/Microsoft.Data.Services.Client.xml", + "lib/portable-net45+wp8+win8+wpa/ru/Microsoft.Data.Services.Client.resources.dll", + "lib/portable-net45+wp8+win8+wpa/zh-Hans/Microsoft.Data.Services.Client.resources.dll", + "lib/portable-net45+wp8+win8+wpa/zh-Hant/Microsoft.Data.Services.Client.resources.dll", + "lib/sl4/de/Microsoft.Data.Services.Client.resources.dll", + "lib/sl4/es/Microsoft.Data.Services.Client.resources.dll", + "lib/sl4/fr/Microsoft.Data.Services.Client.resources.dll", + "lib/sl4/it/Microsoft.Data.Services.Client.resources.dll", + "lib/sl4/ja/Microsoft.Data.Services.Client.resources.dll", + "lib/sl4/ko/Microsoft.Data.Services.Client.resources.dll", + "lib/sl4/Microsoft.Data.Services.Client.dll", + "lib/sl4/Microsoft.Data.Services.Client.xml", + "lib/sl4/ru/Microsoft.Data.Services.Client.resources.dll", + "lib/sl4/zh-Hans/Microsoft.Data.Services.Client.resources.dll", + "lib/sl4/zh-Hant/Microsoft.Data.Services.Client.resources.dll", + "Microsoft.Data.Services.Client.5.6.4.nupkg", + "Microsoft.Data.Services.Client.5.6.4.nupkg.sha512", + "Microsoft.Data.Services.Client.nuspec" + ] + }, + "Microsoft.Dnx.Compilation.Abstractions/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "u07MYumKjjVs1nzDMJp6DiECYmOpkT8eDsixcVJl5sQrkv/GzPTfoPeATHzbtsby3FaeIBTG35lYbsECrnHerQ==", + "files": [ + "lib/dnx451/Microsoft.Dnx.Compilation.Abstractions.dll", + "lib/dnx451/Microsoft.Dnx.Compilation.Abstractions.xml", + "lib/dnxcore50/Microsoft.Dnx.Compilation.Abstractions.dll", + "lib/dnxcore50/Microsoft.Dnx.Compilation.Abstractions.xml", + "Microsoft.Dnx.Compilation.Abstractions.1.0.0-beta8.nupkg", + "Microsoft.Dnx.Compilation.Abstractions.1.0.0-beta8.nupkg.sha512", + "Microsoft.Dnx.Compilation.Abstractions.nuspec" + ] + }, + "Microsoft.Dnx.Compilation.CSharp.Abstractions/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "qAFdgSYlvmFbja1Sz1sbO/2s5HhKE1eSEqEEkPkQ/FrhNrZisdi/Q9AGP3nzAuP+ZwXn1FdNIAMGZ0bnMlnamA==", + "files": [ + "lib/dnx451/Microsoft.Dnx.Compilation.CSharp.Abstractions.dll", + "lib/dnx451/Microsoft.Dnx.Compilation.CSharp.Abstractions.xml", + "lib/dnxcore50/Microsoft.Dnx.Compilation.CSharp.Abstractions.dll", + "lib/dnxcore50/Microsoft.Dnx.Compilation.CSharp.Abstractions.xml", + "Microsoft.Dnx.Compilation.CSharp.Abstractions.1.0.0-beta8.nupkg", + "Microsoft.Dnx.Compilation.CSharp.Abstractions.1.0.0-beta8.nupkg.sha512", + "Microsoft.Dnx.Compilation.CSharp.Abstractions.nuspec" + ] + }, + "Microsoft.Dnx.Compilation.CSharp.Common/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "Jh0ZChHfRpLAPW1/PI4/ND8p5gq5qeOPGQ2SOOuCV166//BVwFgkIo7R41aAZl+5Y+ng4QP02qd/e0z/p99TVA==", + "files": [ + "lib/dnx451/Microsoft.Dnx.Compilation.CSharp.Common.dll", + "lib/dnx451/Microsoft.Dnx.Compilation.CSharp.Common.xml", + "lib/dnxcore50/Microsoft.Dnx.Compilation.CSharp.Common.dll", + "lib/dnxcore50/Microsoft.Dnx.Compilation.CSharp.Common.xml", + "Microsoft.Dnx.Compilation.CSharp.Common.1.0.0-beta8.nupkg", + "Microsoft.Dnx.Compilation.CSharp.Common.1.0.0-beta8.nupkg.sha512", + "Microsoft.Dnx.Compilation.CSharp.Common.nuspec" + ] + }, + "Microsoft.Dnx.Runtime.Abstractions/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "t1vLklb3nzZHDbrnXw49rOwq+/ATQby/em1L3seL4wODoHS0W4L7WHG8rxbMZCnrFo/G+UhB/atxULIMuwZL5w==", + "files": [ + "lib/dnx451/Microsoft.Dnx.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Dnx.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Dnx.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Dnx.Runtime.Abstractions.xml", + "Microsoft.Dnx.Runtime.Abstractions.1.0.0-beta8.nupkg", + "Microsoft.Dnx.Runtime.Abstractions.1.0.0-beta8.nupkg.sha512", + "Microsoft.Dnx.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "CvJ0sdlPcrGDcF7wULMLArda7PsNgbci/DY8AzTjj5rRdu0ZJQ30uFWFsd4CzA7358Qkeq19PmYrptvIG5weqA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnxcore50/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-beta8.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "rEtG9CwpwW6r5pV6sk39WU/3VL36YYbGwGMhDY1d5JcS0yBtuiTIrF9quHMZfYRTC/u0z9yaAtit1lsd5CEoJA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dnxcore50/Microsoft.Framework.Caching.Memory.dll", + "lib/dnxcore50/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-beta8.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "M2Fg4gBigELMjFow/w44eGZe7VICY6naOe8R6jKbtsXpDTKFsfCuXxpZcUfIgI791hs7Ney88IjxZ3XudsgJeg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dnxcore50/Microsoft.Framework.Configuration.dll", + "lib/dnxcore50/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-beta8.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "WH5zC6AkShx6VZzZT37tl0QPROkR6zdffACEIPiDyPyqyf+DtWN5Z6v1q9OD5q6CfAij18EwqWaF1eWtYBigNw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnxcore50/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-beta8.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "6BWMPvDuy6nTe32z2JWsoiLljVhWagWkDhcN9EbvN4/ihGbnCWzKPIUCJ3a/1s9k/ZsWp4VZtxeuSaZ+60qQbQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dnxcore50/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnxcore50/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-beta8.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec" + ] + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "fbbIBmI1pPq7l1eBTIfQlE21gGXfelMO6LEDemaIqSUN1cGPoGwuoLjoXWPOV9CpNSUUz0/OoRTAkGgGQAWfTw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll", + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.xml", + "lib/dnxcore50/Microsoft.Framework.Configuration.CommandLine.dll", + "lib/dnxcore50/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-beta8.nupkg", + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.Configuration.CommandLine.nuspec" + ] + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "9RulZy2X7XFSb2qQf49i/GcuJdmmG3C11gBUtdU4pDXdrZY2FxjNfav+4Pu2sjD98BWrP6SeRUMAikG4RZLlUQ==", + "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-beta8.nupkg", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.Configuration.EnvironmentVariables.nuspec" + ] + }, + "Microsoft.Framework.Configuration.FileExtensions/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "+hsytl/Puj6Gc6U934Y7n3hfdkJG7lfvasIwY0RnAmsTSxJ6pF54A/mR3d/EwSHyUyMlgSnSHeoTXZ4u8RfJsA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.FileExtensions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.FileExtensions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.FileExtensions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.FileExtensions.xml", + "lib/net45/Microsoft.Framework.Configuration.FileExtensions.dll", + "lib/net45/Microsoft.Framework.Configuration.FileExtensions.xml", + "Microsoft.Framework.Configuration.FileExtensions.1.0.0-beta8.nupkg", + "Microsoft.Framework.Configuration.FileExtensions.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.Configuration.FileExtensions.nuspec" + ] + }, + "Microsoft.Framework.Configuration.Json/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "dfA9iuKWri9gVaAY7XEQMXP5C+PMalC+0vDhv9AUuawwuTeQm11JhOwXzdPu/FM4Bbwm33kHlVkLrHRW403XIA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Json.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Json.xml", + "lib/dnxcore50/Microsoft.Framework.Configuration.Json.dll", + "lib/dnxcore50/Microsoft.Framework.Configuration.Json.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Json.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Json.xml", + "lib/net45/Microsoft.Framework.Configuration.Json.dll", + "lib/net45/Microsoft.Framework.Configuration.Json.xml", + "Microsoft.Framework.Configuration.Json.1.0.0-beta8.nupkg", + "Microsoft.Framework.Configuration.Json.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.Configuration.Json.nuspec" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "6TmUFq/mt2l7QKoDyCuJOrDFcJ9A3ljZ/P3SBQMb+IYJ9J7XivUb47E+E9dQXhIjs5FpFHUGAE5Mxj2oKpxkfA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.dll", + "lib/dnxcore50/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-beta8.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "7WL9hy+7bYDyBtIrrW5tw57dChBcizjSyuD0p5pVkay+gSseLqvAk72a4KldMmRgH//7t74d/YVrTvLhw83b7w==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnxcore50/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-beta8.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.FileSystemGlobbing/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "cYEPTXrsWs7xntiNOVsB8XmIRdPSAInf+8UTsXnah1/h+vawmEmPxuJgby3DTLpqnRQpIuAwDKDLUTQAl4uR8A==", + "files": [ + "lib/dnx451/Microsoft.Framework.FileSystemGlobbing.dll", + "lib/dnx451/Microsoft.Framework.FileSystemGlobbing.xml", + "lib/dnxcore50/Microsoft.Framework.FileSystemGlobbing.dll", + "lib/dnxcore50/Microsoft.Framework.FileSystemGlobbing.xml", + "lib/net45/Microsoft.Framework.FileSystemGlobbing.dll", + "lib/net45/Microsoft.Framework.FileSystemGlobbing.xml", + "Microsoft.Framework.FileSystemGlobbing.1.0.0-beta8.nupkg", + "Microsoft.Framework.FileSystemGlobbing.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.FileSystemGlobbing.nuspec" + ] + }, + "Microsoft.Framework.Globalization.CultureInfoCache/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "ykXmc4xldphdwfLM2UPwEfzk76PRVsG0SWw2Lpg+ntnstEVN4a9ivOJyuq1LtM4OL5bekXlQj6x62hHX6pPuiQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Globalization.CultureInfoCache.dll", + "lib/dnx451/Microsoft.Framework.Globalization.CultureInfoCache.xml", + "lib/dnxcore50/Microsoft.Framework.Globalization.CultureInfoCache.dll", + "lib/dnxcore50/Microsoft.Framework.Globalization.CultureInfoCache.xml", + "Microsoft.Framework.Globalization.CultureInfoCache.1.0.0-beta8.nupkg", + "Microsoft.Framework.Globalization.CultureInfoCache.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.Globalization.CultureInfoCache.nuspec" + ] + }, + "Microsoft.Framework.Localization/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "Oe9rdXtBqq7Ea9OSLvHVUF76EgWmhYCFvnsirb6gjYy6u//WqnRbZGrSpxp02UdFf/KHiyIB4r/G+lgyywjGjw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Localization.dll", + "lib/dnx451/Microsoft.Framework.Localization.xml", + "lib/dnxcore50/Microsoft.Framework.Localization.dll", + "lib/dnxcore50/Microsoft.Framework.Localization.xml", + "Microsoft.Framework.Localization.1.0.0-beta8.nupkg", + "Microsoft.Framework.Localization.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.Localization.nuspec" + ] + }, + "Microsoft.Framework.Localization.Abstractions/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "iZAV+PZl0txGlm97ZB5UYFT1wLhl1oH05wz5zAWgywNuukZO/ncuRFMdiZLfp6HVmyZCRErCidc5rKYL1nynUQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Localization.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Localization.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Localization.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Localization.Abstractions.xml", + "Microsoft.Framework.Localization.Abstractions.1.0.0-beta8.nupkg", + "Microsoft.Framework.Localization.Abstractions.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.Localization.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "4PpVGirfXovwJjlLfgvM3kKgXUSSnOhqwlIFxAl6v1yTEVrrYrAxVmZ2YVz7EzTDUaeRpElm4AgCoyqHcZty4A==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dnxcore50/Microsoft.Framework.Logging.dll", + "lib/dnxcore50/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-beta8.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "m0NE8yhLNYlHlXfVRdfkwv+aR1a3oL06jf4sXejQKTnhE3hg6Biy7a3/W19ao6IaSyk640ARxrrt2jBEJzeUjg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnxcore50/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-beta8.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Logging.Console/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "Ut68lma54EQo9YEv1rGwjcUYsEfWFkvPUlEz5JMwWN9Thn0CtTIrrl7/1zNq2KUpF2GFMluOE8BI8cmhdmYM+A==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Console.dll", + "lib/dnx451/Microsoft.Framework.Logging.Console.xml", + "lib/dnxcore50/Microsoft.Framework.Logging.Console.dll", + "lib/dnxcore50/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-beta8.nupkg", + "Microsoft.Framework.Logging.Console.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.Logging.Console.nuspec" + ] + }, + "Microsoft.Framework.Logging.Debug/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "VAnYlP9IJ2ZIuHaDdMc8JzIfb3BNHhf08kTKDeMOEy2Q2cCnjKt7UOLFyMhJX52Is1U+WGeoMvogc+WY1GRR8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Debug.dll", + "lib/dnx451/Microsoft.Framework.Logging.Debug.xml", + "lib/dnxcore50/Microsoft.Framework.Logging.Debug.dll", + "lib/dnxcore50/Microsoft.Framework.Logging.Debug.xml", + "lib/dotnet/Microsoft.Framework.Logging.Debug.dll", + "lib/dotnet/Microsoft.Framework.Logging.Debug.xml", + "lib/net45/Microsoft.Framework.Logging.Debug.dll", + "lib/net45/Microsoft.Framework.Logging.Debug.xml", + "Microsoft.Framework.Logging.Debug.1.0.0-beta8.nupkg", + "Microsoft.Framework.Logging.Debug.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.Logging.Debug.nuspec" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "TAJYlNnmCTyn1ri2xfbCNh0cZ097EF5CHTnhpyO+VLvFfEtSjDe9wF8O72RfmkUJG+RPm2naoaKxJ7zFPldWLQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dnxcore50/Microsoft.Framework.OptionsModel.dll", + "lib/dnxcore50/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-beta8.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec" + ] + }, + "Microsoft.Framework.Primitives/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "tCmbjiE+AgwTfikByvv0xEsnA/z5SOAecZT6gb7EbjuanlzzCUyqTSnvi5SRLGBQsTNKjLiQFFlVOeWHZPOcDg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Primitives.dll", + "lib/dnx451/Microsoft.Framework.Primitives.xml", + "lib/dnxcore50/Microsoft.Framework.Primitives.dll", + "lib/dnxcore50/Microsoft.Framework.Primitives.xml", + "lib/dotnet/Microsoft.Framework.Primitives.dll", + "lib/dotnet/Microsoft.Framework.Primitives.xml", + "lib/net45/Microsoft.Framework.Primitives.dll", + "lib/net45/Microsoft.Framework.Primitives.xml", + "Microsoft.Framework.Primitives.1.0.0-beta8.nupkg", + "Microsoft.Framework.Primitives.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.Primitives.nuspec" + ] + }, + "Microsoft.Framework.WebEncoders/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "VO6FfwSqYV12EvzXAoPaSkbM6i5m+4a9Y7wvlSdeOrp0wI1Z22XqTRUissJv0D3kBp0REJByiMysb8uEp6KBfg==", + "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-beta8.nupkg", + "Microsoft.Framework.WebEncoders.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.WebEncoders.nuspec" + ] + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "Y+UN+pzp/Ac+eidW82i3DDB+1IjfAYF33721SRA2E3Tc+KNgcbbQWCQrD1mq1qmKz+nzBgc8P/etWMQ7vyOMlw==", + "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-beta8.nupkg", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta8.nupkg.sha512", + "Microsoft.Framework.WebEncoders.Core.nuspec" + ] + }, + "Microsoft.Net.Http.Headers/1.0.0-beta8": { + "type": "package", + "serviceable": true, + "sha512": "bRtQ6Ibp38YqiB+sr+pNUnNue1mnZW2o1JA6VlZ9w9uVTDrOOxzsqVYkHjucyA3baBaQDXsn1FN0NrP/F2WwEQ==", + "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-beta8.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-beta8.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.BrowserLink.Loader/14.0.0-beta8": { + "type": "package", + "sha512": "9xnaaC+fJAteN5ysbzEktjXC59LLIbR/99ondUxNW5jptdo9ftX8DHlHaZw8B7x2rTozTuyYyA9zDRemUtBEWA==", + "files": [ + "lib/dnx451/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll", + "lib/dnx451/Microsoft.VisualStudio.Web.BrowserLink.Loader.xml", + "lib/dnxcore50/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll", + "lib/dnxcore50/Microsoft.VisualStudio.Web.BrowserLink.Loader.xml", + "Microsoft.VisualStudio.Web.BrowserLink.Loader.14.0.0-beta8.nupkg", + "Microsoft.VisualStudio.Web.BrowserLink.Loader.14.0.0-beta8.nupkg.sha512", + "Microsoft.VisualStudio.Web.BrowserLink.Loader.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "Microsoft.Win32.Primitives.4.0.0.nupkg", + "Microsoft.Win32.Primitives.4.0.0.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/de/Microsoft.Win32.Primitives.xml", + "ref/dotnet/es/Microsoft.Win32.Primitives.xml", + "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", + "ref/dotnet/it/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "H2aofhRjc3RSc9V0HfFBvbKrQabVWShfBZRAtUB+1hoDxThbnbJYNjG4UhHzkUQv4SmdOwg+8lHHd1WFHr7U0w==", + "files": [ + "lib/DNXCore50/de/Microsoft.Win32.Registry.xml", + "lib/DNXCore50/es/Microsoft.Win32.Registry.xml", + "lib/DNXCore50/fr/Microsoft.Win32.Registry.xml", + "lib/DNXCore50/it/Microsoft.Win32.Registry.xml", + "lib/DNXCore50/ja/Microsoft.Win32.Registry.xml", + "lib/DNXCore50/ko/Microsoft.Win32.Registry.xml", + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/DNXCore50/Microsoft.Win32.Registry.xml", + "lib/DNXCore50/ru/Microsoft.Win32.Registry.xml", + "lib/DNXCore50/zh-hans/Microsoft.Win32.Registry.xml", + "lib/DNXCore50/zh-hant/Microsoft.Win32.Registry.xml", + "lib/net46/Microsoft.Win32.Registry.dll", + "Microsoft.Win32.Registry.4.0.0-beta-23409.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23409.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.8": { + "type": "package", + "sha512": "7ut47NDedTW19EbL0JpFDYUP62fcuz27hJrehCDNajdCS5NtqL+E39+7Um3OkNc2wl2ym7K8Ln5eNuLus6mVGQ==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.8.nupkg", + "Newtonsoft.Json.6.0.8.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "runtime.win7.System.Console/4.0.0-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "bVJW2cR1zoojRsJ/Zd4ETI/VCrn/9knetNYRR2Q4ktorU9a52F/8rQ7S3HeK04jMDBERGsjDc7Rj9u1GBSvU/w==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Console.4.0.0-beta-23409.nupkg", + "runtime.win7.System.Console.4.0.0-beta-23409.nupkg.sha512", + "runtime.win7.System.Console.nuspec", + "runtimes/win7/lib/dotnet/de/System.Console.xml", + "runtimes/win7/lib/dotnet/es/System.Console.xml", + "runtimes/win7/lib/dotnet/fr/System.Console.xml", + "runtimes/win7/lib/dotnet/it/System.Console.xml", + "runtimes/win7/lib/dotnet/ja/System.Console.xml", + "runtimes/win7/lib/dotnet/ko/System.Console.xml", + "runtimes/win7/lib/dotnet/ru/System.Console.xml", + "runtimes/win7/lib/dotnet/System.Console.dll", + "runtimes/win7/lib/dotnet/System.Console.xml", + "runtimes/win7/lib/dotnet/zh-hans/System.Console.xml", + "runtimes/win7/lib/dotnet/zh-hant/System.Console.xml" + ] + }, + "runtime.win7.System.Diagnostics.Debug/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "ITLu13a/DQDMq1mHgxQnAjy4mFlYTTo+veCZ0K9PDYnzg9sNNjF+GhcKMkh3yOcMXwxdJr5gInXuqGHlD7bEug==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Diagnostics.Debug.4.0.11-beta-23409.nupkg", + "runtime.win7.System.Diagnostics.Debug.4.0.11-beta-23409.nupkg.sha512", + "runtime.win7.System.Diagnostics.Debug.nuspec", + "runtimes/win7/lib/DNXCore50/de/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/DNXCore50/es/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/DNXCore50/fr/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/DNXCore50/it/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/DNXCore50/ja/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/DNXCore50/ko/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/DNXCore50/ru/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/DNXCore50/System.Diagnostics.Debug.dll", + "runtimes/win7/lib/DNXCore50/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/DNXCore50/zh-hans/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/DNXCore50/zh-hant/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/netcore50/de/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/netcore50/es/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/netcore50/fr/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/netcore50/it/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/netcore50/ja/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/netcore50/ko/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/netcore50/ru/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/netcore50/System.Diagnostics.Debug.dll", + "runtimes/win7/lib/netcore50/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "runtimes/win7/lib/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" + ] + }, + "runtime.win7.System.Diagnostics.TraceSource/4.0.0-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "ZB/N8mqeHogDAmy8i6gLtGImUAO0KoduLI0vi4T1eKIloiXuEPcZmgPYmSKeh8Nb9I1IAqdYk1LTxmQN+cMISQ==", + "files": [ + "lib/win8/_._", + "lib/wp8/_._", + "lib/wpa81/_._", + "ref/dotnet/_._", + "runtime.win7.System.Diagnostics.TraceSource.4.0.0-beta-23409.nupkg", + "runtime.win7.System.Diagnostics.TraceSource.4.0.0-beta-23409.nupkg.sha512", + "runtime.win7.System.Diagnostics.TraceSource.nuspec", + "runtimes/win7/lib/dotnet/de/System.Diagnostics.TraceSource.xml", + "runtimes/win7/lib/dotnet/es/System.Diagnostics.TraceSource.xml", + "runtimes/win7/lib/dotnet/fr/System.Diagnostics.TraceSource.xml", + "runtimes/win7/lib/dotnet/it/System.Diagnostics.TraceSource.xml", + "runtimes/win7/lib/dotnet/ja/System.Diagnostics.TraceSource.xml", + "runtimes/win7/lib/dotnet/ko/System.Diagnostics.TraceSource.xml", + "runtimes/win7/lib/dotnet/ru/System.Diagnostics.TraceSource.xml", + "runtimes/win7/lib/dotnet/System.Diagnostics.TraceSource.dll", + "runtimes/win7/lib/dotnet/System.Diagnostics.TraceSource.xml", + "runtimes/win7/lib/dotnet/zh-hans/System.Diagnostics.TraceSource.xml", + "runtimes/win7/lib/dotnet/zh-hant/System.Diagnostics.TraceSource.xml" + ] + }, + "runtime.win7.System.Globalization.Extensions/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "x3MpcLZ+qn0u5HNCEFG/UsN7mgWfs2L8hRYxujJUN0pi1VEGPLAqilD4gvrlETQNc+Rnlxb2QVSFfzvAw011/w==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Globalization.Extensions.4.0.1-beta-23409.nupkg", + "runtime.win7.System.Globalization.Extensions.4.0.1-beta-23409.nupkg.sha512", + "runtime.win7.System.Globalization.Extensions.nuspec", + "runtimes/win7/lib/dotnet/de/System.Globalization.Extensions.xml", + "runtimes/win7/lib/dotnet/es/System.Globalization.Extensions.xml", + "runtimes/win7/lib/dotnet/fr/System.Globalization.Extensions.xml", + "runtimes/win7/lib/dotnet/it/System.Globalization.Extensions.xml", + "runtimes/win7/lib/dotnet/ja/System.Globalization.Extensions.xml", + "runtimes/win7/lib/dotnet/ko/System.Globalization.Extensions.xml", + "runtimes/win7/lib/dotnet/ru/System.Globalization.Extensions.xml", + "runtimes/win7/lib/dotnet/System.Globalization.Extensions.dll", + "runtimes/win7/lib/dotnet/System.Globalization.Extensions.xml", + "runtimes/win7/lib/dotnet/zh-hans/System.Globalization.Extensions.xml", + "runtimes/win7/lib/dotnet/zh-hant/System.Globalization.Extensions.xml" + ] + }, + "runtime.win7.System.IO.FileSystem/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "mFbquGo94hysfa/Ll/PnGFaUyROcTByABEDSkSFgiBH9FNs61ZrCXZ5NSl4dKr7PYpae8WjvwTvQbbAw691CQg==", + "files": [ + "lib/net/_._", + "lib/win8/_._", + "lib/wp8/_._", + "lib/wpa81/_._", + "ref/dotnet/_._", + "ref/netcore50/_._", + "runtime.win7.System.IO.FileSystem.4.0.1-beta-23409.nupkg", + "runtime.win7.System.IO.FileSystem.4.0.1-beta-23409.nupkg.sha512", + "runtime.win7.System.IO.FileSystem.nuspec", + "runtimes/win7/lib/dotnet/de/System.IO.FileSystem.xml", + "runtimes/win7/lib/dotnet/es/System.IO.FileSystem.xml", + "runtimes/win7/lib/dotnet/fr/System.IO.FileSystem.xml", + "runtimes/win7/lib/dotnet/it/System.IO.FileSystem.xml", + "runtimes/win7/lib/dotnet/ja/System.IO.FileSystem.xml", + "runtimes/win7/lib/dotnet/ko/System.IO.FileSystem.xml", + "runtimes/win7/lib/dotnet/ru/System.IO.FileSystem.xml", + "runtimes/win7/lib/dotnet/System.IO.FileSystem.dll", + "runtimes/win7/lib/dotnet/System.IO.FileSystem.xml", + "runtimes/win7/lib/dotnet/zh-hans/System.IO.FileSystem.xml", + "runtimes/win7/lib/dotnet/zh-hant/System.IO.FileSystem.xml", + "runtimes/win7/lib/netcore50/de/System.IO.FileSystem.xml", + "runtimes/win7/lib/netcore50/es/System.IO.FileSystem.xml", + "runtimes/win7/lib/netcore50/fr/System.IO.FileSystem.xml", + "runtimes/win7/lib/netcore50/it/System.IO.FileSystem.xml", + "runtimes/win7/lib/netcore50/ja/System.IO.FileSystem.xml", + "runtimes/win7/lib/netcore50/ko/System.IO.FileSystem.xml", + "runtimes/win7/lib/netcore50/ru/System.IO.FileSystem.xml", + "runtimes/win7/lib/netcore50/System.IO.FileSystem.dll", + "runtimes/win7/lib/netcore50/System.IO.FileSystem.xml", + "runtimes/win7/lib/netcore50/zh-hans/System.IO.FileSystem.xml", + "runtimes/win7/lib/netcore50/zh-hant/System.IO.FileSystem.xml" + ] + }, + "runtime.win7.System.IO.FileSystem.Watcher/4.0.0-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "23BZ6ZOgpoJ/UzHHh1/3gEcvuU3gxF+jotr4DKQIKjrrWnN792VOmFBz4OF0AeQtZV8y7VhDgXj3qymzIRsMhw==", + "files": [ + "lib/win8/_._", + "lib/wp8/_._", + "lib/wpa81/_._", + "ref/dotnet/_._", + "runtime.win7.System.IO.FileSystem.Watcher.4.0.0-beta-23409.nupkg", + "runtime.win7.System.IO.FileSystem.Watcher.4.0.0-beta-23409.nupkg.sha512", + "runtime.win7.System.IO.FileSystem.Watcher.nuspec", + "runtimes/win7/lib/dotnet/de/System.IO.FileSystem.Watcher.xml", + "runtimes/win7/lib/dotnet/es/System.IO.FileSystem.Watcher.xml", + "runtimes/win7/lib/dotnet/fr/System.IO.FileSystem.Watcher.xml", + "runtimes/win7/lib/dotnet/it/System.IO.FileSystem.Watcher.xml", + "runtimes/win7/lib/dotnet/ja/System.IO.FileSystem.Watcher.xml", + "runtimes/win7/lib/dotnet/ko/System.IO.FileSystem.Watcher.xml", + "runtimes/win7/lib/dotnet/ru/System.IO.FileSystem.Watcher.xml", + "runtimes/win7/lib/dotnet/System.IO.FileSystem.Watcher.dll", + "runtimes/win7/lib/dotnet/System.IO.FileSystem.Watcher.xml", + "runtimes/win7/lib/dotnet/zh-hans/System.IO.FileSystem.Watcher.xml", + "runtimes/win7/lib/dotnet/zh-hant/System.IO.FileSystem.Watcher.xml" + ] + }, + "runtime.win7.System.Net.Primitives/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "mCQ4qKDRlq7fBYKGz3riw3rL9SDpHoFey/iJeEukhOpZ79i/IsUuwkS8oUzWEO9GTl5GW/3iO0xXZ3ouaFVObw==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "ref/dotnet/_._", + "runtime.win7.System.Net.Primitives.4.0.11-beta-23409.nupkg", + "runtime.win7.System.Net.Primitives.4.0.11-beta-23409.nupkg.sha512", + "runtime.win7.System.Net.Primitives.nuspec", + "runtimes/win7/lib/netcore50/de/System.Net.Primitives.xml", + "runtimes/win7/lib/netcore50/es/System.Net.Primitives.xml", + "runtimes/win7/lib/netcore50/fr/System.Net.Primitives.xml", + "runtimes/win7/lib/netcore50/it/System.Net.Primitives.xml", + "runtimes/win7/lib/netcore50/ja/System.Net.Primitives.xml", + "runtimes/win7/lib/netcore50/ko/System.Net.Primitives.xml", + "runtimes/win7/lib/netcore50/ru/System.Net.Primitives.xml", + "runtimes/win7/lib/netcore50/System.Net.Primitives.dll", + "runtimes/win7/lib/netcore50/System.Net.Primitives.xml", + "runtimes/win7/lib/netcore50/zh-hans/System.Net.Primitives.xml", + "runtimes/win7/lib/netcore50/zh-hant/System.Net.Primitives.xml" + ] + }, + "runtime.win7.System.Private.Uri/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "9mcAednoAbDrL5t/GBPYFCfrxYaGxfvpkSkAt3LWQeCH0rp4PlJpOQNtIALcyCfG4lD+z0YBAXEQsZmMVs6C+Q==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Private.Uri.4.0.1-beta-23409.nupkg", + "runtime.win7.System.Private.Uri.4.0.1-beta-23409.nupkg.sha512", + "runtime.win7.System.Private.Uri.nuspec", + "runtimes/win7/lib/DNXCore50/System.Private.Uri.dll", + "runtimes/win7/lib/netcore50/System.Private.Uri.dll", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll" + ] + }, + "runtime.win7.System.Runtime.Extensions/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "IWDzadSJxOnXWkXXt1Pe1Y5ZR1akWTFgA8MknklQsO9gKOYRvlr9Tn9nwp6Eu2571h8yc5rP+1E62OLG7Du0ng==", + "files": [ + "lib/DNXCore50/de/System.Runtime.Extensions.xml", + "lib/DNXCore50/es/System.Runtime.Extensions.xml", + "lib/DNXCore50/fr/System.Runtime.Extensions.xml", + "lib/DNXCore50/it/System.Runtime.Extensions.xml", + "lib/DNXCore50/ja/System.Runtime.Extensions.xml", + "lib/DNXCore50/ko/System.Runtime.Extensions.xml", + "lib/DNXCore50/ru/System.Runtime.Extensions.xml", + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/DNXCore50/System.Runtime.Extensions.xml", + "lib/DNXCore50/zh-hans/System.Runtime.Extensions.xml", + "lib/DNXCore50/zh-hant/System.Runtime.Extensions.xml", + "lib/netcore50/de/System.Runtime.Extensions.xml", + "lib/netcore50/es/System.Runtime.Extensions.xml", + "lib/netcore50/fr/System.Runtime.Extensions.xml", + "lib/netcore50/it/System.Runtime.Extensions.xml", + "lib/netcore50/ja/System.Runtime.Extensions.xml", + "lib/netcore50/ko/System.Runtime.Extensions.xml", + "lib/netcore50/ru/System.Runtime.Extensions.xml", + "lib/netcore50/System.Runtime.Extensions.dll", + "lib/netcore50/System.Runtime.Extensions.xml", + "lib/netcore50/zh-hans/System.Runtime.Extensions.xml", + "lib/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/dotnet/_._", + "runtime.win7.System.Runtime.Extensions.4.0.11-beta-23409.nupkg", + "runtime.win7.System.Runtime.Extensions.4.0.11-beta-23409.nupkg.sha512", + "runtime.win7.System.Runtime.Extensions.nuspec", + "runtimes/win8-aot/lib/netcore50/de/System.Runtime.Extensions.xml", + "runtimes/win8-aot/lib/netcore50/es/System.Runtime.Extensions.xml", + "runtimes/win8-aot/lib/netcore50/fr/System.Runtime.Extensions.xml", + "runtimes/win8-aot/lib/netcore50/it/System.Runtime.Extensions.xml", + "runtimes/win8-aot/lib/netcore50/ja/System.Runtime.Extensions.xml", + "runtimes/win8-aot/lib/netcore50/ko/System.Runtime.Extensions.xml", + "runtimes/win8-aot/lib/netcore50/ru/System.Runtime.Extensions.xml", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.xml", + "runtimes/win8-aot/lib/netcore50/zh-hans/System.Runtime.Extensions.xml", + "runtimes/win8-aot/lib/netcore50/zh-hant/System.Runtime.Extensions.xml" + ] + }, + "runtime.win7.System.Security.Cryptography.Algorithms/4.0.0-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "PrJGMz2OMzrBLNk39ziGtRqiA5eDSLUq+M0ynsH4sl7vmvlwckEuFrh44du5IU02xQYrhMcufma+QRzJ7hEA0w==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Security.Cryptography.Algorithms.4.0.0-beta-23409.nupkg", + "runtime.win7.System.Security.Cryptography.Algorithms.4.0.0-beta-23409.nupkg.sha512", + "runtime.win7.System.Security.Cryptography.Algorithms.nuspec", + "runtimes/win7/lib/dotnet/System.Security.Cryptography.Algorithms.dll" + ] + }, + "runtime.win7.System.Security.Cryptography.Encoding/4.0.0-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "NDHerCKwSRmlA0VhAL76P1Zuwhxowq21GYRbEDvLLgcBWI6zbIFF8c0Gu3yJYCQTpc2bRL6K55lTbWUqQqhsvQ==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Security.Cryptography.Encoding.4.0.0-beta-23409.nupkg", + "runtime.win7.System.Security.Cryptography.Encoding.4.0.0-beta-23409.nupkg.sha512", + "runtime.win7.System.Security.Cryptography.Encoding.nuspec", + "runtimes/win7/lib/dotnet/de/System.Security.Cryptography.Encoding.xml", + "runtimes/win7/lib/dotnet/es/System.Security.Cryptography.Encoding.xml", + "runtimes/win7/lib/dotnet/fr/System.Security.Cryptography.Encoding.xml", + "runtimes/win7/lib/dotnet/it/System.Security.Cryptography.Encoding.xml", + "runtimes/win7/lib/dotnet/ja/System.Security.Cryptography.Encoding.xml", + "runtimes/win7/lib/dotnet/ko/System.Security.Cryptography.Encoding.xml", + "runtimes/win7/lib/dotnet/ru/System.Security.Cryptography.Encoding.xml", + "runtimes/win7/lib/dotnet/System.Security.Cryptography.Encoding.dll", + "runtimes/win7/lib/dotnet/System.Security.Cryptography.Encoding.xml", + "runtimes/win7/lib/dotnet/zh-hans/System.Security.Cryptography.Encoding.xml", + "runtimes/win7/lib/dotnet/zh-hant/System.Security.Cryptography.Encoding.xml" + ] + }, + "runtime.win7.System.Security.Cryptography.X509Certificates/4.0.0-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "J5nq/o7zwKM9ztl1E5nNCsZMQUks1TV28m94aMzvpyZaqMvoDMZZrtS77FLMMDIj5HwtJu7PZ3y6wx1UlsjRXA==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Security.Cryptography.X509Certificates.4.0.0-beta-23409.nupkg", + "runtime.win7.System.Security.Cryptography.X509Certificates.4.0.0-beta-23409.nupkg.sha512", + "runtime.win7.System.Security.Cryptography.X509Certificates.nuspec", + "runtimes/win7/lib/dotnet/de/System.Security.Cryptography.X509Certificates.xml", + "runtimes/win7/lib/dotnet/es/System.Security.Cryptography.X509Certificates.xml", + "runtimes/win7/lib/dotnet/fr/System.Security.Cryptography.X509Certificates.xml", + "runtimes/win7/lib/dotnet/it/System.Security.Cryptography.X509Certificates.xml", + "runtimes/win7/lib/dotnet/ja/System.Security.Cryptography.X509Certificates.xml", + "runtimes/win7/lib/dotnet/ko/System.Security.Cryptography.X509Certificates.xml", + "runtimes/win7/lib/dotnet/ru/System.Security.Cryptography.X509Certificates.xml", + "runtimes/win7/lib/dotnet/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win7/lib/dotnet/System.Security.Cryptography.X509Certificates.xml", + "runtimes/win7/lib/dotnet/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "runtimes/win7/lib/dotnet/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "runtimes/win7/lib/netcore50/de/System.Security.Cryptography.X509Certificates.xml", + "runtimes/win7/lib/netcore50/es/System.Security.Cryptography.X509Certificates.xml", + "runtimes/win7/lib/netcore50/fr/System.Security.Cryptography.X509Certificates.xml", + "runtimes/win7/lib/netcore50/it/System.Security.Cryptography.X509Certificates.xml", + "runtimes/win7/lib/netcore50/ja/System.Security.Cryptography.X509Certificates.xml", + "runtimes/win7/lib/netcore50/ko/System.Security.Cryptography.X509Certificates.xml", + "runtimes/win7/lib/netcore50/ru/System.Security.Cryptography.X509Certificates.xml", + "runtimes/win7/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win7/lib/netcore50/System.Security.Cryptography.X509Certificates.xml", + "runtimes/win7/lib/netcore50/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "runtimes/win7/lib/netcore50/zh-hant/System.Security.Cryptography.X509Certificates.xml" + ] + }, + "runtime.win7.System.Threading/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "KUUz+kNOK8ZEaCDERH/lS8RCVN9ww79xSAjWhs1/7pyN43727Xoh4GGODA0BUV3dAmBMvxMQVgDPwi/Ylvj/YQ==", + "files": [ + "ref/dotnet/_._", + "runtime.win7.System.Threading.4.0.11-beta-23409.nupkg", + "runtime.win7.System.Threading.4.0.11-beta-23409.nupkg.sha512", + "runtime.win7.System.Threading.nuspec", + "runtimes/win7/lib/DNXCore50/de/System.Threading.xml", + "runtimes/win7/lib/DNXCore50/es/System.Threading.xml", + "runtimes/win7/lib/DNXCore50/fr/System.Threading.xml", + "runtimes/win7/lib/DNXCore50/it/System.Threading.xml", + "runtimes/win7/lib/DNXCore50/ja/System.Threading.xml", + "runtimes/win7/lib/DNXCore50/ko/System.Threading.xml", + "runtimes/win7/lib/DNXCore50/ru/System.Threading.xml", + "runtimes/win7/lib/DNXCore50/System.Threading.dll", + "runtimes/win7/lib/DNXCore50/System.Threading.xml", + "runtimes/win7/lib/DNXCore50/zh-hans/System.Threading.xml", + "runtimes/win7/lib/DNXCore50/zh-hant/System.Threading.xml", + "runtimes/win7/lib/netcore50/de/System.Threading.xml", + "runtimes/win7/lib/netcore50/es/System.Threading.xml", + "runtimes/win7/lib/netcore50/fr/System.Threading.xml", + "runtimes/win7/lib/netcore50/it/System.Threading.xml", + "runtimes/win7/lib/netcore50/ja/System.Threading.xml", + "runtimes/win7/lib/netcore50/ko/System.Threading.xml", + "runtimes/win7/lib/netcore50/ru/System.Threading.xml", + "runtimes/win7/lib/netcore50/System.Threading.dll", + "runtimes/win7/lib/netcore50/System.Threading.xml", + "runtimes/win7/lib/netcore50/zh-hans/System.Threading.xml", + "runtimes/win7/lib/netcore50/zh-hant/System.Threading.xml", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll" + ] + }, + "System.Collections/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "p32VHfH7pe+EUjGSH+XiNjVn735JZnsvAG5nap5q11s6FjoqZ8bl7HOBM8AQGye/oWbKnSsh3dyKa1K0wbMk2w==", + "files": [ + "lib/DNXCore50/de/System.Collections.xml", + "lib/DNXCore50/es/System.Collections.xml", + "lib/DNXCore50/fr/System.Collections.xml", + "lib/DNXCore50/it/System.Collections.xml", + "lib/DNXCore50/ja/System.Collections.xml", + "lib/DNXCore50/ko/System.Collections.xml", + "lib/DNXCore50/ru/System.Collections.xml", + "lib/DNXCore50/System.Collections.dll", + "lib/DNXCore50/System.Collections.xml", + "lib/DNXCore50/zh-hans/System.Collections.xml", + "lib/DNXCore50/zh-hant/System.Collections.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/de/System.Collections.xml", + "lib/netcore50/es/System.Collections.xml", + "lib/netcore50/fr/System.Collections.xml", + "lib/netcore50/it/System.Collections.xml", + "lib/netcore50/ja/System.Collections.xml", + "lib/netcore50/ko/System.Collections.xml", + "lib/netcore50/ru/System.Collections.xml", + "lib/netcore50/System.Collections.dll", + "lib/netcore50/System.Collections.xml", + "lib/netcore50/zh-hans/System.Collections.xml", + "lib/netcore50/zh-hant/System.Collections.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Collections.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/de/System.Collections.xml", + "runtimes/win8-aot/lib/netcore50/es/System.Collections.xml", + "runtimes/win8-aot/lib/netcore50/fr/System.Collections.xml", + "runtimes/win8-aot/lib/netcore50/it/System.Collections.xml", + "runtimes/win8-aot/lib/netcore50/ja/System.Collections.xml", + "runtimes/win8-aot/lib/netcore50/ko/System.Collections.xml", + "runtimes/win8-aot/lib/netcore50/ru/System.Collections.xml", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "runtimes/win8-aot/lib/netcore50/System.Collections.xml", + "runtimes/win8-aot/lib/netcore50/zh-hans/System.Collections.xml", + "runtimes/win8-aot/lib/netcore50/zh-hant/System.Collections.xml", + "System.Collections.4.0.11-beta-23409.nupkg", + "System.Collections.4.0.11-beta-23409.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "1IpnM4cumRWH4IQovgaUPJG1uelXn7gGogD1DnBFcTm6oh4DEndwv0TTYPzBcjVmQQUgyoPU/k16oeAr3ZkBbg==", + "files": [ + "lib/dotnet/de/System.Collections.Concurrent.xml", + "lib/dotnet/es/System.Collections.Concurrent.xml", + "lib/dotnet/fr/System.Collections.Concurrent.xml", + "lib/dotnet/it/System.Collections.Concurrent.xml", + "lib/dotnet/ja/System.Collections.Concurrent.xml", + "lib/dotnet/ko/System.Collections.Concurrent.xml", + "lib/dotnet/ru/System.Collections.Concurrent.xml", + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/dotnet/System.Collections.Concurrent.xml", + "lib/dotnet/zh-hans/System.Collections.Concurrent.xml", + "lib/dotnet/zh-hant/System.Collections.Concurrent.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Collections.Concurrent.4.0.11-beta-23409.nupkg", + "System.Collections.Concurrent.4.0.11-beta-23409.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.36": { + "type": "package", + "serviceable": true, + "sha512": "MOlivTIeAIQPPMUPWIIoMCvZczjFRLYUWSYwqi1szu8QPyeIbsaPeI+hpXe1DzTxNwnRnmfYaoToi6kXIfSPNg==", + "files": [ + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "License-Stable.rtf", + "System.Collections.Immutable.1.1.36.nupkg", + "System.Collections.Immutable.1.1.36.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Collections.NonGeneric.xml", + "ref/dotnet/es/System.Collections.NonGeneric.xml", + "ref/dotnet/fr/System.Collections.NonGeneric.xml", + "ref/dotnet/it/System.Collections.NonGeneric.xml", + "ref/dotnet/ja/System.Collections.NonGeneric.xml", + "ref/dotnet/ko/System.Collections.NonGeneric.xml", + "ref/dotnet/ru/System.Collections.NonGeneric.xml", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Collections.NonGeneric.4.0.0.nupkg", + "System.Collections.NonGeneric.4.0.0.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.0.0-beta-23109": { + "type": "package", + "serviceable": true, + "sha512": "sHMEvjfZcBO04aDflCBqbNSsrs7NgpkXO4gZN+yt80KMEQ3iWbeK5U8CbdtjDRePNZzoYf5K1mE1c+3RR03UGA==", + "files": [ + "lib/dotnet/System.Collections.Specialized.dll", + "lib/net46/System.Collections.Specialized.dll", + "ref/dotnet/de/System.Collections.Specialized.xml", + "ref/dotnet/es/System.Collections.Specialized.xml", + "ref/dotnet/fr/System.Collections.Specialized.xml", + "ref/dotnet/it/System.Collections.Specialized.xml", + "ref/dotnet/ja/System.Collections.Specialized.xml", + "ref/dotnet/ko/System.Collections.Specialized.xml", + "ref/dotnet/ru/System.Collections.Specialized.xml", + "ref/dotnet/System.Collections.Specialized.dll", + "ref/dotnet/System.Collections.Specialized.xml", + "ref/dotnet/zh-hans/System.Collections.Specialized.xml", + "ref/dotnet/zh-hant/System.Collections.Specialized.xml", + "ref/net46/System.Collections.Specialized.dll", + "System.Collections.Specialized.4.0.0-beta-23109.nupkg", + "System.Collections.Specialized.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.Specialized.nuspec" + ] + }, + "System.ComponentModel/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "4djgHMOshtJ1mwBhceLsbmr2CJyrpSRsKMWmpOfJEjtELVUXRBS2tf+stHEQSkhKgqT2SRjE2aSF4vIzziYsEQ==", + "files": [ + "lib/dotnet/de/System.ComponentModel.xml", + "lib/dotnet/es/System.ComponentModel.xml", + "lib/dotnet/fr/System.ComponentModel.xml", + "lib/dotnet/it/System.ComponentModel.xml", + "lib/dotnet/ja/System.ComponentModel.xml", + "lib/dotnet/ko/System.ComponentModel.xml", + "lib/dotnet/ru/System.ComponentModel.xml", + "lib/dotnet/System.ComponentModel.dll", + "lib/dotnet/System.ComponentModel.xml", + "lib/dotnet/zh-hans/System.ComponentModel.xml", + "lib/dotnet/zh-hant/System.ComponentModel.xml", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netcore50/System.ComponentModel.xml", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/System.ComponentModel.dll", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.1-beta-23409.nupkg", + "System.ComponentModel.4.0.1-beta-23409.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.Annotations/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "LlfH0lHE3qdNiwpqZY9fN2wy25V+JObBTKRy9Lj0efbqPYrwxqS9CJZoGD1dz06xCtvwh3nLpVrJrhEYYSaAZw==", + "files": [ + "lib/dotnet/de/System.ComponentModel.Annotations.xml", + "lib/dotnet/es/System.ComponentModel.Annotations.xml", + "lib/dotnet/fr/System.ComponentModel.Annotations.xml", + "lib/dotnet/it/System.ComponentModel.Annotations.xml", + "lib/dotnet/ja/System.ComponentModel.Annotations.xml", + "lib/dotnet/ko/System.ComponentModel.Annotations.xml", + "lib/dotnet/ru/System.ComponentModel.Annotations.xml", + "lib/dotnet/System.ComponentModel.Annotations.dll", + "lib/dotnet/System.ComponentModel.Annotations.xml", + "lib/dotnet/zh-hans/System.ComponentModel.Annotations.xml", + "lib/dotnet/zh-hant/System.ComponentModel.Annotations.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.ComponentModel.Annotations.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ComponentModel.Annotations.4.0.11-beta-23409.nupkg", + "System.ComponentModel.Annotations.4.0.11-beta-23409.nupkg.sha512", + "System.ComponentModel.Annotations.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10": { + "type": "package", + "serviceable": true, + "sha512": "d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==", + "files": [ + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/dotnet/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ComponentModel.EventBasedAsync.4.0.10.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec" + ] + }, + "System.ComponentModel.Primitives/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "8xElzEmEH5G6XK7qqxRLQ/2r1IuhXlkz0ZdgKNp6ViDD1ukadd+5hccqg1G/L4AYRy96ddMdvgyJjFW87Cegbw==", + "files": [ + "lib/dotnet/System.ComponentModel.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "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/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.ComponentModel.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ComponentModel.Primitives.4.0.0.nupkg", + "System.ComponentModel.Primitives.4.0.0.nupkg.sha512", + "System.ComponentModel.Primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "TBQngXy9JugrGm2btaGlRiXDS/pJtLKeMEp2YS0wk6OgPs1dhnEO3jjwEbx44pr3R5DQjrQg0CNvns8AQmJOcA==", + "files": [ + "lib/dotnet/de/System.ComponentModel.TypeConverter.xml", + "lib/dotnet/es/System.ComponentModel.TypeConverter.xml", + "lib/dotnet/fr/System.ComponentModel.TypeConverter.xml", + "lib/dotnet/it/System.ComponentModel.TypeConverter.xml", + "lib/dotnet/ja/System.ComponentModel.TypeConverter.xml", + "lib/dotnet/ko/System.ComponentModel.TypeConverter.xml", + "lib/dotnet/ru/System.ComponentModel.TypeConverter.xml", + "lib/dotnet/System.ComponentModel.TypeConverter.dll", + "lib/dotnet/System.ComponentModel.TypeConverter.xml", + "lib/dotnet/zh-hans/System.ComponentModel.TypeConverter.xml", + "lib/dotnet/zh-hant/System.ComponentModel.TypeConverter.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.ComponentModel.TypeConverter.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.ComponentModel.TypeConverter.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ComponentModel.TypeConverter.4.0.1-beta-23409.nupkg", + "System.ComponentModel.TypeConverter.4.0.1-beta-23409.nupkg.sha512", + "System.ComponentModel.TypeConverter.nuspec" + ] + }, + "System.Console/4.0.0-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "2ErF73lY58t9cDLsPCDlD2o4MX8xFJFllY18tgU/wpoafzWDpCQIxHBCpywgC0HAhFS/jNEv76KJKsTWjRW1jw==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Console.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Console.4.0.0-beta-23409.nupkg", + "System.Console.4.0.0-beta-23409.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Diagnostics.Contracts/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "kuLYaguyJolONDnFKgGDbxOgt9mqMaaiKlGyRyGuJ6itTgwdOQVN37PhKRMbOX0fI69e3Acnuv8KBEhcqq79vw==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Diagnostics.Contracts.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll", + "System.Diagnostics.Contracts.4.0.1-beta-23409.nupkg", + "System.Diagnostics.Contracts.4.0.1-beta-23409.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "DWoxJarBvyuhygEDA0rsY5pmEkk9OxefzNxGP1jRbvdEZxy6ONcizLVW1Tq5oXGgTgvN9XVwlK4iDcoe6e8VJQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Diagnostics.Debug.4.0.11-beta-23409.nupkg", + "System.Diagnostics.Debug.4.0.11-beta-23409.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.StackTrace/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "riUDP1wHm7pcJ5OvV0elPAiZr6dXRnbb3f5K6Mm1XEVKY9bcJ/iwIUK0oazhNm9Bm5WrvA56umJenOm+yBbYsg==", + "files": [ + "lib/DNXCore50/de/System.Diagnostics.StackTrace.xml", + "lib/DNXCore50/es/System.Diagnostics.StackTrace.xml", + "lib/DNXCore50/fr/System.Diagnostics.StackTrace.xml", + "lib/DNXCore50/it/System.Diagnostics.StackTrace.xml", + "lib/DNXCore50/ja/System.Diagnostics.StackTrace.xml", + "lib/DNXCore50/ko/System.Diagnostics.StackTrace.xml", + "lib/DNXCore50/ru/System.Diagnostics.StackTrace.xml", + "lib/DNXCore50/System.Diagnostics.StackTrace.dll", + "lib/DNXCore50/System.Diagnostics.StackTrace.xml", + "lib/DNXCore50/zh-hans/System.Diagnostics.StackTrace.xml", + "lib/DNXCore50/zh-hant/System.Diagnostics.StackTrace.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/de/System.Diagnostics.StackTrace.xml", + "lib/net46/es/System.Diagnostics.StackTrace.xml", + "lib/net46/fr/System.Diagnostics.StackTrace.xml", + "lib/net46/it/System.Diagnostics.StackTrace.xml", + "lib/net46/ja/System.Diagnostics.StackTrace.xml", + "lib/net46/ko/System.Diagnostics.StackTrace.xml", + "lib/net46/ru/System.Diagnostics.StackTrace.xml", + "lib/net46/System.Diagnostics.StackTrace.dll", + "lib/net46/System.Diagnostics.StackTrace.xml", + "lib/net46/zh-hans/System.Diagnostics.StackTrace.xml", + "lib/net46/zh-hant/System.Diagnostics.StackTrace.xml", + "lib/netcore50/de/System.Diagnostics.StackTrace.xml", + "lib/netcore50/es/System.Diagnostics.StackTrace.xml", + "lib/netcore50/fr/System.Diagnostics.StackTrace.xml", + "lib/netcore50/it/System.Diagnostics.StackTrace.xml", + "lib/netcore50/ja/System.Diagnostics.StackTrace.xml", + "lib/netcore50/ko/System.Diagnostics.StackTrace.xml", + "lib/netcore50/ru/System.Diagnostics.StackTrace.xml", + "lib/netcore50/System.Diagnostics.StackTrace.dll", + "lib/netcore50/System.Diagnostics.StackTrace.xml", + "lib/netcore50/zh-hans/System.Diagnostics.StackTrace.xml", + "lib/netcore50/zh-hant/System.Diagnostics.StackTrace.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Diagnostics.StackTrace.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/de/System.Diagnostics.StackTrace.xml", + "ref/net46/es/System.Diagnostics.StackTrace.xml", + "ref/net46/fr/System.Diagnostics.StackTrace.xml", + "ref/net46/it/System.Diagnostics.StackTrace.xml", + "ref/net46/ja/System.Diagnostics.StackTrace.xml", + "ref/net46/ko/System.Diagnostics.StackTrace.xml", + "ref/net46/ru/System.Diagnostics.StackTrace.xml", + "ref/net46/System.Diagnostics.StackTrace.dll", + "ref/net46/System.Diagnostics.StackTrace.xml", + "ref/net46/zh-hans/System.Diagnostics.StackTrace.xml", + "ref/net46/zh-hant/System.Diagnostics.StackTrace.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/de/System.Diagnostics.StackTrace.xml", + "runtimes/win8-aot/lib/netcore50/es/System.Diagnostics.StackTrace.xml", + "runtimes/win8-aot/lib/netcore50/fr/System.Diagnostics.StackTrace.xml", + "runtimes/win8-aot/lib/netcore50/it/System.Diagnostics.StackTrace.xml", + "runtimes/win8-aot/lib/netcore50/ja/System.Diagnostics.StackTrace.xml", + "runtimes/win8-aot/lib/netcore50/ko/System.Diagnostics.StackTrace.xml", + "runtimes/win8-aot/lib/netcore50/ru/System.Diagnostics.StackTrace.xml", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.xml", + "runtimes/win8-aot/lib/netcore50/zh-hans/System.Diagnostics.StackTrace.xml", + "runtimes/win8-aot/lib/netcore50/zh-hant/System.Diagnostics.StackTrace.xml", + "System.Diagnostics.StackTrace.4.0.1-beta-23409.nupkg", + "System.Diagnostics.StackTrace.4.0.1-beta-23409.nupkg.sha512", + "System.Diagnostics.StackTrace.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "b+4uiZKDss5B4S7s6yjCf6O2Xx6k2UL7Q4runp/5YNF7dRJKBKiiVXf3uSampaV9A6CNMQEnukPTXv/8PdZxCg==", + "files": [ + "lib/DNXCore50/de/System.Diagnostics.Tools.xml", + "lib/DNXCore50/es/System.Diagnostics.Tools.xml", + "lib/DNXCore50/fr/System.Diagnostics.Tools.xml", + "lib/DNXCore50/it/System.Diagnostics.Tools.xml", + "lib/DNXCore50/ja/System.Diagnostics.Tools.xml", + "lib/DNXCore50/ko/System.Diagnostics.Tools.xml", + "lib/DNXCore50/ru/System.Diagnostics.Tools.xml", + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/DNXCore50/System.Diagnostics.Tools.xml", + "lib/DNXCore50/zh-hans/System.Diagnostics.Tools.xml", + "lib/DNXCore50/zh-hant/System.Diagnostics.Tools.xml", + "lib/net45/_._", + "lib/netcore50/de/System.Diagnostics.Tools.xml", + "lib/netcore50/es/System.Diagnostics.Tools.xml", + "lib/netcore50/fr/System.Diagnostics.Tools.xml", + "lib/netcore50/it/System.Diagnostics.Tools.xml", + "lib/netcore50/ja/System.Diagnostics.Tools.xml", + "lib/netcore50/ko/System.Diagnostics.Tools.xml", + "lib/netcore50/ru/System.Diagnostics.Tools.xml", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/netcore50/System.Diagnostics.Tools.xml", + "lib/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "lib/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/de/System.Diagnostics.Tools.xml", + "runtimes/win8-aot/lib/netcore50/es/System.Diagnostics.Tools.xml", + "runtimes/win8-aot/lib/netcore50/fr/System.Diagnostics.Tools.xml", + "runtimes/win8-aot/lib/netcore50/it/System.Diagnostics.Tools.xml", + "runtimes/win8-aot/lib/netcore50/ja/System.Diagnostics.Tools.xml", + "runtimes/win8-aot/lib/netcore50/ko/System.Diagnostics.Tools.xml", + "runtimes/win8-aot/lib/netcore50/ru/System.Diagnostics.Tools.xml", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.xml", + "runtimes/win8-aot/lib/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "runtimes/win8-aot/lib/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "System.Diagnostics.Tools.4.0.1-beta-23409.nupkg", + "System.Diagnostics.Tools.4.0.1-beta-23409.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "3m+ELro6Ap9vQxAHQ/oEL4bu0j4O+v39s7IJrwg4IuaWU9ku6qr6Um/1AnP/uyK/6RIhAa6nQORX80pT+1zSvA==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.TraceSource.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Diagnostics.TraceSource.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.TraceSource.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Diagnostics.TraceSource.4.0.0-beta-23409.nupkg", + "System.Diagnostics.TraceSource.4.0.0-beta-23409.nupkg.sha512", + "System.Diagnostics.TraceSource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.21-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "eU/L5/T0PI8mMnpzE/JU/LWWUbmRXgukr6AAjKk+JGochHn/7NJmNiCdP7dvge9OTVgao1j9qAfp8gxRRPAnTg==", + "files": [ + "lib/DNXCore50/de/System.Diagnostics.Tracing.xml", + "lib/DNXCore50/es/System.Diagnostics.Tracing.xml", + "lib/DNXCore50/fr/System.Diagnostics.Tracing.xml", + "lib/DNXCore50/it/System.Diagnostics.Tracing.xml", + "lib/DNXCore50/ja/System.Diagnostics.Tracing.xml", + "lib/DNXCore50/ko/System.Diagnostics.Tracing.xml", + "lib/DNXCore50/ru/System.Diagnostics.Tracing.xml", + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/DNXCore50/System.Diagnostics.Tracing.xml", + "lib/DNXCore50/zh-hans/System.Diagnostics.Tracing.xml", + "lib/DNXCore50/zh-hant/System.Diagnostics.Tracing.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/de/System.Diagnostics.Tracing.xml", + "lib/netcore50/es/System.Diagnostics.Tracing.xml", + "lib/netcore50/fr/System.Diagnostics.Tracing.xml", + "lib/netcore50/it/System.Diagnostics.Tracing.xml", + "lib/netcore50/ja/System.Diagnostics.Tracing.xml", + "lib/netcore50/ko/System.Diagnostics.Tracing.xml", + "lib/netcore50/ru/System.Diagnostics.Tracing.xml", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "lib/netcore50/System.Diagnostics.Tracing.xml", + "lib/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "lib/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/de/System.Diagnostics.Tracing.xml", + "runtimes/win8-aot/lib/netcore50/es/System.Diagnostics.Tracing.xml", + "runtimes/win8-aot/lib/netcore50/fr/System.Diagnostics.Tracing.xml", + "runtimes/win8-aot/lib/netcore50/it/System.Diagnostics.Tracing.xml", + "runtimes/win8-aot/lib/netcore50/ja/System.Diagnostics.Tracing.xml", + "runtimes/win8-aot/lib/netcore50/ko/System.Diagnostics.Tracing.xml", + "runtimes/win8-aot/lib/netcore50/ru/System.Diagnostics.Tracing.xml", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.xml", + "runtimes/win8-aot/lib/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "runtimes/win8-aot/lib/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "System.Diagnostics.Tracing.4.0.21-beta-23409.nupkg", + "System.Diagnostics.Tracing.4.0.21-beta-23409.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Diagnostics.Tracing.Telemetry/4.0.0-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "0O46DsJ9FmqJY61oR8wUW15nA8bYHKS8t5SRhXUN594EnbOP7bWVjfFcMJCz6A4v5sizqAHH1Jz8g0ZioI8+8g==", + "files": [ + "lib/dotnet/System.Diagnostics.Tracing.Telemetry.dll", + "lib/dotnet/System.Diagnostics.Tracing.Telemetry.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Diagnostics.Tracing.Telemetry.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Diagnostics.Tracing.Telemetry.xml", + "System.Diagnostics.Tracing.Telemetry.4.0.0-beta-23409.nupkg", + "System.Diagnostics.Tracing.Telemetry.4.0.0-beta-23409.nupkg.sha512", + "System.Diagnostics.Tracing.Telemetry.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "vUo1BgT6X74QvxdKeaQkY/s0lXA7D97lsXnAo/5cXjHFReIJi0YgqP6WJxRp34Qy/vwdLQSQJotTLjLa6bhbnQ==", + "files": [ + "lib/DNXCore50/de/System.Dynamic.Runtime.xml", + "lib/DNXCore50/es/System.Dynamic.Runtime.xml", + "lib/DNXCore50/fr/System.Dynamic.Runtime.xml", + "lib/DNXCore50/it/System.Dynamic.Runtime.xml", + "lib/DNXCore50/ja/System.Dynamic.Runtime.xml", + "lib/DNXCore50/ko/System.Dynamic.Runtime.xml", + "lib/DNXCore50/ru/System.Dynamic.Runtime.xml", + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/DNXCore50/System.Dynamic.Runtime.xml", + "lib/DNXCore50/zh-hans/System.Dynamic.Runtime.xml", + "lib/DNXCore50/zh-hant/System.Dynamic.Runtime.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/de/System.Dynamic.Runtime.xml", + "lib/netcore50/es/System.Dynamic.Runtime.xml", + "lib/netcore50/fr/System.Dynamic.Runtime.xml", + "lib/netcore50/it/System.Dynamic.Runtime.xml", + "lib/netcore50/ja/System.Dynamic.Runtime.xml", + "lib/netcore50/ko/System.Dynamic.Runtime.xml", + "lib/netcore50/ru/System.Dynamic.Runtime.xml", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netcore50/System.Dynamic.Runtime.xml", + "lib/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "lib/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/de/System.Dynamic.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/es/System.Dynamic.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/fr/System.Dynamic.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/it/System.Dynamic.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/ja/System.Dynamic.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/ko/System.Dynamic.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/ru/System.Dynamic.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "System.Dynamic.Runtime.4.0.11-beta-23409.nupkg", + "System.Dynamic.Runtime.4.0.11-beta-23409.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.0": { + "type": "package", + "sha512": "IBJyTo1y7ZtzzoJUA60T1XPvNTyw/wfFmjFoBFtlYfkekIOtD/AzDDIg0YdUa7eNtFEfliED2R7HdppTdU4t5A==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Globalization.4.0.0.nupkg", + "System.Globalization.4.0.0.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "v3CMBhz+deioqW3RQMridiJTGoUMv5trwWlTkD++78LcIgEU/KmhoK7oGWLYEKKCOCmn3ZsY5+V1gltKTc69tw==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Globalization.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.11-beta-23409.nupkg", + "System.Globalization.4.0.11-beta-23409.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0": { + "type": "package", + "sha512": "cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Globalization.Calendars.xml", + "ref/dotnet/es/System.Globalization.Calendars.xml", + "ref/dotnet/fr/System.Globalization.Calendars.xml", + "ref/dotnet/it/System.Globalization.Calendars.xml", + "ref/dotnet/ja/System.Globalization.Calendars.xml", + "ref/dotnet/ko/System.Globalization.Calendars.xml", + "ref/dotnet/ru/System.Globalization.Calendars.xml", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hans/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hant/System.Globalization.Calendars.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0.nupkg", + "System.Globalization.Calendars.4.0.0.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "bV2kGwRLOGoimkBSovzzn/b+DF0cIVDfyB3JjnxneNjWnpqieBab7cgwsnI46JcE0bN+HnAoHE4rTD+AUmsilQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/de/System.Globalization.Extensions.xml", + "lib/net46/es/System.Globalization.Extensions.xml", + "lib/net46/fr/System.Globalization.Extensions.xml", + "lib/net46/it/System.Globalization.Extensions.xml", + "lib/net46/ja/System.Globalization.Extensions.xml", + "lib/net46/ko/System.Globalization.Extensions.xml", + "lib/net46/ru/System.Globalization.Extensions.xml", + "lib/net46/System.Globalization.Extensions.dll", + "lib/net46/System.Globalization.Extensions.xml", + "lib/net46/zh-hans/System.Globalization.Extensions.xml", + "lib/net46/zh-hant/System.Globalization.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Globalization.Extensions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/de/System.Globalization.Extensions.xml", + "ref/net46/es/System.Globalization.Extensions.xml", + "ref/net46/fr/System.Globalization.Extensions.xml", + "ref/net46/it/System.Globalization.Extensions.xml", + "ref/net46/ja/System.Globalization.Extensions.xml", + "ref/net46/ko/System.Globalization.Extensions.xml", + "ref/net46/ru/System.Globalization.Extensions.xml", + "ref/net46/System.Globalization.Extensions.dll", + "ref/net46/System.Globalization.Extensions.xml", + "ref/net46/zh-hans/System.Globalization.Extensions.xml", + "ref/net46/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Globalization.Extensions.4.0.1-beta-23409.nupkg", + "System.Globalization.Extensions.4.0.1-beta-23409.nupkg.sha512", + "System.Globalization.Extensions.nuspec" + ] + }, + "System.IO/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "zauM/8599qACBPYRf+kHyG5DDBzh/r1Yc4u7FOQftinSi8VaALrTqLQF3v4HiGPUccU2ME8MYCOFudsM0EEWUw==", + "files": [ + "lib/DNXCore50/de/System.IO.xml", + "lib/DNXCore50/es/System.IO.xml", + "lib/DNXCore50/fr/System.IO.xml", + "lib/DNXCore50/it/System.IO.xml", + "lib/DNXCore50/ja/System.IO.xml", + "lib/DNXCore50/ko/System.IO.xml", + "lib/DNXCore50/ru/System.IO.xml", + "lib/DNXCore50/System.IO.dll", + "lib/DNXCore50/System.IO.xml", + "lib/DNXCore50/zh-hans/System.IO.xml", + "lib/DNXCore50/zh-hant/System.IO.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/de/System.IO.xml", + "lib/netcore50/es/System.IO.xml", + "lib/netcore50/fr/System.IO.xml", + "lib/netcore50/it/System.IO.xml", + "lib/netcore50/ja/System.IO.xml", + "lib/netcore50/ko/System.IO.xml", + "lib/netcore50/ru/System.IO.xml", + "lib/netcore50/System.IO.dll", + "lib/netcore50/System.IO.xml", + "lib/netcore50/zh-hans/System.IO.xml", + "lib/netcore50/zh-hant/System.IO.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.IO.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/de/System.IO.xml", + "runtimes/win8-aot/lib/netcore50/es/System.IO.xml", + "runtimes/win8-aot/lib/netcore50/fr/System.IO.xml", + "runtimes/win8-aot/lib/netcore50/it/System.IO.xml", + "runtimes/win8-aot/lib/netcore50/ja/System.IO.xml", + "runtimes/win8-aot/lib/netcore50/ko/System.IO.xml", + "runtimes/win8-aot/lib/netcore50/ru/System.IO.xml", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "runtimes/win8-aot/lib/netcore50/System.IO.xml", + "runtimes/win8-aot/lib/netcore50/zh-hans/System.IO.xml", + "runtimes/win8-aot/lib/netcore50/zh-hant/System.IO.xml", + "System.IO.4.0.11-beta-23409.nupkg", + "System.IO.4.0.11-beta-23409.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.Compression/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "S+ljBE3py8pujTrsOOYHtDg2cnAifn6kBu/pfh1hMWIXd8DoVh0ADTA6Puv4q+nYj+Msm6JoFLNwuRSmztbsDQ==", + "files": [ + "lib/dotnet/System.IO.Compression.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.IO.Compression.xml", + "ref/dotnet/es/System.IO.Compression.xml", + "ref/dotnet/fr/System.IO.Compression.xml", + "ref/dotnet/it/System.IO.Compression.xml", + "ref/dotnet/ja/System.IO.Compression.xml", + "ref/dotnet/ko/System.IO.Compression.xml", + "ref/dotnet/ru/System.IO.Compression.xml", + "ref/dotnet/System.IO.Compression.dll", + "ref/dotnet/System.IO.Compression.xml", + "ref/dotnet/zh-hans/System.IO.Compression.xml", + "ref/dotnet/zh-hant/System.IO.Compression.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.IO.Compression.4.0.0.nupkg", + "System.IO.Compression.4.0.0.nupkg.sha512", + "System.IO.Compression.nuspec" + ] + }, + "System.IO.Compression.clrcompression-x64/4.0.0": { + "type": "package", + "sha512": "Lqr+URMwKzf+8HJF6YrqEqzKzDzFJTE4OekaxqdIns71r8Ufbd8SbZa0LKl9q+7nu6Em4SkIEXVMB7plSXekOw==", + "files": [ + "runtimes/win10-x64/native/ClrCompression.dll", + "runtimes/win7-x64/native/clrcompression.dll", + "System.IO.Compression.clrcompression-x64.4.0.0.nupkg", + "System.IO.Compression.clrcompression-x64.4.0.0.nupkg.sha512", + "System.IO.Compression.clrcompression-x64.nuspec" + ] + }, + "System.IO.Compression.clrcompression-x86/4.0.0": { + "type": "package", + "sha512": "GmevpuaMRzYDXHu+xuV10fxTO8DsP7OKweWxYtkaxwVnDSj9X6RBupSiXdiveq9yj/xjZ1NbG+oRRRb99kj+VQ==", + "files": [ + "runtimes/win10-x86/native/ClrCompression.dll", + "runtimes/win7-x86/native/clrcompression.dll", + "System.IO.Compression.clrcompression-x86.4.0.0.nupkg", + "System.IO.Compression.clrcompression-x86.4.0.0.nupkg.sha512", + "System.IO.Compression.clrcompression-x86.nuspec" + ] + }, + "System.IO.FileSystem/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "51dn9Ha92MO5jrkisk5nt1dT5AKUW4pGz/laxDFiz5H1YBSIoM5DxIi6PFh5SFI93bFtkIKFVReIOf+MFCUklQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.IO.FileSystem.4.0.1-beta-23409.nupkg", + "System.IO.FileSystem.4.0.1-beta-23409.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "5pHrxbItFhAeBEzXXjtdf3M4z6SRZ4SiGxjDY54xFdt5oWmt2fPUuzowhI1aTGBRR48O7dIy4evRMt0jpYFy/g==", + "files": [ + "lib/dotnet/de/System.IO.FileSystem.Primitives.xml", + "lib/dotnet/es/System.IO.FileSystem.Primitives.xml", + "lib/dotnet/fr/System.IO.FileSystem.Primitives.xml", + "lib/dotnet/it/System.IO.FileSystem.Primitives.xml", + "lib/dotnet/ja/System.IO.FileSystem.Primitives.xml", + "lib/dotnet/ko/System.IO.FileSystem.Primitives.xml", + "lib/dotnet/ru/System.IO.FileSystem.Primitives.xml", + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/dotnet/System.IO.FileSystem.Primitives.xml", + "lib/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", + "lib/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.IO.FileSystem.Primitives.4.0.1-beta-23409.nupkg", + "System.IO.FileSystem.Primitives.4.0.1-beta-23409.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "0RyUIlW9k/QWev7Ujnjyw7kuyIfzecS2WBdMnqYxtKMb3PbFYpukJZZhcN8DQufxjlOjMYulnLe2Yry8ADj2GA==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.IO.FileSystem.Watcher.4.0.0-beta-23409.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23409.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec" + ] + }, + "System.Linq/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "PaualgQ0um/Dw8y3iKD5bUNZ4PoJGfmFgKh3U//0VsCj+IEQH3oeKwvrPIlWr/YHKwwmLz0uvWKPWxGG+u5Oag==", + "files": [ + "lib/dotnet/de/System.Linq.xml", + "lib/dotnet/es/System.Linq.xml", + "lib/dotnet/fr/System.Linq.xml", + "lib/dotnet/it/System.Linq.xml", + "lib/dotnet/ja/System.Linq.xml", + "lib/dotnet/ko/System.Linq.xml", + "lib/dotnet/ru/System.Linq.xml", + "lib/dotnet/System.Linq.dll", + "lib/dotnet/System.Linq.xml", + "lib/dotnet/zh-hans/System.Linq.xml", + "lib/dotnet/zh-hant/System.Linq.xml", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/netcore50/System.Linq.xml", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Linq.dll", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.1-beta-23409.nupkg", + "System.Linq.4.0.1-beta-23409.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "ISOgZYf8k95HBBxCzuUzRLmBu2RF2mWGfaaX3j3tc59p7qJNv1qe8BvLUg1YDvK3wBqcQZq1pkI5qO8ySQBd9w==", + "files": [ + "lib/DNXCore50/de/System.Linq.Expressions.xml", + "lib/DNXCore50/es/System.Linq.Expressions.xml", + "lib/DNXCore50/fr/System.Linq.Expressions.xml", + "lib/DNXCore50/it/System.Linq.Expressions.xml", + "lib/DNXCore50/ja/System.Linq.Expressions.xml", + "lib/DNXCore50/ko/System.Linq.Expressions.xml", + "lib/DNXCore50/ru/System.Linq.Expressions.xml", + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/DNXCore50/System.Linq.Expressions.xml", + "lib/DNXCore50/zh-hans/System.Linq.Expressions.xml", + "lib/DNXCore50/zh-hant/System.Linq.Expressions.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/de/System.Linq.Expressions.xml", + "lib/netcore50/es/System.Linq.Expressions.xml", + "lib/netcore50/fr/System.Linq.Expressions.xml", + "lib/netcore50/it/System.Linq.Expressions.xml", + "lib/netcore50/ja/System.Linq.Expressions.xml", + "lib/netcore50/ko/System.Linq.Expressions.xml", + "lib/netcore50/ru/System.Linq.Expressions.xml", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.xml", + "lib/netcore50/zh-hans/System.Linq.Expressions.xml", + "lib/netcore50/zh-hant/System.Linq.Expressions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/de/System.Linq.Expressions.xml", + "runtimes/win8-aot/lib/netcore50/es/System.Linq.Expressions.xml", + "runtimes/win8-aot/lib/netcore50/fr/System.Linq.Expressions.xml", + "runtimes/win8-aot/lib/netcore50/it/System.Linq.Expressions.xml", + "runtimes/win8-aot/lib/netcore50/ja/System.Linq.Expressions.xml", + "runtimes/win8-aot/lib/netcore50/ko/System.Linq.Expressions.xml", + "runtimes/win8-aot/lib/netcore50/ru/System.Linq.Expressions.xml", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.xml", + "runtimes/win8-aot/lib/netcore50/zh-hans/System.Linq.Expressions.xml", + "runtimes/win8-aot/lib/netcore50/zh-hant/System.Linq.Expressions.xml", + "System.Linq.Expressions.4.0.11-beta-23409.nupkg", + "System.Linq.Expressions.4.0.11-beta-23409.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "type": "package", + "serviceable": true, + "sha512": "LwtHRyqV+JSR5vDfHdDP5V0nfw229gq0h6yHTQY5nZD2xs6NyCNGlwbTXLuZNgjqj/A2GnZUKa1kNFsBEChjww==", + "files": [ + "lib/dotnet/System.Linq.Queryable.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.Queryable.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.Queryable.xml", + "ref/dotnet/es/System.Linq.Queryable.xml", + "ref/dotnet/fr/System.Linq.Queryable.xml", + "ref/dotnet/it/System.Linq.Queryable.xml", + "ref/dotnet/ja/System.Linq.Queryable.xml", + "ref/dotnet/ko/System.Linq.Queryable.xml", + "ref/dotnet/ru/System.Linq.Queryable.xml", + "ref/dotnet/System.Linq.Queryable.dll", + "ref/dotnet/System.Linq.Queryable.xml", + "ref/dotnet/zh-hans/System.Linq.Queryable.xml", + "ref/dotnet/zh-hant/System.Linq.Queryable.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.Queryable.dll", + "ref/netcore50/System.Linq.Queryable.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.Queryable.4.0.0-beta-23109.nupkg", + "System.Linq.Queryable.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.Queryable.nuspec" + ] + }, + "System.Net.Http/4.0.1-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "PFh0rGs7K+NaRAzijr/ENcFDCOraQ7Tr22Ip++CI298rZWtLsA7nJ/INsibL0clFDwqd/hj4kGwZ65D+9zHwhQ==", + "files": [ + "lib/DNXCore50/System.Net.Http.dll", + "lib/net45/_._", + "lib/netcore50/System.Net.Http.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Net.Http.dll", + "ref/net45/_._", + "ref/netcore50/System.Net.Http.dll", + "ref/win8/_._", + "ref/wpa81/_._", + "System.Net.Http.4.0.1-beta-23225.nupkg", + "System.Net.Http.4.0.1-beta-23225.nupkg.sha512", + "System.Net.Http.nuspec" + ] + }, + "System.Net.Primitives/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "ATQRDj/OyZyFJRIK7jHDyPM3zwcC1JGbJWKhs9AbNvclwNEUOTzbCGHmfi93LpKqc8KTm8Q1ysgYKgVAGzgNwg==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Net.Primitives.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Net.Primitives.4.0.11-beta-23409.nupkg", + "System.Net.Primitives.4.0.11-beta-23409.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.Sockets/4.0.10-beta-23123": { + "type": "package", + "sha512": "J6O9EyPZuOiL3tvTPY8j745In3d7bb5D255WopeY3RVvxvTtAzBIUaN1Z19wBGWoa0gT19uqQE62E6fO0zODyg==", + "files": [ + "lib/DNXCore50/System.Net.Sockets.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.Net.Sockets.xml", + "ref/dotnet/es/System.Net.Sockets.xml", + "ref/dotnet/fr/System.Net.Sockets.xml", + "ref/dotnet/it/System.Net.Sockets.xml", + "ref/dotnet/ja/System.Net.Sockets.xml", + "ref/dotnet/ko/System.Net.Sockets.xml", + "ref/dotnet/ru/System.Net.Sockets.xml", + "ref/dotnet/System.Net.Sockets.dll", + "ref/dotnet/System.Net.Sockets.xml", + "ref/dotnet/zh-hans/System.Net.Sockets.xml", + "ref/dotnet/zh-hant/System.Net.Sockets.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Net.Sockets.4.0.10-beta-23123.nupkg", + "System.Net.Sockets.4.0.10-beta-23123.nupkg.sha512", + "System.Net.Sockets.nuspec" + ] + }, + "System.Net.WebSockets/4.0.0-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "JV6MF2GKf8RC6fDIfmVFibvgP95aWalyED/pho058RhbU5YtSpfxa1mTMt4dkMF2ND8/XAxLUWCzIosOPpkvaw==", + "files": [ + "lib/dotnet/de/System.Net.WebSockets.xml", + "lib/dotnet/es/System.Net.WebSockets.xml", + "lib/dotnet/fr/System.Net.WebSockets.xml", + "lib/dotnet/it/System.Net.WebSockets.xml", + "lib/dotnet/ja/System.Net.WebSockets.xml", + "lib/dotnet/ko/System.Net.WebSockets.xml", + "lib/dotnet/ru/System.Net.WebSockets.xml", + "lib/dotnet/System.Net.WebSockets.dll", + "lib/dotnet/System.Net.WebSockets.xml", + "lib/dotnet/zh-hans/System.Net.WebSockets.xml", + "lib/dotnet/zh-hant/System.Net.WebSockets.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.WebSockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Net.WebSockets.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.WebSockets.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Net.WebSockets.4.0.0-beta-23409.nupkg", + "System.Net.WebSockets.4.0.0-beta-23409.nupkg.sha512", + "System.Net.WebSockets.nuspec" + ] + }, + "System.Numerics.Vectors/4.1.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "gAFNcuF1KRHT3oKUfwr28nBoCK83GR0EWThOcSXZoW4lBhUNrKsNWwMoHrAQ4eT5QpI033rGyhx7G5s/jkoI8g==", + "files": [ + "lib/dotnet/System.Numerics.Vectors.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/portable-net45+win8/System.Numerics.Vectors.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Numerics.Vectors.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Numerics.Vectors.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Numerics.Vectors.4.1.1-beta-23409.nupkg", + "System.Numerics.Vectors.4.1.1-beta-23409.nupkg.sha512", + "System.Numerics.Vectors.nuspec" + ] + }, + "System.ObjectModel/4.0.10": { + "type": "package", + "serviceable": true, + "sha512": "Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/de/System.ObjectModel.xml", + "ref/dotnet/es/System.ObjectModel.xml", + "ref/dotnet/fr/System.ObjectModel.xml", + "ref/dotnet/it/System.ObjectModel.xml", + "ref/dotnet/ja/System.ObjectModel.xml", + "ref/dotnet/ko/System.ObjectModel.xml", + "ref/dotnet/ru/System.ObjectModel.xml", + "ref/dotnet/System.ObjectModel.dll", + "ref/dotnet/System.ObjectModel.xml", + "ref/dotnet/zh-hans/System.ObjectModel.xml", + "ref/dotnet/zh-hant/System.ObjectModel.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ObjectModel.4.0.10.nupkg", + "System.ObjectModel.4.0.10.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.DataContractSerialization/4.0.0-beta-23109": { + "type": "package", + "serviceable": true, + "sha512": "pkQQTBZ5unPWpS0txMVtOqFCfbvOkmQj9obZNWtsuECE31L/OJAbBAztk19EnjfkVS0eh2LHwTG2RjVozkz44g==", + "files": [ + "lib/DNXCore50/System.Private.DataContractSerialization.dll", + "lib/netcore50/System.Private.DataContractSerialization.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll", + "System.Private.DataContractSerialization.4.0.0-beta-23109.nupkg", + "System.Private.DataContractSerialization.4.0.0-beta-23109.nupkg.sha512", + "System.Private.DataContractSerialization.nuspec" + ] + }, + "System.Private.Networking/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "RUEqdBdJjISC65dO8l4LdN7vTdlXH+attUpKnauDUHVtLbIKdlDB9LKoLzCQsTQRP7vzUJHWYXznHJBkjAA7yA==", + "files": [ + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.4.0.0.nupkg", + "System.Private.Networking.4.0.0.nupkg.sha512", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.Networking/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "0jy/X9KG2IpzE/UgYkDNMCm4o8pa4VmFqB72T34AVkkJV0RUID+kc1yDsMLCsKeGXYkMyFSsj8u0G78qiAVctA==", + "files": [ + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.4.0.1-beta-23409.nupkg", + "System.Private.Networking.4.0.1-beta-23409.nupkg.sha512", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.Uri/4.0.1-beta-23409": { + "type": "package", + "sha512": "CDTFX1023ZLDnJvOH9lnBxZbTlosJhta4ymKSgXU4Yk9BVkO3cTwqdiIV5VRddXqQuJ4ksDHV0UmbPNs15pVvQ==", + "files": [ + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtime.json", + "System.Private.Uri.4.0.1-beta-23409.nupkg", + "System.Private.Uri.4.0.1-beta-23409.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.1.0-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "WbLtaCxoe5XdqEyZuGpemSQ8YBJ8cj11zx+yxOxJfHbNrmu7oMQ29+J50swaqg3soUc3BVBMqfIhb/7gocDHQA==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Reflection.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.1.0-beta-23225.nupkg", + "System.Reflection.4.1.0-beta-23225.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0": { + "type": "package", + "sha512": "CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/MonoAndroid10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/xamarinmac20/_._", + "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/MonoAndroid10/_._", + "ref/net45/_._", + "ref/xamarinmac20/_._", + "System.Reflection.Emit.4.0.0.nupkg", + "System.Reflection.Emit.4.0.0.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0": { + "type": "package", + "sha512": "02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==", + "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.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.0.0": { + "type": "package", + "sha512": "DJZhHiOdkN08xJgsJfDjkuOreLLmMcU8qkEEqEHqyhkPUZMMQs0lE8R+6+68BAFWgcdzxtNu0YmIOtEug8j00w==", + "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.nupkg", + "System.Reflection.Emit.Lightweight.4.0.0.nupkg.sha512", + "System.Reflection.Emit.Lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "basOLVotRadA0Gh2cXQQ14/WoC2ngN0Ykr3qFXEtH2v6PNtaDB4CeUB9JCb3PvjoWvbAhguF3b8HhbCGuqpcgw==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/de/System.Reflection.Extensions.xml", + "runtimes/win8-aot/lib/netcore50/es/System.Reflection.Extensions.xml", + "runtimes/win8-aot/lib/netcore50/fr/System.Reflection.Extensions.xml", + "runtimes/win8-aot/lib/netcore50/it/System.Reflection.Extensions.xml", + "runtimes/win8-aot/lib/netcore50/ja/System.Reflection.Extensions.xml", + "runtimes/win8-aot/lib/netcore50/ko/System.Reflection.Extensions.xml", + "runtimes/win8-aot/lib/netcore50/ru/System.Reflection.Extensions.xml", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.xml", + "runtimes/win8-aot/lib/netcore50/zh-hans/System.Reflection.Extensions.xml", + "runtimes/win8-aot/lib/netcore50/zh-hant/System.Reflection.Extensions.xml", + "System.Reflection.Extensions.4.0.1-beta-23409.nupkg", + "System.Reflection.Extensions.4.0.1-beta-23409.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.1.0-alpha-00014": { + "type": "package", + "serviceable": true, + "sha512": "c7jCg5QCOpWoIEybZDL7Yf36r9TUnMGuT1z2XgE6bf5nSM6HfwDqwDqcSgwIIfLcTnf8fBq1i5uBglYwjgB06g==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.pdb", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "System.Reflection.Metadata.1.1.0-alpha-00014.nupkg", + "System.Reflection.Metadata.1.1.0-alpha-00014.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Primitives.xml", + "ref/dotnet/es/System.Reflection.Primitives.xml", + "ref/dotnet/fr/System.Reflection.Primitives.xml", + "ref/dotnet/it/System.Reflection.Primitives.xml", + "ref/dotnet/ja/System.Reflection.Primitives.xml", + "ref/dotnet/ko/System.Reflection.Primitives.xml", + "ref/dotnet/ru/System.Reflection.Primitives.xml", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0.nupkg", + "System.Reflection.Primitives.4.0.0.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "Q3FiCsJ/4s2nuyhOHAFhc0Te10LzPjv6QzVcywA3oWI1msfDg583RIXQ9YifDfOuig+wg+SX0p133qV71HVfyw==", + "files": [ + "lib/DNXCore50/de/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/es/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/fr/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/it/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/ja/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/ko/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/ru/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/DNXCore50/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/zh-hans/System.Reflection.TypeExtensions.xml", + "lib/DNXCore50/zh-hant/System.Reflection.TypeExtensions.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/de/System.Reflection.TypeExtensions.xml", + "lib/net46/es/System.Reflection.TypeExtensions.xml", + "lib/net46/fr/System.Reflection.TypeExtensions.xml", + "lib/net46/it/System.Reflection.TypeExtensions.xml", + "lib/net46/ja/System.Reflection.TypeExtensions.xml", + "lib/net46/ko/System.Reflection.TypeExtensions.xml", + "lib/net46/ru/System.Reflection.TypeExtensions.xml", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.xml", + "lib/net46/zh-hans/System.Reflection.TypeExtensions.xml", + "lib/net46/zh-hant/System.Reflection.TypeExtensions.xml", + "lib/netcore50/de/System.Reflection.TypeExtensions.xml", + "lib/netcore50/es/System.Reflection.TypeExtensions.xml", + "lib/netcore50/fr/System.Reflection.TypeExtensions.xml", + "lib/netcore50/it/System.Reflection.TypeExtensions.xml", + "lib/netcore50/ja/System.Reflection.TypeExtensions.xml", + "lib/netcore50/ko/System.Reflection.TypeExtensions.xml", + "lib/netcore50/ru/System.Reflection.TypeExtensions.xml", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.xml", + "lib/netcore50/zh-hans/System.Reflection.TypeExtensions.xml", + "lib/netcore50/zh-hant/System.Reflection.TypeExtensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/de/System.Reflection.TypeExtensions.xml", + "ref/net46/es/System.Reflection.TypeExtensions.xml", + "ref/net46/fr/System.Reflection.TypeExtensions.xml", + "ref/net46/it/System.Reflection.TypeExtensions.xml", + "ref/net46/ja/System.Reflection.TypeExtensions.xml", + "ref/net46/ko/System.Reflection.TypeExtensions.xml", + "ref/net46/ru/System.Reflection.TypeExtensions.xml", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net46/System.Reflection.TypeExtensions.xml", + "ref/net46/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/net46/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/de/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/es/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/fr/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/it/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/ja/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/ko/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/ru/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/zh-hans/System.Reflection.TypeExtensions.xml", + "runtimes/win8-aot/lib/netcore50/zh-hant/System.Reflection.TypeExtensions.xml", + "System.Reflection.TypeExtensions.4.0.1-beta-23409.nupkg", + "System.Reflection.TypeExtensions.4.0.1-beta-23409.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ReaderWriter/4.0.0-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "SM1zHoswGv+s2jpXpdZ70vLjkzPZiv5lnyX/qb+NVufMYrnmZH3xjtat7mBY6bxjTCddUj+dNV8LWrugOxPegw==", + "files": [ + "lib/DNXCore50/de/System.Resources.ReaderWriter.xml", + "lib/DNXCore50/es/System.Resources.ReaderWriter.xml", + "lib/DNXCore50/fr/System.Resources.ReaderWriter.xml", + "lib/DNXCore50/it/System.Resources.ReaderWriter.xml", + "lib/DNXCore50/ja/System.Resources.ReaderWriter.xml", + "lib/DNXCore50/ko/System.Resources.ReaderWriter.xml", + "lib/DNXCore50/ru/System.Resources.ReaderWriter.xml", + "lib/DNXCore50/System.Resources.ReaderWriter.dll", + "lib/DNXCore50/System.Resources.ReaderWriter.xml", + "lib/DNXCore50/zh-hans/System.Resources.ReaderWriter.xml", + "lib/DNXCore50/zh-hant/System.Resources.ReaderWriter.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Resources.ReaderWriter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Resources.ReaderWriter.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Resources.ReaderWriter.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Resources.ReaderWriter.4.0.0-beta-23409.nupkg", + "System.Resources.ReaderWriter.4.0.0-beta-23409.nupkg.sha512", + "System.Resources.ReaderWriter.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0.nupkg", + "System.Resources.ResourceManager.4.0.0.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "EHNY58/HhDFTLMfxeNtRStY33JAOx+USo0+WhyZyzcYeaE+Bol6YQYpM7/HbfEV5c8tUBCTTBf81u0Q40AoEPw==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/de/System.Resources.ResourceManager.xml", + "runtimes/win8-aot/lib/netcore50/es/System.Resources.ResourceManager.xml", + "runtimes/win8-aot/lib/netcore50/fr/System.Resources.ResourceManager.xml", + "runtimes/win8-aot/lib/netcore50/it/System.Resources.ResourceManager.xml", + "runtimes/win8-aot/lib/netcore50/ja/System.Resources.ResourceManager.xml", + "runtimes/win8-aot/lib/netcore50/ko/System.Resources.ResourceManager.xml", + "runtimes/win8-aot/lib/netcore50/ru/System.Resources.ResourceManager.xml", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.xml", + "runtimes/win8-aot/lib/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "runtimes/win8-aot/lib/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "System.Resources.ResourceManager.4.0.1-beta-23409.nupkg", + "System.Resources.ResourceManager.4.0.1-beta-23409.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0": { + "type": "package", + "sha512": "A+xwHCqwWJ1x4iH69ErYyAx11clbav/uDgg1Y8hjV4Dyn9ZnX96dZvXxQtmb9P4Ep++YUYjZwl0GPD4KqJbVOg==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "License.rtf", + "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/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Runtime.4.0.0.nupkg", + "System.Runtime.4.0.0.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime/4.0.21-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "tv8k2UjvoQdk/XQqPpqmL8nayLjYIIqluTN4n/jnZijUI7JLAFoTSUEl/6Ru//mqYhE3c5sGS5d8c+e7aC1hKA==", + "files": [ + "lib/DNXCore50/de/System.Runtime.xml", + "lib/DNXCore50/es/System.Runtime.xml", + "lib/DNXCore50/fr/System.Runtime.xml", + "lib/DNXCore50/it/System.Runtime.xml", + "lib/DNXCore50/ja/System.Runtime.xml", + "lib/DNXCore50/ko/System.Runtime.xml", + "lib/DNXCore50/ru/System.Runtime.xml", + "lib/DNXCore50/System.Runtime.dll", + "lib/DNXCore50/System.Runtime.xml", + "lib/DNXCore50/zh-hans/System.Runtime.xml", + "lib/DNXCore50/zh-hant/System.Runtime.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/de/System.Runtime.xml", + "lib/netcore50/es/System.Runtime.xml", + "lib/netcore50/fr/System.Runtime.xml", + "lib/netcore50/it/System.Runtime.xml", + "lib/netcore50/ja/System.Runtime.xml", + "lib/netcore50/ko/System.Runtime.xml", + "lib/netcore50/ru/System.Runtime.xml", + "lib/netcore50/System.Runtime.dll", + "lib/netcore50/System.Runtime.xml", + "lib/netcore50/zh-hans/System.Runtime.xml", + "lib/netcore50/zh-hant/System.Runtime.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Runtime.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/de/System.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/es/System.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/fr/System.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/it/System.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/ja/System.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/ko/System.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/ru/System.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "runtimes/win8-aot/lib/netcore50/System.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/zh-hans/System.Runtime.xml", + "runtimes/win8-aot/lib/netcore50/zh-hant/System.Runtime.xml", + "System.Runtime.4.0.21-beta-23409.nupkg", + "System.Runtime.4.0.21-beta-23409.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0": { + "type": "package", + "sha512": "zPzwoJcA7qar/b5Ihhzfcdr3vBOR8FIg7u//Qc5mqyAriasXuMFVraBZ5vOQq5asfun9ryNEL8Z2BOlUK5QRqA==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "License.rtf", + "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/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Runtime.Extensions.4.0.0.nupkg", + "System.Runtime.Extensions.4.0.0.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "eJDgBLq6zFmZg7hpVX9vHSZTAtYDUbEYRcFCzJK9+8JWce3lVC/yMwmdiIimEKJKH0+9PG1jhYb1hOmiOL2eyg==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Runtime.Extensions.4.0.11-beta-23409.nupkg", + "System.Runtime.Extensions.4.0.11-beta-23409.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "cRVqKXVSjT+Uzgh6WPYIFpaW55so4Qqg0QBWhVkr7hOF5rnpn14w0nu6ogegSZZXRb0zT0Fkp24Av7p2zwT+xQ==", + "files": [ + "lib/DNXCore50/de/System.Runtime.Handles.xml", + "lib/DNXCore50/es/System.Runtime.Handles.xml", + "lib/DNXCore50/fr/System.Runtime.Handles.xml", + "lib/DNXCore50/it/System.Runtime.Handles.xml", + "lib/DNXCore50/ja/System.Runtime.Handles.xml", + "lib/DNXCore50/ko/System.Runtime.Handles.xml", + "lib/DNXCore50/ru/System.Runtime.Handles.xml", + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/DNXCore50/System.Runtime.Handles.xml", + "lib/DNXCore50/zh-hans/System.Runtime.Handles.xml", + "lib/DNXCore50/zh-hant/System.Runtime.Handles.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/de/System.Runtime.Handles.xml", + "lib/netcore50/es/System.Runtime.Handles.xml", + "lib/netcore50/fr/System.Runtime.Handles.xml", + "lib/netcore50/it/System.Runtime.Handles.xml", + "lib/netcore50/ja/System.Runtime.Handles.xml", + "lib/netcore50/ko/System.Runtime.Handles.xml", + "lib/netcore50/ru/System.Runtime.Handles.xml", + "lib/netcore50/System.Runtime.Handles.dll", + "lib/netcore50/System.Runtime.Handles.xml", + "lib/netcore50/zh-hans/System.Runtime.Handles.xml", + "lib/netcore50/zh-hant/System.Runtime.Handles.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/de/System.Runtime.Handles.xml", + "runtimes/win8-aot/lib/netcore50/es/System.Runtime.Handles.xml", + "runtimes/win8-aot/lib/netcore50/fr/System.Runtime.Handles.xml", + "runtimes/win8-aot/lib/netcore50/it/System.Runtime.Handles.xml", + "runtimes/win8-aot/lib/netcore50/ja/System.Runtime.Handles.xml", + "runtimes/win8-aot/lib/netcore50/ko/System.Runtime.Handles.xml", + "runtimes/win8-aot/lib/netcore50/ru/System.Runtime.Handles.xml", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.xml", + "runtimes/win8-aot/lib/netcore50/zh-hans/System.Runtime.Handles.xml", + "runtimes/win8-aot/lib/netcore50/zh-hant/System.Runtime.Handles.xml", + "System.Runtime.Handles.4.0.1-beta-23409.nupkg", + "System.Runtime.Handles.4.0.1-beta-23409.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.21-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "smrBNoE8cK1Sgg3C4BrgAbrTtu0oac+LhAr6y1LmHGolZahtjWN2XovUWbcDIDkvjX4G1G15Gjv/Bma7it7lpw==", + "files": [ + "lib/DNXCore50/de/System.Runtime.InteropServices.xml", + "lib/DNXCore50/es/System.Runtime.InteropServices.xml", + "lib/DNXCore50/fr/System.Runtime.InteropServices.xml", + "lib/DNXCore50/it/System.Runtime.InteropServices.xml", + "lib/DNXCore50/ja/System.Runtime.InteropServices.xml", + "lib/DNXCore50/ko/System.Runtime.InteropServices.xml", + "lib/DNXCore50/ru/System.Runtime.InteropServices.xml", + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/DNXCore50/System.Runtime.InteropServices.xml", + "lib/DNXCore50/zh-hans/System.Runtime.InteropServices.xml", + "lib/DNXCore50/zh-hant/System.Runtime.InteropServices.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/de/System.Runtime.InteropServices.xml", + "lib/netcore50/es/System.Runtime.InteropServices.xml", + "lib/netcore50/fr/System.Runtime.InteropServices.xml", + "lib/netcore50/it/System.Runtime.InteropServices.xml", + "lib/netcore50/ja/System.Runtime.InteropServices.xml", + "lib/netcore50/ko/System.Runtime.InteropServices.xml", + "lib/netcore50/ru/System.Runtime.InteropServices.xml", + "lib/netcore50/System.Runtime.InteropServices.dll", + "lib/netcore50/System.Runtime.InteropServices.xml", + "lib/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "lib/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.21-beta-23409.nupkg", + "System.Runtime.InteropServices.4.0.21-beta-23409.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Runtime.Numerics.xml", + "ref/dotnet/es/System.Runtime.Numerics.xml", + "ref/dotnet/fr/System.Runtime.Numerics.xml", + "ref/dotnet/it/System.Runtime.Numerics.xml", + "ref/dotnet/ja/System.Runtime.Numerics.xml", + "ref/dotnet/ko/System.Runtime.Numerics.xml", + "ref/dotnet/ru/System.Runtime.Numerics.xml", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/dotnet/System.Runtime.Numerics.xml", + "ref/dotnet/zh-hans/System.Runtime.Numerics.xml", + "ref/dotnet/zh-hant/System.Runtime.Numerics.xml", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "System.Runtime.Numerics.4.0.0.nupkg", + "System.Runtime.Numerics.4.0.0.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.0.0-beta-23109": { + "type": "package", + "sha512": "vpu8yAOi2v24NuZ+Uvbka6DBpHAUkSQNlx3U6MeOGY0Xas3np5rPgyhEniyASDEelDfmHpxKylcnq7ginJBNOQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/es/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/fr/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/it/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/ja/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/ko/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/ru/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/System.Runtime.Serialization.Primitives.dll", + "ref/dotnet/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Runtime.Serialization.Primitives.4.0.0-beta-23109.nupkg", + "System.Runtime.Serialization.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Serialization.Primitives.nuspec" + ] + }, + "System.Runtime.Serialization.Xml/4.0.10-beta-23109": { + "type": "package", + "sha512": "1FrHeYgE66pSKlJyjvVdAnDUkpcPkUFR2ptAyzTGOIvZrL8G+2dhmGDMTUrXDzdUWWIa5WR7EhyOJ4MuUE9yzA==", + "files": [ + "lib/DNXCore50/System.Runtime.Serialization.Xml.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Serialization.Xml.dll", + "ref/dotnet/de/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/es/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/fr/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/it/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/ja/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/ko/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/ru/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/System.Runtime.Serialization.Xml.dll", + "ref/dotnet/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/zh-hans/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/zh-hant/System.Runtime.Serialization.Xml.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll", + "System.Runtime.Serialization.Xml.4.0.10-beta-23109.nupkg", + "System.Runtime.Serialization.Xml.4.0.10-beta-23109.nupkg.sha512", + "System.Runtime.Serialization.Xml.nuspec" + ] + }, + "System.Security.Claims/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "5lF9x+k4WYYt9Xs8KOLNo0Xl1nGf+qgZfGHT0Rgx3nT9pUxyMoWqsiM9i+3hc4KRj1BkRIay7B6uqkxIyDFSCg==", + "files": [ + "lib/dotnet/de/System.Security.Claims.xml", + "lib/dotnet/es/System.Security.Claims.xml", + "lib/dotnet/fr/System.Security.Claims.xml", + "lib/dotnet/it/System.Security.Claims.xml", + "lib/dotnet/ja/System.Security.Claims.xml", + "lib/dotnet/ko/System.Security.Claims.xml", + "lib/dotnet/ru/System.Security.Claims.xml", + "lib/dotnet/System.Security.Claims.dll", + "lib/dotnet/System.Security.Claims.xml", + "lib/dotnet/zh-hans/System.Security.Claims.xml", + "lib/dotnet/zh-hant/System.Security.Claims.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Security.Claims.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Claims.4.0.1-beta-23409.nupkg", + "System.Security.Claims.4.0.1-beta-23409.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Algorithms/4.0.0-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "zgVLclf2VffRufQjWyRvvTTMk2yKmm2acQIOxZbiLBrmRwcDStWz722Efkn5BBzvuvwmBvoride8ArlOyFqXVA==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Security.Cryptography.Algorithms.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Security.Cryptography.Algorithms.4.0.0-beta-23409.nupkg", + "System.Security.Cryptography.Algorithms.4.0.0-beta-23409.nupkg.sha512", + "System.Security.Cryptography.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.0.0-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "zf0UbrcR9Gy1XBzJyCrL4bnU/acVlaHhPS20cYRsT0JZCArMCb4TD8WRz97knqkQ8AWW3uxvdsBs7v6jJQcM3g==", + "files": [ + "lib/dotnet/System.Security.Cryptography.Cng.dll", + "lib/net46/System.Security.Cryptography.Cng.dll", + "ref/dotnet/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "System.Security.Cryptography.Cng.4.0.0-beta-23409.nupkg", + "System.Security.Cryptography.Cng.4.0.0-beta-23409.nupkg.sha512", + "System.Security.Cryptography.Cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.0.0-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "oiUp/BXopMjx/7A/3TExe8zlF7HSwnJRHdLUcWxbi11Dn0uEWVYZrK/mPkwPBOprEMQaKbX7LcIlQNH1gTJdiA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Csp.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Security.Cryptography.Csp.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.Csp.4.0.0-beta-23409.nupkg", + "System.Security.Cryptography.Csp.4.0.0-beta-23409.nupkg.sha512", + "System.Security.Cryptography.Csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "uyvudvGilbcfron6qDxGclW5x4SIGwRqcqchPJhpBBUOn/bUd+W+uaAt3PPqSFI3vixLsh9jne13xEdJN6eRuA==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Security.Cryptography.Encoding.4.0.0-beta-23409.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23409.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Primitives/4.0.0-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "XVHvqMnsWmPjKn1oKLksqfHVQk+oWxvoY2t4+kL/B5bHSFXBXY8EqNJEoyiRQBU+Z2l+ZR4Dn77KUWSGqLBpnA==", + "files": [ + "lib/dotnet/System.Security.Cryptography.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Security.Cryptography.Primitives.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Cryptography.Primitives.4.0.0-beta-23409.nupkg", + "System.Security.Cryptography.Primitives.4.0.0-beta-23409.nupkg.sha512", + "System.Security.Cryptography.Primitives.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "DcG1hXh7WBuctRk9Js4ZhZixJaFEdtgUeRRlRIvAzrUxR6ov5VFLqOYo2bi+Nepuc/0t0uXQBiJ02kd5dXHclQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23409.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23409.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "P02J8JN0+wPuGsvQwR0kknYVdBX0nEvS2jSlrbhJA9Xwo4dxBKNX/oxLDEFlgtcUUTF18hUYOoTAbJJgplNq3w==", + "files": [ + "lib/dotnet/de/System.Security.Principal.xml", + "lib/dotnet/es/System.Security.Principal.xml", + "lib/dotnet/fr/System.Security.Principal.xml", + "lib/dotnet/it/System.Security.Principal.xml", + "lib/dotnet/ja/System.Security.Principal.xml", + "lib/dotnet/ko/System.Security.Principal.xml", + "lib/dotnet/ru/System.Security.Principal.xml", + "lib/dotnet/System.Security.Principal.dll", + "lib/dotnet/System.Security.Principal.xml", + "lib/dotnet/zh-hans/System.Security.Principal.xml", + "lib/dotnet/zh-hant/System.Security.Principal.xml", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/netcore50/System.Security.Principal.xml", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Security.Principal.4.0.1-beta-23409.nupkg", + "System.Security.Principal.4.0.1-beta-23409.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "hwgr72KpJqz+SSGnypyruztYaxJecdu+CkTsqrpJGkjBBdSQJbW3PTaG1KJF6+nRSX9tyLS/kezMJS3jktRb8g==", + "files": [ + "lib/DNXCore50/de/System.Security.Principal.Windows.xml", + "lib/DNXCore50/es/System.Security.Principal.Windows.xml", + "lib/DNXCore50/fr/System.Security.Principal.Windows.xml", + "lib/DNXCore50/it/System.Security.Principal.Windows.xml", + "lib/DNXCore50/ja/System.Security.Principal.Windows.xml", + "lib/DNXCore50/ko/System.Security.Principal.Windows.xml", + "lib/DNXCore50/ru/System.Security.Principal.Windows.xml", + "lib/DNXCore50/System.Security.Principal.Windows.dll", + "lib/DNXCore50/System.Security.Principal.Windows.xml", + "lib/DNXCore50/zh-hans/System.Security.Principal.Windows.xml", + "lib/DNXCore50/zh-hant/System.Security.Principal.Windows.xml", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/dotnet/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "System.Security.Principal.Windows.4.0.0-beta-23409.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23409.nupkg.sha512", + "System.Security.Principal.Windows.nuspec" + ] + }, + "System.Spatial/5.6.4": { + "type": "package", + "sha512": "BoXUQ0mHyeAbkR3qlhwXqUFxzJ7rZuFOrvFM/jZRk+S6JLI2JxXRKby6bxuWbmwYv2o/eRPQPbAOvEk5hB2Gmg==", + "files": [ + "lib/net40/de/System.Spatial.resources.dll", + "lib/net40/es/System.Spatial.resources.dll", + "lib/net40/fr/System.Spatial.resources.dll", + "lib/net40/it/System.Spatial.resources.dll", + "lib/net40/ja/System.Spatial.resources.dll", + "lib/net40/ko/System.Spatial.resources.dll", + "lib/net40/ru/System.Spatial.resources.dll", + "lib/net40/System.Spatial.dll", + "lib/net40/System.Spatial.xml", + "lib/net40/zh-Hans/System.Spatial.resources.dll", + "lib/net40/zh-Hant/System.Spatial.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/de/System.Spatial.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/es/System.Spatial.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/fr/System.Spatial.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/it/System.Spatial.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/ja/System.Spatial.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/ko/System.Spatial.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/ru/System.Spatial.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/System.Spatial.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/System.Spatial.xml", + "lib/portable-net40+sl5+wp8+win8+wpa/zh-Hans/System.Spatial.resources.dll", + "lib/portable-net40+sl5+wp8+win8+wpa/zh-Hant/System.Spatial.resources.dll", + "lib/portable-net45+wp8+win8+wpa/de/System.Spatial.resources.dll", + "lib/portable-net45+wp8+win8+wpa/es/System.Spatial.resources.dll", + "lib/portable-net45+wp8+win8+wpa/fr/System.Spatial.resources.dll", + "lib/portable-net45+wp8+win8+wpa/it/System.Spatial.resources.dll", + "lib/portable-net45+wp8+win8+wpa/ja/System.Spatial.resources.dll", + "lib/portable-net45+wp8+win8+wpa/ko/System.Spatial.resources.dll", + "lib/portable-net45+wp8+win8+wpa/ru/System.Spatial.resources.dll", + "lib/portable-net45+wp8+win8+wpa/System.Spatial.dll", + "lib/portable-net45+wp8+win8+wpa/System.Spatial.xml", + "lib/portable-net45+wp8+win8+wpa/zh-Hans/System.Spatial.resources.dll", + "lib/portable-net45+wp8+win8+wpa/zh-Hant/System.Spatial.resources.dll", + "lib/sl4/de/System.Spatial.resources.dll", + "lib/sl4/es/System.Spatial.resources.dll", + "lib/sl4/fr/System.Spatial.resources.dll", + "lib/sl4/it/System.Spatial.resources.dll", + "lib/sl4/ja/System.Spatial.resources.dll", + "lib/sl4/ko/System.Spatial.resources.dll", + "lib/sl4/ru/System.Spatial.resources.dll", + "lib/sl4/System.Spatial.dll", + "lib/sl4/System.Spatial.xml", + "lib/sl4/zh-Hans/System.Spatial.resources.dll", + "lib/sl4/zh-Hant/System.Spatial.resources.dll", + "System.Spatial.5.6.4.nupkg", + "System.Spatial.5.6.4.nupkg.sha512", + "System.Spatial.nuspec" + ] + }, + "System.Text.Encoding/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "KXOJQZe9GiS1pjltnsM8HDYLrct9WSriFX0LK8DM6GyCLhKT+0L8aiSR5csUOuWSjyFok5oWvOKUz3cTsGCFeQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Text.Encoding.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.11-beta-23409.nupkg", + "System.Text.Encoding.4.0.11-beta-23409.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "Gsyssk96Kp1Te+42wKL3HKtwMT4bfQd2ECbNaWG1nTZopRDKtFGcxcYiLZ+H1IJfhC4MgkeOZ1irVfqpIGfhvQ==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.11-beta-23409.nupkg", + "System.Text.Encoding.Extensions.4.0.11-beta-23409.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "qWUv3QOCOhMNeDA00DYEWfibwvEtlRqAGgYljWCJYzt1NunCQCH9z7LBi7Yt8MmUXTlEZVzQoVlT3w1dTv8zbQ==", + "files": [ + "lib/dotnet/de/System.Text.RegularExpressions.xml", + "lib/dotnet/es/System.Text.RegularExpressions.xml", + "lib/dotnet/fr/System.Text.RegularExpressions.xml", + "lib/dotnet/it/System.Text.RegularExpressions.xml", + "lib/dotnet/ja/System.Text.RegularExpressions.xml", + "lib/dotnet/ko/System.Text.RegularExpressions.xml", + "lib/dotnet/ru/System.Text.RegularExpressions.xml", + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/dotnet/System.Text.RegularExpressions.xml", + "lib/dotnet/zh-hans/System.Text.RegularExpressions.xml", + "lib/dotnet/zh-hant/System.Text.RegularExpressions.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Text.RegularExpressions.4.0.11-beta-23409.nupkg", + "System.Text.RegularExpressions.4.0.11-beta-23409.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.0": { + "type": "package", + "sha512": "ZsZ8i38K9t14aLQJ+19WUFoS7fVA/3QLHxgE1O6+xICYtl/VzUv17NCWFCNkBn6pfsIlC8XOjRQqiKzjdUGotw==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "License.rtf", + "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/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Threading.4.0.0.nupkg", + "System.Threading.4.0.0.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "SixT7aIE7gXBZ260KRaxJvIG1vGGO59pzw7MVHMy0RkgDwBel+EgIMdQsEAfVBot9OVnO6GlI/ezFhxFvpCRTQ==", + "files": [ + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Threading.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.Threading.4.0.11-beta-23409.nupkg", + "System.Threading.4.0.11-beta-23409.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/de/System.Threading.Overlapped.xml", + "ref/dotnet/es/System.Threading.Overlapped.xml", + "ref/dotnet/fr/System.Threading.Overlapped.xml", + "ref/dotnet/it/System.Threading.Overlapped.xml", + "ref/dotnet/ja/System.Threading.Overlapped.xml", + "ref/dotnet/ko/System.Threading.Overlapped.xml", + "ref/dotnet/ru/System.Threading.Overlapped.xml", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0.nupkg", + "System.Threading.Overlapped.4.0.0.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "PhdzC4vUeWMDoroEAKXwGq5uymvEEPa7Zx+qCgO/Lp8YGvK1hTDWepGDsKtdvJH0pCR/gmjzwAMbkwUN4GvYUw==", + "files": [ + "lib/DNXCore50/de/System.Threading.Tasks.xml", + "lib/DNXCore50/es/System.Threading.Tasks.xml", + "lib/DNXCore50/fr/System.Threading.Tasks.xml", + "lib/DNXCore50/it/System.Threading.Tasks.xml", + "lib/DNXCore50/ja/System.Threading.Tasks.xml", + "lib/DNXCore50/ko/System.Threading.Tasks.xml", + "lib/DNXCore50/ru/System.Threading.Tasks.xml", + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/DNXCore50/System.Threading.Tasks.xml", + "lib/DNXCore50/zh-hans/System.Threading.Tasks.xml", + "lib/DNXCore50/zh-hant/System.Threading.Tasks.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/de/System.Threading.Tasks.xml", + "lib/netcore50/es/System.Threading.Tasks.xml", + "lib/netcore50/fr/System.Threading.Tasks.xml", + "lib/netcore50/it/System.Threading.Tasks.xml", + "lib/netcore50/ja/System.Threading.Tasks.xml", + "lib/netcore50/ko/System.Threading.Tasks.xml", + "lib/netcore50/ru/System.Threading.Tasks.xml", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/netcore50/System.Threading.Tasks.xml", + "lib/netcore50/zh-hans/System.Threading.Tasks.xml", + "lib/netcore50/zh-hant/System.Threading.Tasks.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/de/System.Threading.Tasks.xml", + "runtimes/win8-aot/lib/netcore50/es/System.Threading.Tasks.xml", + "runtimes/win8-aot/lib/netcore50/fr/System.Threading.Tasks.xml", + "runtimes/win8-aot/lib/netcore50/it/System.Threading.Tasks.xml", + "runtimes/win8-aot/lib/netcore50/ja/System.Threading.Tasks.xml", + "runtimes/win8-aot/lib/netcore50/ko/System.Threading.Tasks.xml", + "runtimes/win8-aot/lib/netcore50/ru/System.Threading.Tasks.xml", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.xml", + "runtimes/win8-aot/lib/netcore50/zh-hans/System.Threading.Tasks.xml", + "runtimes/win8-aot/lib/netcore50/zh-hant/System.Threading.Tasks.xml", + "System.Threading.Tasks.4.0.11-beta-23409.nupkg", + "System.Threading.Tasks.4.0.11-beta-23409.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Tasks.Parallel/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "ByYnzdR4E1hKE3IlWzqnlNI+NCkTNrU4KgFHZIFOWO3M77McWJZB5HXdPNn2wrwedwG5CWhkqEZQo3no6+MeTw==", + "files": [ + "lib/dotnet/de/System.Threading.Tasks.Parallel.xml", + "lib/dotnet/es/System.Threading.Tasks.Parallel.xml", + "lib/dotnet/fr/System.Threading.Tasks.Parallel.xml", + "lib/dotnet/it/System.Threading.Tasks.Parallel.xml", + "lib/dotnet/ja/System.Threading.Tasks.Parallel.xml", + "lib/dotnet/ko/System.Threading.Tasks.Parallel.xml", + "lib/dotnet/ru/System.Threading.Tasks.Parallel.xml", + "lib/dotnet/System.Threading.Tasks.Parallel.dll", + "lib/dotnet/System.Threading.Tasks.Parallel.xml", + "lib/dotnet/zh-hans/System.Threading.Tasks.Parallel.xml", + "lib/dotnet/zh-hant/System.Threading.Tasks.Parallel.xml", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.Parallel.dll", + "lib/netcore50/System.Threading.Tasks.Parallel.xml", + "lib/win8/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Threading.Tasks.Parallel.dll", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.Parallel.dll", + "ref/win8/_._", + "ref/wpa81/_._", + "System.Threading.Tasks.Parallel.4.0.1-beta-23409.nupkg", + "System.Threading.Tasks.Parallel.4.0.1-beta-23409.nupkg.sha512", + "System.Threading.Tasks.Parallel.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "YZ3FzKGch4QUtp7Uq+mtUBvVbSUpVKQyN0nvXDDReJ7hO8Q9Y6RtFXg5EL7x/Jy+ZIKmuXAHZsJoCXREwYX4Cw==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.Thread.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Threading.Thread.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.Thread.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Threading.Thread.4.0.0-beta-23409.nupkg", + "System.Threading.Thread.4.0.0-beta-23409.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "co1dfVV4h3XNEmwm3M4pTdXFsae3k7No01WiU0wePenoKpp4ovKFox9hJopQ+SepFadJlFBy8/nllFK7w93qqg==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.ThreadPool.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.ThreadPool.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Threading.ThreadPool.4.0.10-beta-23409.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23409.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.1-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "Rbmr/QmW+wPA+iSM5IW+FU06NWXDluA/IkStX2Pu+rgQ7eZddCiFxCE4hhEuO+bDt2ZrfEumDgy4cwUV+PHA2w==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "lib/wpa81/_._", + "ref/dotnet/System.Threading.Timer.dll", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/win81/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.1-beta-23409.nupkg", + "System.Threading.Timer.4.0.1-beta-23409.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.11-beta-23225": { + "type": "package", + "serviceable": true, + "sha512": "ObCcU3hOf8Cbn3BwzUjxbaqa+UnSVN6bxf5l9A9iVrzuzbYUkVkjB+/JN/O5lmwpYwiKzYO5fv91O53PZ0hgXw==", + "files": [ + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Xml.ReaderWriter.4.0.11-beta-23225.nupkg", + "System.Xml.ReaderWriter.4.0.11-beta-23225.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.11-beta-23409": { + "type": "package", + "serviceable": true, + "sha512": "J4fC29pYZrCpLGvNMNQUnEhfva04YJ/DcBH8D10UAI36xUr9KWq+NEwXWq1iNMzmvRrz4bykrfvsB1438dxMFg==", + "files": [ + "lib/dotnet/de/System.Xml.XDocument.xml", + "lib/dotnet/es/System.Xml.XDocument.xml", + "lib/dotnet/fr/System.Xml.XDocument.xml", + "lib/dotnet/it/System.Xml.XDocument.xml", + "lib/dotnet/ja/System.Xml.XDocument.xml", + "lib/dotnet/ko/System.Xml.XDocument.xml", + "lib/dotnet/ru/System.Xml.XDocument.xml", + "lib/dotnet/System.Xml.XDocument.dll", + "lib/dotnet/System.Xml.XDocument.xml", + "lib/dotnet/zh-hans/System.Xml.XDocument.xml", + "lib/dotnet/zh-hant/System.Xml.XDocument.xml", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Xml.XDocument.4.0.11-beta-23409.nupkg", + "System.Xml.XDocument.4.0.11-beta-23409.nupkg.sha512", + "System.Xml.XDocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.0.0-beta-23109": { + "type": "package", + "sha512": "jImyL5OqwD4oHtUGEwHK1P9RIiVrsYiyMFQEcyUJP6cxxR6Jfc5TPmYBbzfS2IIqsKwp4gNjrAOXDrf7InfjuA==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Xml.XmlSerializer.xml", + "ref/dotnet/es/System.Xml.XmlSerializer.xml", + "ref/dotnet/fr/System.Xml.XmlSerializer.xml", + "ref/dotnet/it/System.Xml.XmlSerializer.xml", + "ref/dotnet/ja/System.Xml.XmlSerializer.xml", + "ref/dotnet/ko/System.Xml.XmlSerializer.xml", + "ref/dotnet/ru/System.Xml.XmlSerializer.xml", + "ref/dotnet/System.Xml.XmlSerializer.dll", + "ref/dotnet/System.Xml.XmlSerializer.xml", + "ref/dotnet/zh-hans/System.Xml.XmlSerializer.xml", + "ref/dotnet/zh-hant/System.Xml.XmlSerializer.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Xml.XmlSerializer.xml", + "ref/netcore50/es/System.Xml.XmlSerializer.xml", + "ref/netcore50/fr/System.Xml.XmlSerializer.xml", + "ref/netcore50/it/System.Xml.XmlSerializer.xml", + "ref/netcore50/ja/System.Xml.XmlSerializer.xml", + "ref/netcore50/ko/System.Xml.XmlSerializer.xml", + "ref/netcore50/ru/System.Xml.XmlSerializer.xml", + "ref/netcore50/System.Xml.XmlSerializer.dll", + "ref/netcore50/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hans/System.Xml.XmlSerializer.xml", + "ref/netcore50/zh-hant/System.Xml.XmlSerializer.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Xml.XmlSerializer.4.0.0-beta-23109.nupkg", + "System.Xml.XmlSerializer.4.0.0-beta-23109.nupkg.sha512", + "System.Xml.XmlSerializer.nuspec" + ] + }, + "WindowsAzure.Storage/6.1.1-preview": { + "type": "package", + "sha512": "mDSDuW0GcVYsV1jILYz2nvMX0ADNXUBL6vvy5xKbcHGlKY3lZWhA9AuD/UA2dMoAnto611s5j2XPWWXGmB8N8g==", + "files": [ + "lib/dnx451/Microsoft.WindowsAzure.Storage.dll", + "lib/dnx451/Microsoft.WindowsAzure.Storage.pdb", + "lib/dnx451/Microsoft.WindowsAzure.Storage.xml", + "lib/dnxcore50/Microsoft.WindowsAzure.Storage.dll", + "lib/dnxcore50/Microsoft.WindowsAzure.Storage.pdb", + "lib/dnxcore50/Microsoft.WindowsAzure.Storage.xml", + "lib/net40/Microsoft.WindowsAzure.Storage.dll", + "lib/net40/Microsoft.WindowsAzure.Storage.pdb", + "lib/net40/Microsoft.WindowsAzure.Storage.xml", + "lib/portable-net45+netcore45+wpa81+MonoAndroid1+MonoTouch1/Microsoft.WindowsAzure.Storage.dll", + "lib/portable-net45+netcore45+wpa81+MonoAndroid1+MonoTouch1/Microsoft.WindowsAzure.Storage.pdb", + "lib/win8/Microsoft.WindowsAzure.Storage.dll", + "lib/win8/Microsoft.WindowsAzure.Storage.pdb", + "lib/wp8/Microsoft.WindowsAzure.Storage.dll", + "lib/wp8/Microsoft.WindowsAzure.Storage.pdb", + "lib/wpa/Microsoft.WindowsAzure.Storage.dll", + "lib/wpa/Microsoft.WindowsAzure.Storage.pdb", + "WindowsAzure.Storage.6.1.1-preview.nupkg", + "WindowsAzure.Storage.6.1.1-preview.nupkg.sha512", + "WindowsAzure.Storage.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.Diagnostics >= 1.0.0-beta8", + "Microsoft.AspNet.IISPlatformHandler >= 1.0.0-beta8", + "Microsoft.AspNet.Mvc >= 6.0.0-beta8", + "Microsoft.AspNet.Mvc.TagHelpers >= 6.0.0-beta8", + "Microsoft.AspNet.Server.Kestrel >= 1.0.0-beta8", + "Microsoft.AspNet.StaticFiles >= 1.0.0-beta8", + "Microsoft.AspNet.Tooling.Razor >= 1.0.0-beta8", + "Microsoft.Framework.Configuration.Json >= 1.0.0-beta8", + "Microsoft.Framework.Logging >= 1.0.0-beta8", + "Microsoft.Framework.Logging.Console >= 1.0.0-beta8", + "Microsoft.Framework.Logging.Debug >= 1.0.0-beta8", + "Microsoft.VisualStudio.Web.BrowserLink.Loader >= 14.0.0-beta8", + "AzureTableStorageCache " + ], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [] + } +} \ No newline at end of file