From 7456392bcc5707569a5d4e9c7dbec806d740c6c5 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Tue, 28 Jul 2015 12:00:03 -0700 Subject: [PATCH] Updating json files to pin versions and build.cmd to pin KoreBuild and DNX --- build.cmd | 12 +- src/EntityFramework.Commands/project.json | 100 +- .../project.lock.json | 5923 +++++++++++++++ src/EntityFramework.Core/project.json | 210 +- src/EntityFramework.Core/project.lock.json | 2420 +++++++ src/EntityFramework.InMemory/project.json | 42 +- .../project.lock.json | 2093 ++++++ .../project.json | 89 +- .../project.lock.json | 3469 +++++++++ src/EntityFramework.Relational/project.json | 60 +- .../project.lock.json | 2294 ++++++ .../project.json | 46 +- .../project.lock.json | 3425 +++++++++ src/EntityFramework.SqlServer/project.json | 52 +- .../project.lock.json | 2985 ++++++++ src/EntityFramework.Sqlite/project.json | 52 +- src/EntityFramework.Sqlite/project.lock.json | 2330 ++++++ .../project.json | 40 +- .../project.lock.json | 2594 +++++++ .../project.json | 28 +- .../project.lock.json | 2571 +++++++ .../project.json | 63 +- .../project.lock.json | 4629 ++++++++++++ test/EntityFramework.Core.Tests/project.json | 36 +- .../project.lock.json | 1761 +++++ .../project.json | 26 +- .../project.lock.json | 1883 +++++ .../project.json | 24 +- .../project.lock.json | 4618 ++++++++++++ .../project.json | 22 +- .../project.lock.json | 1755 +++++ .../project.json | 44 +- .../project.lock.json | 5067 +++++++++++++ .../project.json | 32 +- .../project.lock.json | 1944 +++++ .../project.json | 40 +- .../project.lock.json | 5065 +++++++++++++ .../project.json | 24 +- .../project.lock.json | 2052 ++++++ .../project.json | 30 +- .../project.lock.json | 4740 ++++++++++++ .../project.json | 24 +- .../project.lock.json | 1808 +++++ .../project.json | 34 +- .../project.lock.json | 6381 +++++++++++++++++ .../project.json | 24 +- .../project.lock.json | 2100 ++++++ .../project.json | 26 +- .../project.lock.json | 4974 +++++++++++++ .../project.json | 24 +- .../project.lock.json | 1856 +++++ .../project.json | 26 +- .../project.lock.json | 4822 +++++++++++++ .../EntityFramework.Sqlite.Tests/project.json | 24 +- .../project.lock.json | 1864 +++++ 55 files changed, 88084 insertions(+), 593 deletions(-) create mode 100644 src/EntityFramework.Commands/project.lock.json create mode 100644 src/EntityFramework.Core/project.lock.json create mode 100644 src/EntityFramework.InMemory/project.lock.json create mode 100644 src/EntityFramework.Relational.Design/project.lock.json create mode 100644 src/EntityFramework.Relational/project.lock.json create mode 100644 src/EntityFramework.SqlServer.Design/project.lock.json create mode 100644 src/EntityFramework.SqlServer/project.lock.json create mode 100644 src/EntityFramework.Sqlite/project.lock.json create mode 100644 test/EntityFramework.Commands.FunctionalTests/project.lock.json create mode 100644 test/EntityFramework.Commands.Tests/project.lock.json create mode 100644 test/EntityFramework.Core.FunctionalTests/project.lock.json create mode 100644 test/EntityFramework.Core.Tests/project.lock.json create mode 100644 test/EntityFramework.CrossStore.FunctionalTests/project.lock.json create mode 100644 test/EntityFramework.InMemory.FunctionalTests/project.lock.json create mode 100644 test/EntityFramework.InMemory.Tests/project.lock.json create mode 100644 test/EntityFramework.Microbenchmarks.Core/project.lock.json create mode 100644 test/EntityFramework.Microbenchmarks.EF6/project.lock.json create mode 100644 test/EntityFramework.Microbenchmarks/project.lock.json create mode 100644 test/EntityFramework.Relational.Design.Tests/project.lock.json create mode 100644 test/EntityFramework.Relational.FunctionalTests/project.lock.json create mode 100644 test/EntityFramework.Relational.Tests/project.lock.json create mode 100644 test/EntityFramework.SqlServer.Design.FunctionalTests/project.lock.json create mode 100644 test/EntityFramework.SqlServer.Design.Tests/project.lock.json create mode 100644 test/EntityFramework.SqlServer.FunctionalTests/project.lock.json create mode 100644 test/EntityFramework.SqlServer.Tests/project.lock.json create mode 100644 test/EntityFramework.Sqlite.FunctionalTests/project.lock.json create mode 100644 test/EntityFramework.Sqlite.Tests/project.lock.json diff --git a/build.cmd b/build.cmd index 41025afb267..5a69c96e868 100644 --- a/build.cmd +++ b/build.cmd @@ -16,11 +16,19 @@ copy %CACHED_NUGET% .nuget\nuget.exe > nul :restore IF EXIST packages\KoreBuild goto run -.nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre +IF DEFINED BUILDCMD_RELEASE ( + .nuget\NuGet.exe install KoreBuild -version 0.2.1-%BUILDCMD_RELEASE% -ExcludeVersion -o packages -nocache -pre +) ELSE ( + .nuget\NuGet.exe install KoreBuild -ExcludeVersion -o packages -nocache -pre +) .nuget\NuGet.exe install Sake -version 0.2 -o packages -ExcludeVersion IF "%SKIP_DNX_INSTALL%"=="1" goto run -CALL packages\KoreBuild\build\dnvm upgrade -runtime CLR -arch x86 +IF DEFINED BUILDCMD_RELEASE ( + CALL packages\KoreBuild\build\dnvm install 1.0.0-%BUILDCMD_RELEASE% -runtime CLR -arch x86 -a default +) ELSE ( + CALL packages\KoreBuild\build\dnvm upgrade -runtime CLR -arch x86 +) CALL packages\KoreBuild\build\dnvm install default -runtime CoreCLR -arch x86 :run diff --git a/src/EntityFramework.Commands/project.json b/src/EntityFramework.Commands/project.json index a49e1c99d2b..8a64a4f39a0 100644 --- a/src/EntityFramework.Commands/project.json +++ b/src/EntityFramework.Commands/project.json @@ -1,52 +1,58 @@ { - "version": "7.0.0-*", - "description": "Command line utilities for Entity Framework.", - "repository": { - "type": "git", - "url": "git://github.com/aspnet/entityframework" - }, - "compilationOptions": { - "warningsAsErrors": true - }, - "compile": "..\\Shared\\*.cs", - "exclude": "tools\\Handlers.cs", - "namedResource": { - "EntityFramework.Commands.Strings": "Properties/Strings.resx" - }, - "frameworks": { - "net45": { - "dependencies": { - "EntityFramework.Relational.Design": "7.0.0-*" - } + "version": "7.0.0-beta6", + "description": "Command line utilities for Entity Framework.", + "repository": { + "type": "git", + "url": "git://github.com/aspnet/entityframework" }, - "dnx451": { - "dependencies": { - "EntityFramework.Relational.Design": "7.0.0-*", - "Microsoft.AspNet.Hosting": "1.0.0-*", - "Microsoft.Framework.CommandLineUtils.Sources": { "version": "1.0.0-*", "type": "build" }, - "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-*", - "Microsoft.Framework.Runtime.Abstractions": "1.0.0-*" - } + "compilationOptions": { + "warningsAsErrors": true }, - "dnxcore50": { - "dependencies": { - "EntityFramework.Relational.Design": "7.0.0-*", - "Microsoft.AspNet.Hosting": "1.0.0-*", - "Microsoft.Framework.CommandLineUtils.Sources": { "version": "1.0.0-*", "type": "build" }, - "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-*", - "Microsoft.Framework.Runtime.Abstractions": "1.0.0-*" - } + "compile": "..\\Shared\\*.cs", + "exclude": "tools\\Handlers.cs", + "namedResource": { + "EntityFramework.Commands.Strings": "Properties/Strings.resx" }, - "netcore50": { - "bin": { - "assembly": "lib\\netcore50\\_._" - }, - "dependencies": { - "EntityFramework.Relational": "7.0.0-*" - } + "frameworks": { + "net45": { + "dependencies": { + "EntityFramework.Relational.Design": "7.0.0-beta6" + } + }, + "dnx451": { + "dependencies": { + "EntityFramework.Relational.Design": "7.0.0-beta6", + "Microsoft.AspNet.Hosting": "1.0.0-beta6", + "Microsoft.Framework.CommandLineUtils.Sources": { + "version": "1.0.0-beta6", + "type": "build" + }, + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + } + }, + "dnxcore50": { + "dependencies": { + "EntityFramework.Relational.Design": "7.0.0-beta6", + "Microsoft.AspNet.Hosting": "1.0.0-beta6", + "Microsoft.Framework.CommandLineUtils.Sources": { + "version": "1.0.0-beta6", + "type": "build" + }, + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + } + }, + "netcore50": { + "bin": { + "assembly": "lib\\netcore50\\_._" + }, + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6" + } + } + }, + "commands": { + "ef": "EntityFramework.Commands" } - }, - "commands": { - "ef": "EntityFramework.Commands" - } -} +} \ No newline at end of file diff --git a/src/EntityFramework.Commands/project.lock.json b/src/EntityFramework.Commands/project.lock.json new file mode 100644 index 00000000000..6bd7aeb579a --- /dev/null +++ b/src/EntityFramework.Commands/project.lock.json @@ -0,0 +1,5923 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.5": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.AspNet.Razor.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.AspNet.Razor.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + } + }, + "DNX,Version=v4.5.1": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.ComponentModel.DataAnnotations", + "System.Core", + "System.Diagnostics.Debug", + "System.Diagnostics.Tools", + "System.Globalization", + "System.Linq", + "System.Linq.Expressions", + "System.Linq.Queryable", + "System.ObjectModel", + "System.Reflection", + "System.Reflection.Extensions", + "System.Resources.ResourceManager", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading" + ], + "compile": { + "lib/dnx451/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dnx451/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta6", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Http": "1.0.0-beta6", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta6", + "Microsoft.Framework.Configuration": "1.0.0-beta6", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta6", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta6", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta6", + "Microsoft.Net.Http.Headers": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta6", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6", + "Microsoft.Net.Http.Headers": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Razor.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Razor.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "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.CommandLineUtils.Sources/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Roslyn.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.Text.Encoding", + "System.Threading.Tasks" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.0.0", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + } + }, + "DNXCore,Version=v5.0": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Collections.Immutable": "1.1.37-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.ComponentModel.Annotations": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Queryable": "4.0.0-beta-23109", + "System.ObjectModel": "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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6", + "Microsoft.CSharp": "4.0.0-beta-23109", + "System.Data.Common": "4.0.0-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Relational.dll": {} + } + }, + "Ix-Async/1.2.4": { + "compile": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "System.IO": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta6", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Http": "1.0.0-beta6", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta6", + "Microsoft.Framework.Configuration": "1.0.0-beta6", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta6", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Newtonsoft.Json": "6.0.6", + "System.Console": "4.0.0-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta6", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta6", + "Microsoft.Net.Http.Headers": "1.0.0-beta6", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta6", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Globalization.Extensions": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Net.Primitives": "4.0.10-beta-23109", + "System.Net.WebSockets": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Security.Claims": "4.0.0-beta-23109", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23109", + "System.Security.Principal": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6", + "Microsoft.Net.Http.Headers": "1.0.0-beta6", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Net.Primitives": "4.0.10-beta-23109", + "System.Net.WebSockets": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Security.Claims": "4.0.0-beta-23109", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23109", + "System.Security.Principal": "4.0.0-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109", + "System.Threading.Thread": "4.0.0-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Razor.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Razor.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": {}, + "Microsoft.CodeAnalysis.Common/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Dynamic.Runtime": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.10-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.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Linq": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Ini.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Ini.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.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.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Roslyn.Abstractions": "1.0.0-beta6", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.0.0", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Contracts": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Globalization.Extensions": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tracing": "4.0.20-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23109": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Console/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Data.Common/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Data.Common.dll": {} + }, + "runtime": { + "lib/dotnet/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.0-beta-23109": { + "dependencies": { + "System.Linq.Expressions": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Overlapped": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23109": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Overlapped": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit": "4.0.0-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "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.Primitives/4.0.10-beta-23109": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23109": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23109": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23109", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.0-beta-23109", + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tracing": "4.0.20-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23109", + "System.Security.Principal.Windows": "4.0.0-beta-23109", + "System.Security.SecureString": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Overlapped": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109", + "System.Threading.ThreadPool": "4.0.10-beta-23109" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23109": { + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23109": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Security.Principal": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23109": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23109", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23109": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23109", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Globalization.Calendars": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Runtime.Numerics": "4.0.0-beta-23109", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23109", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23109", + "System.Security.Cryptography.RSA": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Claims": "4.0.0-beta-23109", + "System.Security.Principal": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23109": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + } + }, + ".NETCore,Version=v5.0": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Collections.Immutable": "1.1.37-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.ComponentModel.Annotations": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Queryable": "4.0.0-beta-23109", + "System.ObjectModel": "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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6", + "Microsoft.CSharp": "4.0.0-beta-23109", + "System.Data.Common": "4.0.0-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Relational.dll": {} + } + }, + "Ix-Async/1.2.4": { + "compile": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + } + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Dynamic.Runtime": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.10-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.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/netcore50/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netcore50/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Linq": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.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.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.10-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/netcore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tracing": "4.0.20-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/netcore50/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netcore50/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.Data.Common/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Data.Common.dll": {} + }, + "runtime": { + "lib/dotnet/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/netcore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/netcore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/netcore50/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/netcore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.0-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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/netcore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.0-beta-23109": { + "dependencies": { + "System.Linq.Expressions": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/netcore50/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Globalization/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/netcore50/System.Globalization.dll": {} + } + }, + "System.IO/4.0.10-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/netcore50/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Runtime.WindowsRuntime": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Overlapped": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/netcore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "ref/netcore50/System.Linq.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "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/netcore50/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Queryable.dll": {} + } + }, + "System.ObjectModel/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23109": { + "compile": { + "ref/netcore50/_._": {} + }, + "runtime": { + "lib/netcore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-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" + }, + "compile": { + "ref/netcore50/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/netcore50/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Contracts": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/netcore50/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/netcore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23109": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.WindowsRuntime/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/win8/_._": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/netcore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/netcore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/netcore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/netcore50/System.Threading.Tasks.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "EntityFramework.Relational/7.0.0-beta6": { + "serviceable": true, + "sha512": "2CVE3UZjzXDRFYyfVL0lePnK1t2ZyLexNE88SiuUhY4mPC5SOWmDZ7mhLvtXeVJL/7PBpEmDy0qSDZRBpJ/Kiw==", + "files": [ + "EntityFramework.Relational.7.0.0-beta6.nupkg", + "EntityFramework.Relational.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Relational.nuspec", + "lib/dotnet/EntityFramework.Relational.dll", + "lib/dotnet/EntityFramework.Relational.xml", + "lib/net45/EntityFramework.Relational.dll", + "lib/net45/EntityFramework.Relational.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "6SdDa7Fx/38scBkaOGySzkSMQhk58ERdzouVyxJ9FhhXph2MEMgSuqNACCgTOX6+zFl6ZUwJG0DphQ+iYv2jrw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll", + "lib/dnx451/Microsoft.AspNet.FeatureModel.xml", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.xml", + "Microsoft.AspNet.FeatureModel.1.0.0-beta6.nupkg", + "Microsoft.AspNet.FeatureModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.FeatureModel.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "KocyYqntJkcGv4//VyaolXixf/XRInce9xtvbgb7n3+UtKFDU/q0CvSV/8OoLhIoYxTvC61bQcyoCOg6AlSfTg==", + "files": [ + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.xml", + "lib/net45/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/net45/Microsoft.AspNet.FileProviders.Abstractions.xml", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta6": { + "serviceable": true, + "sha512": "jQR2r1ZMD80IG++gPq0YElidsvZUiauH6KImIXVM/TD3NGYNeksm97XbKV2r5hUGrTBYfqItmvWRuTCjW6io1Q==", + "files": [ + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.xml", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.xml", + "lib/net45/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/net45/Microsoft.AspNet.FileProviders.Physical.xml", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta6.nupkg", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Physical.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting/1.0.0-beta6": { + "serviceable": true, + "sha512": "q9MmbmxtnXdtWoJreTESNY/fNq2I2KSLD6XPg3vLnFK2qWvCBvNq29qVi67ft2bGLhjpxQLO0NYah4d1yhzpag==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Hosting.dll", + "lib/dnx451/Microsoft.AspNet.Hosting.xml", + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll", + "lib/dnxcore50/Microsoft.AspNet.Hosting.xml", + "Microsoft.AspNet.Hosting.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Hosting.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Hosting.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "gAqZ7jxzQroxKtbVU0Azwp05jt9DqdSYBnc7touWEms3vgS8AX16NU+l4OAPXKlAyKHsmy8P1JNM9zNbPD/kOA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.xml", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Hosting.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta6": { + "sha512": "iXOxv5XEBy/Hpq6ncoZ08qbrf55xiM1aZWyjiP9oASRqIAuHi9d5zh3ehsLKaiUQCfsfFozkPBoSwv7pRg/ZSQ==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.xml", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Hosting.Server.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http/1.0.0-beta6": { + "serviceable": true, + "sha512": "67oPgXxtKkenyJ6cQv1w5SFX1Iy9E5kGJ/nFLZb8y0NFq0q40VU+TSTaNksyAN/7NCLSdpXdZqLRIplkc/VdUw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.dll", + "lib/dnx451/Microsoft.AspNet.Http.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.xml", + "Microsoft.AspNet.Http.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "yb6WdoTelIHfgNuKzHp5uu4qHB7CyXAs+41PFyskNTkWn4TwCXzoCnpJV08X3n2GdjqMCzeb2U2FFafmeZxAkQ==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.xml", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta6": { + "serviceable": true, + "sha512": "Ad/hoYInYZLVJ0ch0jXCA4SXLo2AykwSrlr5c1l/9V2YCC4WHWwqFEMuS+3vIRMECHWbHuQJBz2HEcdPWrGoyw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll", + "lib/dnx451/Microsoft.AspNet.Http.Extensions.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.xml", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta6": { + "serviceable": true, + "sha512": "x9m0cW55Y5oFBCgD4Yqwfyu14kw0AkNm2UFgrdCpTy6h7GBaV2nc5sSx6SgoP4fwThco5gac29GpH8IBXOUeYA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.Features.dll", + "lib/dnx451/Microsoft.AspNet.Http.Features.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.Features.xml", + "Microsoft.AspNet.Http.Features.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "serviceable": true, + "sha512": "GkdomN9ySGxL9FqgD8pdxxljGWvIFOyRPKzbLe+XseKDfpP9YNzkX2+oD2TLcwCl/O7bJcX2F7k0Zlf96fMpfw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Razor.dll", + "lib/dnx451/Microsoft.AspNet.Razor.xml", + "lib/dnxcore50/Microsoft.AspNet.Razor.dll", + "lib/dnxcore50/Microsoft.AspNet.Razor.xml", + "lib/net45/Microsoft.AspNet.Razor.dll", + "lib/net45/Microsoft.AspNet.Razor.xml", + "Microsoft.AspNet.Razor.4.0.0-beta6.nupkg", + "Microsoft.AspNet.Razor.4.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Razor.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta6": { + "serviceable": true, + "sha512": "bLN5Nk0K9DB5trMtXUIrvNMxm+VKVPKcUHfM7mGBaKbBSARVvd5KIJTt+8Z9UF1IjjItd4/bV6gRTbo1Fo3/lw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll", + "lib/dnx451/Microsoft.AspNet.WebUtilities.xml", + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll", + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.xml", + "Microsoft.AspNet.WebUtilities.1.0.0-beta6.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec", + "repo.json" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "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.0.0": { + "sha512": "MhxsY8N9veim57uXqcRCJb7X9xZoWhMDU4/EyIqNkS7qfRsLxrzELSpjp6NjFkISZElvwIV2Ehi3UxyJui/gPw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "sha512": "KZ70r7EF+Dn8qp2p1CiBJGVoIG6el7Q9cLhnXuq+3oLcnMvUk2XzimB36AgO/Qg/liqRzf992WmFWhwqZSaIEg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "MO4Lu8aMS1vL4Omp/gIMl2hr4sdV1l99p6xhAExGnS3MlFEa5JYPDL5mpdeg/osDH+1gAhb11xMJTYP7Ya3cAA==", + "files": [ + "lib/dotnet/Microsoft.CSharp.dll", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg.sha512", + "Microsoft.CSharp.nuspec", + "ref/dotnet/de/Microsoft.CSharp.xml", + "ref/dotnet/es/Microsoft.CSharp.xml", + "ref/dotnet/fr/Microsoft.CSharp.xml", + "ref/dotnet/it/Microsoft.CSharp.xml", + "ref/dotnet/ja/Microsoft.CSharp.xml", + "ref/dotnet/ko/Microsoft.CSharp.xml", + "ref/dotnet/Microsoft.CSharp.dll", + "ref/dotnet/Microsoft.CSharp.xml", + "ref/dotnet/ru/Microsoft.CSharp.xml", + "ref/dotnet/zh-hans/Microsoft.CSharp.xml", + "ref/dotnet/zh-hant/Microsoft.CSharp.xml", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta6": { + "sha512": "SoI/xicmO2Nutc3y1Wxg2GIR18M5IDqYjUR5plULxb8XCMDeJ8oYKAicpEeHuc/GNUHiICmac0U4li50DTVqBA==", + "files": [ + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.xml", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.xml", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta6.nupkg", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.CommandLineUtils.Sources.nuspec", + "shared/AnsiConsole.cs", + "shared/CommandArgument.cs", + "shared/CommandLineApplication.cs", + "shared/CommandOption.cs", + "shared/CommandOptionType.cs" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta6": { + "serviceable": true, + "sha512": "9DX3AnuzuNl4QZLP/U/zkW03cASmOKJafcAXf1c/DUTJ7nRq9jUyVk9myJYd7+t0nmXXS1majXAHG3oQ/RGfTw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll", + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.xml", + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.dll", + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.xml", + "lib/net45/Microsoft.Framework.Configuration.CommandLine.dll", + "lib/net45/Microsoft.Framework.Configuration.CommandLine.xml", + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.CommandLine.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6": { + "serviceable": true, + "sha512": "wUYZglLlkxL6xpbOHv6TqeJeT3GwpOxNRw3gkWOpM7OVrhAORm1pWnQ4qA+kWs5RDXSEntv47dK95MIypfIWKQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "lib/net45/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/net45/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.EnvironmentVariables.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta6": { + "serviceable": true, + "sha512": "czas9Cge4+tptJ3TCA8TSFZBuXS7CAXvEJu6ssD467uZ2QHZF/1EF4aUnJs9BJ5cTZ8+/baROjXL1jVS+QVDuA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Ini.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Ini.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Ini.xml", + "lib/net45/Microsoft.Framework.Configuration.Ini.dll", + "lib/net45/Microsoft.Framework.Configuration.Ini.xml", + "Microsoft.Framework.Configuration.Ini.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Ini.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Ini.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "w4Cwg6jgPd3XFGOgBGU3GVGVAwUcMglSDTlI23M8uI7yhDRSDbxZ2HPbjTEBMoj+IYdkfunZWFdA67tdk8L8Tg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta6": { + "sha512": "+y/7JAz5lC3cmxeNe88Bi80jw6gA2f092y7vk8J6GXOWcUV+I3QoBl0p2Hne5T2YDfZALtzuyVGqsXIaM1X93A==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Roslyn/1.0.0-beta6": { + "serviceable": true, + "sha512": "P15pRq5zhTX6VB3yKJATfHf9/QpLSJZRnof81fj0BlEx0sTZdYVojbd1FSLKaG8aKb0B82TZrwk49UqIsKvSMA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.xml", + "Microsoft.Framework.Runtime.Roslyn.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Roslyn.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Roslyn.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Roslyn.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "gEHCvzynTJl20HUNR0Ag2K5i07oQUk+XIakcagbS6dsz7SQO2YFPmCoxUAp4puqjfsb4XZ8koZHQfLsEDGJd2A==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.xml", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta6": { + "serviceable": true, + "sha512": "OvCNyGPZq645VdMzHZ8vLdlYIdl7KlZfVrCu+30DfwSCGV36ByJkUPHer3wU688jWFPx2S1OO7f82fJENYwz8Q==", + "files": [ + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll", + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.xml", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.xml", + "lib/net45/Microsoft.Framework.WebEncoders.Core.dll", + "lib/net45/Microsoft.Framework.WebEncoders.Core.xml", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta6.nupkg", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.WebEncoders.Core.nuspec", + "repo.json" + ] + }, + "Microsoft.Net.Http.Headers/1.0.0-beta6": { + "serviceable": true, + "sha512": "PeBHRiu9gSlP31Z1V3WEmIEb+1YJDdNdQY7xsSA98d3GnZqi+7ZERXVNcDDYMI16QViA/+Gq10HtYti8GwDHtQ==", + "files": [ + "lib/dnx451/Microsoft.Net.Http.Headers.dll", + "lib/dnx451/Microsoft.Net.Http.Headers.xml", + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll", + "lib/dnxcore50/Microsoft.Net.Http.Headers.xml", + "lib/net45/Microsoft.Net.Http.Headers.dll", + "lib/net45/Microsoft.Net.Http.Headers.xml", + "Microsoft.Net.Http.Headers.1.0.0-beta6.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-beta6.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec", + "repo.json" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "GsSRwzgrK2WJHUyd83AtKEX+Hv8ecmnwerJzinTXNqddsI48ClaeAyBgUnvRh5e/R8zzfIFqSHD1iEXSOSjAgQ==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23109.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23109.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/de/Microsoft.Win32.Primitives.xml", + "ref/dotnet/es/Microsoft.Win32.Primitives.xml", + "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", + "ref/dotnet/it/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "2/VX+2QEyyIpvGDzuIXX8V0vSl/Llt673DR48nNmeA6BoMuwL4Eu4F1Meh9fPp80nhcjifqVK8g7/UQDn/0PFw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23109.nupkg", + "System.Collections.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "fRXR5y4dg9zPovFpSQZkc6gnyMNlQJVQ8lKqPDPFSIelhqWxv2VyY87s5Vd9ViGwKrFwekDwCQFug9ny8qCHuA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Collections.Concurrent.xml", + "ref/dotnet/es/System.Collections.Concurrent.xml", + "ref/dotnet/fr/System.Collections.Concurrent.xml", + "ref/dotnet/it/System.Collections.Concurrent.xml", + "ref/dotnet/ja/System.Collections.Concurrent.xml", + "ref/dotnet/ko/System.Collections.Concurrent.xml", + "ref/dotnet/ru/System.Collections.Concurrent.xml", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/dotnet/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Z+VGG3YaL4PxuBn/Nbjul1OoaCBzvkylexTwIW6s8arj3c17XkCeJvZ1BIn66lzDpAQYMGZmv97UMT6OboRoVg==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/de/System.Collections.NonGeneric.xml", + "ref/dotnet/es/System.Collections.NonGeneric.xml", + "ref/dotnet/fr/System.Collections.NonGeneric.xml", + "ref/dotnet/it/System.Collections.NonGeneric.xml", + "ref/dotnet/ja/System.Collections.NonGeneric.xml", + "ref/dotnet/ko/System.Collections.NonGeneric.xml", + "ref/dotnet/ru/System.Collections.NonGeneric.xml", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", + "ref/net46/System.Collections.NonGeneric.dll", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "JFzHUvX28tQbud0c9AP+SFeOroBG9x7tgc0OYu0Z5nQotnIiwP5nHXq9DoK3N2y0MoRUt8jy2FwkRMAYgiQuNQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.ComponentModel.xml", + "ref/dotnet/es/System.ComponentModel.xml", + "ref/dotnet/fr/System.ComponentModel.xml", + "ref/dotnet/it/System.ComponentModel.xml", + "ref/dotnet/ja/System.ComponentModel.xml", + "ref/dotnet/ko/System.ComponentModel.xml", + "ref/dotnet/ru/System.ComponentModel.xml", + "ref/dotnet/System.ComponentModel.dll", + "ref/dotnet/System.ComponentModel.xml", + "ref/dotnet/zh-hans/System.ComponentModel.xml", + "ref/dotnet/zh-hant/System.ComponentModel.xml", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.0-beta-23109.nupkg", + "System.ComponentModel.4.0.0-beta-23109.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "tfq+u00KcRXrvtYS4v7Bi4NgfFXt0sx5IgqqgeWCOFtwhDTVWgL3XJN/lanFtANnG7+zVU3+B5mvjH1pblGHxg==", + "files": [ + "lib/dotnet/System.ComponentModel.Annotations.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ComponentModel.Annotations.xml", + "ref/dotnet/es/System.ComponentModel.Annotations.xml", + "ref/dotnet/fr/System.ComponentModel.Annotations.xml", + "ref/dotnet/it/System.ComponentModel.Annotations.xml", + "ref/dotnet/ja/System.ComponentModel.Annotations.xml", + "ref/dotnet/ko/System.ComponentModel.Annotations.xml", + "ref/dotnet/ru/System.ComponentModel.Annotations.xml", + "ref/dotnet/System.ComponentModel.Annotations.dll", + "ref/dotnet/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", + "ref/net46/_._", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg.sha512", + "System.ComponentModel.Annotations.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "M5Ac5DJJ/xUy5N/9XlyOYJ2Y+C0ZvajUcgcywvWJKSFXsGwTPGHkri5ajXnJ6aLjQYggUrzJJ/tQEsO2jxec9Q==", + "files": [ + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/dotnet/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/net46/_._", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23109.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23109.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec" + ] + }, + "System.Console/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "ytlRZBI9ZoHiGwmyOg9bGlxvuGQ72YjKsjMWVfMOS57pupJySse2FHIAFMM3RShpY1y36/IUYVDjoPsFKuRn0Q==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/de/System.Console.xml", + "ref/dotnet/es/System.Console.xml", + "ref/dotnet/fr/System.Console.xml", + "ref/dotnet/it/System.Console.xml", + "ref/dotnet/ja/System.Console.xml", + "ref/dotnet/ko/System.Console.xml", + "ref/dotnet/ru/System.Console.xml", + "ref/dotnet/System.Console.dll", + "ref/dotnet/System.Console.xml", + "ref/dotnet/zh-hans/System.Console.xml", + "ref/dotnet/zh-hant/System.Console.xml", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23109.nupkg", + "System.Console.4.0.0-beta-23109.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Data.Common/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "oWJT16F9TqEP1dQDNZUSuJ1gH17YyR8wTD+zfz03oflnAUWlyH2QM/px/X10GPZAn9Qz58EYR/maNzJIX9FSOA==", + "files": [ + "lib/dotnet/System.Data.Common.dll", + "lib/net46/System.Data.Common.dll", + "ref/dotnet/de/System.Data.Common.xml", + "ref/dotnet/es/System.Data.Common.xml", + "ref/dotnet/fr/System.Data.Common.xml", + "ref/dotnet/it/System.Data.Common.xml", + "ref/dotnet/ja/System.Data.Common.xml", + "ref/dotnet/ko/System.Data.Common.xml", + "ref/dotnet/ru/System.Data.Common.xml", + "ref/dotnet/System.Data.Common.dll", + "ref/dotnet/System.Data.Common.xml", + "ref/dotnet/zh-hans/System.Data.Common.xml", + "ref/dotnet/zh-hant/System.Data.Common.xml", + "ref/net46/System.Data.Common.dll", + "System.Data.Common.4.0.0-beta-23109.nupkg", + "System.Data.Common.4.0.0-beta-23109.nupkg.sha512", + "System.Data.Common.nuspec" + ] + }, + "System.Diagnostics.Contracts/4.0.0-beta-23109": { + "sha512": "kvQ39S26PRGerulw6LayNGxleSvNB0koSkcoHqZQdf8YLbKWFYR84G8lZJr0uhPIKJrLiNw0VXvHa87bNHk8IQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Diagnostics.Contracts.xml", + "ref/dotnet/es/System.Diagnostics.Contracts.xml", + "ref/dotnet/fr/System.Diagnostics.Contracts.xml", + "ref/dotnet/it/System.Diagnostics.Contracts.xml", + "ref/dotnet/ja/System.Diagnostics.Contracts.xml", + "ref/dotnet/ko/System.Diagnostics.Contracts.xml", + "ref/dotnet/ru/System.Diagnostics.Contracts.xml", + "ref/dotnet/System.Diagnostics.Contracts.dll", + "ref/dotnet/System.Diagnostics.Contracts.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Contracts.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Contracts.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/netcore50/System.Diagnostics.Contracts.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll", + "System.Diagnostics.Contracts.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Contracts.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "woJsNwCtAqYac5zp+6Wy40HAp7kYr8zhaFvHl3gECjQf+VGeGYaHgDV1ATVcyMG1h6XvmX0wtmD5Qds51CRJoA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6tFdP3p3SV6DZOagwW5ThfUF+zp5pUIyW4CY2K4B2RxV6HGVyY/8J2EuZGrcEP3wdO5fXnb9MmdOZa5Tn01Hmg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Diagnostics.Tools.xml", + "ref/dotnet/es/System.Diagnostics.Tools.xml", + "ref/dotnet/fr/System.Diagnostics.Tools.xml", + "ref/dotnet/it/System.Diagnostics.Tools.xml", + "ref/dotnet/ja/System.Diagnostics.Tools.xml", + "ref/dotnet/ko/System.Diagnostics.Tools.xml", + "ref/dotnet/ru/System.Diagnostics.Tools.xml", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/dotnet/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "sNauLSBFewFLjULHeplEr7FCmmfPbcc1jfz1Mynjy445bYiP/IW1q9X14a//oV/uQG7p82S9qHyfPxoxmt3pxQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/de/System.Diagnostics.Tracing.xml", + "ref/dotnet/es/System.Diagnostics.Tracing.xml", + "ref/dotnet/fr/System.Diagnostics.Tracing.xml", + "ref/dotnet/it/System.Diagnostics.Tracing.xml", + "ref/dotnet/ja/System.Diagnostics.Tracing.xml", + "ref/dotnet/ko/System.Diagnostics.Tracing.xml", + "ref/dotnet/ru/System.Diagnostics.Tracing.xml", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.0-beta-23109": { + "sha512": "nH2j/mWRcUME1Tz9tFXhf6zWGRVW5a5M+2bMG5GvudHv0SrbwfPGQBqwYCm5n1uQu68K1C59evXEq8BoMdXlcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Dynamic.Runtime.xml", + "ref/dotnet/es/System.Dynamic.Runtime.xml", + "ref/dotnet/fr/System.Dynamic.Runtime.xml", + "ref/dotnet/it/System.Dynamic.Runtime.xml", + "ref/dotnet/ja/System.Dynamic.Runtime.xml", + "ref/dotnet/ko/System.Dynamic.Runtime.xml", + "ref/dotnet/ru/System.Dynamic.Runtime.xml", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.xml", + "ref/dotnet/zh-hans/System.Dynamic.Runtime.xml", + "ref/dotnet/zh-hant/System.Dynamic.Runtime.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Dynamic.Runtime.4.0.0-beta-23109.nupkg", + "System.Dynamic.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23109": { + "sha512": "l4QNrgLmC4KHGLcfriJ2EmsM2j18xefJzCnLU6YqVdBFaYzsJGwqmHyIr4nqw9DBjdWEtzdHLEbvpLeEay0ZWQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23109.nupkg", + "System.Globalization.4.0.10-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23109": { + "sha512": "4qBOXdU+8MdHqm6Qsnlco/IF2j4XuKl3MCbhzUK4Hac0b9Jkh3XWRTHyy9OFzB5+WdYGGRFMAzD5AFOrI0tBCA==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/de/System.Globalization.Calendars.xml", + "ref/dotnet/es/System.Globalization.Calendars.xml", + "ref/dotnet/fr/System.Globalization.Calendars.xml", + "ref/dotnet/it/System.Globalization.Calendars.xml", + "ref/dotnet/ja/System.Globalization.Calendars.xml", + "ref/dotnet/ko/System.Globalization.Calendars.xml", + "ref/dotnet/ru/System.Globalization.Calendars.xml", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hans/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hant/System.Globalization.Calendars.xml", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0-beta-23109.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Q0BD+jsPZFtcR5DMcyERM2TggHJm9fJNGIMypTTh/6i6jET/c0B1MPnOyOUrHIbLuYrEwyiKDNJz0yw7Ps3hbg==", + "files": [ + "lib/dotnet/System.Globalization.Extensions.dll", + "lib/net46/System.Globalization.Extensions.dll", + "ref/dotnet/de/System.Globalization.Extensions.xml", + "ref/dotnet/es/System.Globalization.Extensions.xml", + "ref/dotnet/fr/System.Globalization.Extensions.xml", + "ref/dotnet/it/System.Globalization.Extensions.xml", + "ref/dotnet/ja/System.Globalization.Extensions.xml", + "ref/dotnet/ko/System.Globalization.Extensions.xml", + "ref/dotnet/ru/System.Globalization.Extensions.xml", + "ref/dotnet/System.Globalization.Extensions.dll", + "ref/dotnet/System.Globalization.Extensions.xml", + "ref/dotnet/zh-hans/System.Globalization.Extensions.xml", + "ref/dotnet/zh-hant/System.Globalization.Extensions.xml", + "ref/net46/System.Globalization.Extensions.dll", + "System.Globalization.Extensions.4.0.0-beta-23109.nupkg", + "System.Globalization.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.Extensions.nuspec" + ] + }, + "System.IO/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "DVHSyfJO8mC9CpZFjjuaOWazALkWFnI6b/fqTQCjNe1dp2XasuvTRiV/qIOJB+uyDVex8sH8QMRUDS6ukimyLA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/de/System.IO.xml", + "ref/dotnet/es/System.IO.xml", + "ref/dotnet/fr/System.IO.xml", + "ref/dotnet/it/System.IO.xml", + "ref/dotnet/ja/System.IO.xml", + "ref/dotnet/ko/System.IO.xml", + "ref/dotnet/ru/System.IO.xml", + "ref/dotnet/System.IO.dll", + "ref/dotnet/System.IO.xml", + "ref/dotnet/zh-hans/System.IO.xml", + "ref/dotnet/zh-hant/System.IO.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23109.nupkg", + "System.IO.4.0.10-beta-23109.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "OusDe4B1/Q3BYY4QzNfztnyPPK9a1OGsQVZBg41C1bk8F2S3AOtXCx0GUwAfKbVxxS4dOdIgxWw1JN5m+IlpAA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/de/System.IO.FileSystem.xml", + "ref/dotnet/es/System.IO.FileSystem.xml", + "ref/dotnet/fr/System.IO.FileSystem.xml", + "ref/dotnet/it/System.IO.FileSystem.xml", + "ref/dotnet/ja/System.IO.FileSystem.xml", + "ref/dotnet/ko/System.IO.FileSystem.xml", + "ref/dotnet/ru/System.IO.FileSystem.xml", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.xml", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "1JFc6+hsLnlYgACgluhMi19zFkNruPgWoLDq30z7qMKgs3FZqShvXDZLTQ1Hk+cnenUoUU/8P8yRdmbdQaf4yg==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Z89LYjhXGyFYuJ5ohPTV3telH1sPugfnyzOM2GILpMAXGrG/KCMpFeLLNXQ9jaJXBmS5nT9xoGqt5hsSrscS/w==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/de/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/es/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/fr/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/it/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/ja/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/ko/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/ru/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Watcher.xml", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "System.IO.FileSystem.Watcher.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "cy+sQJW809QnFHIXt5Y/If45u362gwiNqHldnJS70l7VCjyR4Bo3UgZMZl+bowSupWxqXk69cwCQhRUyFu2hVw==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/de/System.Linq.Expressions.xml", + "ref/dotnet/es/System.Linq.Expressions.xml", + "ref/dotnet/fr/System.Linq.Expressions.xml", + "ref/dotnet/it/System.Linq.Expressions.xml", + "ref/dotnet/ja/System.Linq.Expressions.xml", + "ref/dotnet/ko/System.Linq.Expressions.xml", + "ref/dotnet/ru/System.Linq.Expressions.xml", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.xml", + "ref/dotnet/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet/zh-hant/System.Linq.Expressions.xml", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Mu6nIhw5k/zAMigeCh4aqma3kwXLoyPREVD6RxVPhGu2QJjAEeih0GWumoDjtdFp0B5Q6sYeakWDAds7NmzWQg==", + "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.Primitives/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "Btf+WQXkAQpm6rF/aeNhr8zXUCAsnZuHLVOzVIvnXS4wA32ZsmOa0iCnAjhVGAz7BNOYsjpvKWAHyxO58k+l3g==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/de/System.Net.Primitives.xml", + "ref/dotnet/es/System.Net.Primitives.xml", + "ref/dotnet/fr/System.Net.Primitives.xml", + "ref/dotnet/it/System.Net.Primitives.xml", + "ref/dotnet/ja/System.Net.Primitives.xml", + "ref/dotnet/ko/System.Net.Primitives.xml", + "ref/dotnet/ru/System.Net.Primitives.xml", + "ref/dotnet/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.xml", + "ref/dotnet/zh-hans/System.Net.Primitives.xml", + "ref/dotnet/zh-hant/System.Net.Primitives.xml", + "ref/net46/_._", + "System.Net.Primitives.4.0.10-beta-23109.nupkg", + "System.Net.Primitives.4.0.10-beta-23109.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.WebSockets/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "oeNoZE8gMn6cz+6cK6K2or4nKR+HUa0lxfgEd5UkFvnr6hwU2islJ+K9oRdm6u3sQVEHfQSAuBKSIBekKuBX2w==", + "files": [ + "lib/DNXCore50/System.Net.WebSockets.dll", + "lib/net46/System.Net.WebSockets.dll", + "ref/dotnet/de/System.Net.WebSockets.xml", + "ref/dotnet/es/System.Net.WebSockets.xml", + "ref/dotnet/fr/System.Net.WebSockets.xml", + "ref/dotnet/it/System.Net.WebSockets.xml", + "ref/dotnet/ja/System.Net.WebSockets.xml", + "ref/dotnet/ko/System.Net.WebSockets.xml", + "ref/dotnet/ru/System.Net.WebSockets.xml", + "ref/dotnet/System.Net.WebSockets.dll", + "ref/dotnet/System.Net.WebSockets.xml", + "ref/dotnet/zh-hans/System.Net.WebSockets.xml", + "ref/dotnet/zh-hant/System.Net.WebSockets.xml", + "ref/net46/System.Net.WebSockets.dll", + "System.Net.WebSockets.4.0.0-beta-23109.nupkg", + "System.Net.WebSockets.4.0.0-beta-23109.nupkg.sha512", + "System.Net.WebSockets.nuspec" + ] + }, + "System.ObjectModel/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "mnrhXE8nT5mX/ndEJ5BsdLCgN6CofKiwQvr9Olsp/s3crY5/lXYM73N2bNSvsFcHD1o0XhaCOn18Vekv6SYTpg==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ObjectModel.xml", + "ref/dotnet/es/System.ObjectModel.xml", + "ref/dotnet/fr/System.ObjectModel.xml", + "ref/dotnet/it/System.ObjectModel.xml", + "ref/dotnet/ja/System.ObjectModel.xml", + "ref/dotnet/ko/System.ObjectModel.xml", + "ref/dotnet/ru/System.ObjectModel.xml", + "ref/dotnet/System.ObjectModel.dll", + "ref/dotnet/System.ObjectModel.xml", + "ref/dotnet/zh-hans/System.ObjectModel.xml", + "ref/dotnet/zh-hant/System.ObjectModel.xml", + "ref/net46/_._", + "System.ObjectModel.4.0.10-beta-23109.nupkg", + "System.ObjectModel.4.0.10-beta-23109.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Networking/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "xJxSwEnJe2lmzuahgRjQJY7WcPFFBp60d4TLY9LejGgBbR1yGiQo094nZPkVYChQTz3TtKayLvZZOdNVpONhKQ==", + "files": [ + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.4.0.0-beta-23109.nupkg", + "System.Private.Networking.4.0.0-beta-23109.nupkg.sha512", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "y6M7TxwDXBD2in5cCf+KzucZyx7YE7SJMcU24atzYnpwP2xFASUYCeI6NRg5bYcw2Do5HKBz+XdE9WiZrwpnFg==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23109.nupkg", + "System.Private.Uri.4.0.0-beta-23109.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23109": { + "sha512": "aeXO8gjPb46LaP727cXDcCZ2mZoMxguq2UhE25wJoO1Je8Q8D2JFonNk85oVlgXCdEM6XgrtRnsnhvj8PmTBNg==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/de/System.Reflection.xml", + "ref/dotnet/es/System.Reflection.xml", + "ref/dotnet/fr/System.Reflection.xml", + "ref/dotnet/it/System.Reflection.xml", + "ref/dotnet/ja/System.Reflection.xml", + "ref/dotnet/ko/System.Reflection.xml", + "ref/dotnet/ru/System.Reflection.xml", + "ref/dotnet/System.Reflection.dll", + "ref/dotnet/System.Reflection.xml", + "ref/dotnet/zh-hans/System.Reflection.xml", + "ref/dotnet/zh-hant/System.Reflection.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23109.nupkg", + "System.Reflection.4.0.10-beta-23109.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "sha512": "H8QtiSXFHNiQIPZe3PdNJPIjuH9O/A8+/52bw2RIKgV8rMrshmi2LufTvYCb+V5YPBFYWg2Yt8nRISEY4+uV5Q==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/de/System.Reflection.Emit.xml", + "ref/dotnet/es/System.Reflection.Emit.xml", + "ref/dotnet/fr/System.Reflection.Emit.xml", + "ref/dotnet/it/System.Reflection.Emit.xml", + "ref/dotnet/ja/System.Reflection.Emit.xml", + "ref/dotnet/ko/System.Reflection.Emit.xml", + "ref/dotnet/ru/System.Reflection.Emit.xml", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.xml", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "sha512": "tJO27blFXyvYwDLbK7GvgFC94XjeY6MnRitBI4w8LHfEc/gVdRmCC8gzkE8KEmkecnIWIt9VTSJ3p4lGgafKKA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/wp80/_._", + "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/net45/_._", + "ref/wp80/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "sXo3+qJ7TukCF/rDFYKjEog4iVb75dXJztu/lkvhMHgYnviPSbi9zg78FQUFhB6BOvntwnknrgNJhhtl3x9a7A==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Extensions.xml", + "ref/dotnet/es/System.Reflection.Extensions.xml", + "ref/dotnet/fr/System.Reflection.Extensions.xml", + "ref/dotnet/it/System.Reflection.Extensions.xml", + "ref/dotnet/ja/System.Reflection.Extensions.xml", + "ref/dotnet/ko/System.Reflection.Extensions.xml", + "ref/dotnet/ru/System.Reflection.Extensions.xml", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/dotnet/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "R5oBDNgUtSV9KTPCxwHWiTyryX/9mngnPbLWwFOEF5xcNd3Qlu6/3LiauGsIzGtXV8vOpRl9tfyIFy8t4ix4Gw==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Primitives.xml", + "ref/dotnet/es/System.Reflection.Primitives.xml", + "ref/dotnet/fr/System.Reflection.Primitives.xml", + "ref/dotnet/it/System.Reflection.Primitives.xml", + "ref/dotnet/ja/System.Reflection.Primitives.xml", + "ref/dotnet/ko/System.Reflection.Primitives.xml", + "ref/dotnet/ru/System.Reflection.Primitives.xml", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "lTuPMxeoT/Jqb1QtsIuSomLiJpQP3Y4DqqxLPncrMvLrejwdF25QSbhXdx5twgvBDqwSVL8wYtqiOqKe02u7FA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/de/System.Reflection.TypeExtensions.xml", + "ref/dotnet/es/System.Reflection.TypeExtensions.xml", + "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", + "ref/dotnet/it/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "6usAb6nZEPKugl3z5JR/RZrouH5/340n3tM0lhRfxVE/k3B3Sfh/sHSPiAOorrZgGm4cIDDhXTCGJQSWYphu3g==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/de/System.Runtime.xml", + "ref/dotnet/es/System.Runtime.xml", + "ref/dotnet/fr/System.Runtime.xml", + "ref/dotnet/it/System.Runtime.xml", + "ref/dotnet/ja/System.Runtime.xml", + "ref/dotnet/ko/System.Runtime.xml", + "ref/dotnet/ru/System.Runtime.xml", + "ref/dotnet/System.Runtime.dll", + "ref/dotnet/System.Runtime.xml", + "ref/dotnet/zh-hans/System.Runtime.xml", + "ref/dotnet/zh-hant/System.Runtime.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23109.nupkg", + "System.Runtime.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "JkRMtSY5YFGhP9eY7ZFIj40Ha5lGOwSxrk90k0ZAuIFn6qEPNe0NKu/C8laV7Cqy4Lv5IYzkVUGrfOqg3MOG9A==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/de/System.Runtime.Extensions.xml", + "ref/dotnet/es/System.Runtime.Extensions.xml", + "ref/dotnet/fr/System.Runtime.Extensions.xml", + "ref/dotnet/it/System.Runtime.Extensions.xml", + "ref/dotnet/ja/System.Runtime.Extensions.xml", + "ref/dotnet/ko/System.Runtime.Extensions.xml", + "ref/dotnet/ru/System.Runtime.Extensions.xml", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "XfjBv5hxBDVXvgPzBXiMpHprnmd5trdBAG4o7DEi/3GPXIlety4G0sfmlxeiTr7njKr0wF4ERdLIfzPesS5PAw==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "fxRLTR5kbqOZuSeT5ggVBYc6HIEGmEwh+Uw1ijp2qD3yMiMPmxvtI5aP5t0yZHEmwUrB37lGB+oaPpcXLH5Feg==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/de/System.Runtime.InteropServices.xml", + "ref/dotnet/es/System.Runtime.InteropServices.xml", + "ref/dotnet/fr/System.Runtime.InteropServices.xml", + "ref/dotnet/it/System.Runtime.InteropServices.xml", + "ref/dotnet/ja/System.Runtime.InteropServices.xml", + "ref/dotnet/ko/System.Runtime.InteropServices.xml", + "ref/dotnet/ru/System.Runtime.InteropServices.xml", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "l4yWLk7mSm1eUWuZRJaQ5jfPE67GI9DNR6hAKc3Dr3QnwzlzH0zyOqF1wY+2Jo0402LS+std02n2aLvbNNjQFg==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Runtime.Numerics.xml", + "ref/dotnet/es/System.Runtime.Numerics.xml", + "ref/dotnet/fr/System.Runtime.Numerics.xml", + "ref/dotnet/it/System.Runtime.Numerics.xml", + "ref/dotnet/ja/System.Runtime.Numerics.xml", + "ref/dotnet/ko/System.Runtime.Numerics.xml", + "ref/dotnet/ru/System.Runtime.Numerics.xml", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/dotnet/System.Runtime.Numerics.xml", + "ref/dotnet/zh-hans/System.Runtime.Numerics.xml", + "ref/dotnet/zh-hant/System.Runtime.Numerics.xml", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "System.Runtime.Numerics.4.0.0-beta-23109.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Runtime.WindowsRuntime/4.0.0-beta-23109": { + "sha512": "adHFQBwExdrR/m/hxwvrqmVCyzsqNcpTjE3cBuqFfunsQQHrmRsEE/sNhYTTf6GegXz66Kh4uChc7WECpyyVDQ==", + "files": [ + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Runtime.WindowsRuntime.xml", + "ref/dotnet/es/System.Runtime.WindowsRuntime.xml", + "ref/dotnet/fr/System.Runtime.WindowsRuntime.xml", + "ref/dotnet/it/System.Runtime.WindowsRuntime.xml", + "ref/dotnet/ja/System.Runtime.WindowsRuntime.xml", + "ref/dotnet/ko/System.Runtime.WindowsRuntime.xml", + "ref/dotnet/ru/System.Runtime.WindowsRuntime.xml", + "ref/dotnet/System.Runtime.WindowsRuntime.dll", + "ref/dotnet/System.Runtime.WindowsRuntime.xml", + "ref/dotnet/zh-hans/System.Runtime.WindowsRuntime.xml", + "ref/dotnet/zh-hant/System.Runtime.WindowsRuntime.xml", + "ref/netcore50/de/System.Runtime.WindowsRuntime.xml", + "ref/netcore50/es/System.Runtime.WindowsRuntime.xml", + "ref/netcore50/fr/System.Runtime.WindowsRuntime.xml", + "ref/netcore50/it/System.Runtime.WindowsRuntime.xml", + "ref/netcore50/ja/System.Runtime.WindowsRuntime.xml", + "ref/netcore50/ko/System.Runtime.WindowsRuntime.xml", + "ref/netcore50/ru/System.Runtime.WindowsRuntime.xml", + "ref/netcore50/System.Runtime.WindowsRuntime.dll", + "ref/netcore50/System.Runtime.WindowsRuntime.xml", + "ref/netcore50/zh-hans/System.Runtime.WindowsRuntime.xml", + "ref/netcore50/zh-hant/System.Runtime.WindowsRuntime.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Runtime.WindowsRuntime.4.0.0-beta-23109.nupkg", + "System.Runtime.WindowsRuntime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.WindowsRuntime.nuspec" + ] + }, + "System.Security.Claims/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6oI/9RzVy/6AVHRzuSm9oOOm3O/iS+pWDby0YTuepAtW7aT1VZiYbar0Nzi7wUJLIE+EuUWgGUgVQni0inIUSw==", + "files": [ + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/de/System.Security.Claims.xml", + "ref/dotnet/es/System.Security.Claims.xml", + "ref/dotnet/fr/System.Security.Claims.xml", + "ref/dotnet/it/System.Security.Claims.xml", + "ref/dotnet/ja/System.Security.Claims.xml", + "ref/dotnet/ko/System.Security.Claims.xml", + "ref/dotnet/ru/System.Security.Claims.xml", + "ref/dotnet/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.xml", + "ref/dotnet/zh-hans/System.Security.Claims.xml", + "ref/dotnet/zh-hant/System.Security.Claims.xml", + "ref/net46/System.Security.Claims.dll", + "System.Security.Claims.4.0.0-beta-23109.nupkg", + "System.Security.Claims.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "mEzuexl2Wn+c0RHiPNlsuUecqV1lQ9Z005vcbFHec36zEGEbshbmiiGBZQWE2Gmb9ddINAo6Ob6NnUVAWSpw4A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/de/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/es/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/fr/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/it/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/ja/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/ko/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/ru/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "System.Security.Cryptography.Encoding.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Lewf25aZTItYvFz8RtCFdNAniNQ737gkTPU9IObuzbOeX8MMGHRf9Le4AQ2SdkTTTljjhebGybF5KCKZ784DLA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/de/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/es/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/fr/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/it/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/ja/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/ko/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/ru/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Encryption.xml", + "ref/net46/System.Security.Cryptography.Encryption.dll", + "System.Security.Cryptography.Encryption.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "cFQ8ewUVBb/bv2EbH64xNjmyLo1OmWGsrj4dbHDrdm+Huu2yGvsF/sdPTtHacX7cAi5iyJIv7tT3h149rQHlhg==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/de/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/es/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/fr/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/it/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/ja/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/ko/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/ru/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Hashing.xml", + "ref/net46/System.Security.Cryptography.Hashing.dll", + "System.Security.Cryptography.Hashing.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "nwFw1zaKhA82wYjIrAQdB67ap7SnH4OThYrEG6TYgX4UJyMIxG24pegcs8aaWupAUozmLXpDVOmtAkV6oL1LBQ==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/de/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/es/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/fr/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/it/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/ja/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/ko/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/ru/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "eBEb851icqj4elt5iPbiO6cnLflOWr0tRRHEq/ekxr1P2zNkI2TntVWC+lu5MOYgRj92XRNt2H+pCootjKruMw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/de/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/es/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/fr/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/it/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/ja/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/ko/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/ru/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "sGincwuZQugP8U3hlzYbRoJ2zKZGZ2dJ/EAQ/pKryCOIlFDur18oXjRvOvTT010Yt7Y/psjCbQlHRmA8EvEKHQ==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/de/System.Security.Cryptography.RSA.xml", + "ref/dotnet/es/System.Security.Cryptography.RSA.xml", + "ref/dotnet/fr/System.Security.Cryptography.RSA.xml", + "ref/dotnet/it/System.Security.Cryptography.RSA.xml", + "ref/dotnet/ja/System.Security.Cryptography.RSA.xml", + "ref/dotnet/ko/System.Security.Cryptography.RSA.xml", + "ref/dotnet/ru/System.Security.Cryptography.RSA.xml", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.RSA.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.RSA.xml", + "ref/net46/System.Security.Cryptography.RSA.dll", + "System.Security.Cryptography.RSA.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "/N8VmWLwPrb17IFAdOdRzJ578wNYl5rIlbcBNQzabO4EVm1S72WOBWlpyKbCFeS1ejO1S+x4RMc99XQ2jLBj/A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/de/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/es/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/it/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "j94G8UrhEtW+RigEzZkayd9fcT9v/J35/V+rGzm6vmRjLE4e12+jwFUqFC9ZowElO4ZqaCoBgxu7uogHRmrKbQ==", + "files": [ + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Security.Principal.xml", + "ref/dotnet/es/System.Security.Principal.xml", + "ref/dotnet/fr/System.Security.Principal.xml", + "ref/dotnet/it/System.Security.Principal.xml", + "ref/dotnet/ja/System.Security.Principal.xml", + "ref/dotnet/ko/System.Security.Principal.xml", + "ref/dotnet/ru/System.Security.Principal.xml", + "ref/dotnet/System.Security.Principal.dll", + "ref/dotnet/System.Security.Principal.xml", + "ref/dotnet/zh-hans/System.Security.Principal.xml", + "ref/dotnet/zh-hant/System.Security.Principal.xml", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Security.Principal.4.0.0-beta-23109.nupkg", + "System.Security.Principal.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "/u7MPH/6bERVU88hsQJFoxva/OnPcS5fUrzj8OWH016zKnUElOVq76GoUdghmN5HCAmRpjqmryvZLt8+b2mrjQ==", + "files": [ + "lib/DNXCore50/System.Security.Principal.Windows.dll", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/dotnet/de/System.Security.Principal.Windows.xml", + "ref/dotnet/es/System.Security.Principal.Windows.xml", + "ref/dotnet/fr/System.Security.Principal.Windows.xml", + "ref/dotnet/it/System.Security.Principal.Windows.xml", + "ref/dotnet/ja/System.Security.Principal.Windows.xml", + "ref/dotnet/ko/System.Security.Principal.Windows.xml", + "ref/dotnet/ru/System.Security.Principal.Windows.xml", + "ref/dotnet/System.Security.Principal.Windows.dll", + "ref/dotnet/System.Security.Principal.Windows.xml", + "ref/dotnet/zh-hans/System.Security.Principal.Windows.xml", + "ref/dotnet/zh-hant/System.Security.Principal.Windows.xml", + "ref/net46/System.Security.Principal.Windows.dll", + "System.Security.Principal.Windows.4.0.0-beta-23109.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Principal.Windows.nuspec" + ] + }, + "System.Security.SecureString/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "ZRmBb18JXF2sfEop6zESpMH+yCPnr3lPfB3o7pyU4hnoMPIzwGJq8T9pIWG0y1x+fB1RtsaXUXPf3T1ACR2T5w==", + "files": [ + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/de/System.Security.SecureString.xml", + "ref/dotnet/es/System.Security.SecureString.xml", + "ref/dotnet/fr/System.Security.SecureString.xml", + "ref/dotnet/it/System.Security.SecureString.xml", + "ref/dotnet/ja/System.Security.SecureString.xml", + "ref/dotnet/ko/System.Security.SecureString.xml", + "ref/dotnet/ru/System.Security.SecureString.xml", + "ref/dotnet/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.xml", + "ref/dotnet/zh-hans/System.Security.SecureString.xml", + "ref/dotnet/zh-hant/System.Security.SecureString.xml", + "ref/net46/System.Security.SecureString.dll", + "System.Security.SecureString.4.0.0-beta-23109.nupkg", + "System.Security.SecureString.4.0.0-beta-23109.nupkg.sha512", + "System.Security.SecureString.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "sha512": "oymPt96KPPXO/Scxow+x8cKczVw0KXfExKTXQlwT+j3sS1j/JuV+rZq2sQ54fqOi2R4d9aFPESsoN830sA6VCw==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/de/System.Text.Encoding.xml", + "ref/dotnet/es/System.Text.Encoding.xml", + "ref/dotnet/fr/System.Text.Encoding.xml", + "ref/dotnet/it/System.Text.Encoding.xml", + "ref/dotnet/ja/System.Text.Encoding.xml", + "ref/dotnet/ko/System.Text.Encoding.xml", + "ref/dotnet/ru/System.Text.Encoding.xml", + "ref/dotnet/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "sha512": "F6GZqICZ654MsqVPCL8h+fvDZJmXnu1I1PYY9686yG+lbcZzs9aavqMUjv1Lu5wOdiTKnmn7LADZYzPD6y1p+w==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/de/System.Text.Encoding.Extensions.xml", + "ref/dotnet/es/System.Text.Encoding.Extensions.xml", + "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", + "ref/dotnet/it/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "F+tfzB34KhZnjS3ActdL57CQVD9oYGhAZm8AREL+KvbJTh1Y8/tlyCyI2xoH6KdJzIPcXC50yu4OkHNbpcutEw==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Text.RegularExpressions.xml", + "ref/dotnet/es/System.Text.RegularExpressions.xml", + "ref/dotnet/fr/System.Text.RegularExpressions.xml", + "ref/dotnet/it/System.Text.RegularExpressions.xml", + "ref/dotnet/ja/System.Text.RegularExpressions.xml", + "ref/dotnet/ko/System.Text.RegularExpressions.xml", + "ref/dotnet/ru/System.Text.RegularExpressions.xml", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/dotnet/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "TSViw+K20yh9DmwzZpvuCUc2m2ju1eVAJ10pTw2gB/aP4kkrX2nGf4A9BkwkxupPXFA2OtO9LbbEqdp4YbBnjQ==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/de/System.Threading.xml", + "ref/dotnet/es/System.Threading.xml", + "ref/dotnet/fr/System.Threading.xml", + "ref/dotnet/it/System.Threading.xml", + "ref/dotnet/ja/System.Threading.xml", + "ref/dotnet/ko/System.Threading.xml", + "ref/dotnet/ru/System.Threading.xml", + "ref/dotnet/System.Threading.dll", + "ref/dotnet/System.Threading.xml", + "ref/dotnet/zh-hans/System.Threading.xml", + "ref/dotnet/zh-hant/System.Threading.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23109.nupkg", + "System.Threading.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "IMVmv9x4lBiy+jz31dU7KT/aTDlKZabAEDFAxQOTv//v1RYu5XZXZLIiTZqyVUKxxHgB0PUnuSDl5VxUDKysfQ==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/de/System.Threading.Overlapped.xml", + "ref/dotnet/es/System.Threading.Overlapped.xml", + "ref/dotnet/fr/System.Threading.Overlapped.xml", + "ref/dotnet/it/System.Threading.Overlapped.xml", + "ref/dotnet/ja/System.Threading.Overlapped.xml", + "ref/dotnet/ko/System.Threading.Overlapped.xml", + "ref/dotnet/ru/System.Threading.Overlapped.xml", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "J7lBqLLy1A85KZUgFz0fS8u6BO+pnWun2OAkrNqcUQbgCiKDC9v92u9q6a6AB9znum+GCdzH3cyEftNtIVNd1Q==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/de/System.Threading.Tasks.xml", + "ref/dotnet/es/System.Threading.Tasks.xml", + "ref/dotnet/fr/System.Threading.Tasks.xml", + "ref/dotnet/it/System.Threading.Tasks.xml", + "ref/dotnet/ja/System.Threading.Tasks.xml", + "ref/dotnet/ko/System.Threading.Tasks.xml", + "ref/dotnet/ru/System.Threading.Tasks.xml", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.xml", + "ref/dotnet/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet/zh-hant/System.Threading.Tasks.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23109": { + "sha512": "pOob5Fz4cRJ/bfBs2+ehmS99VGCN5Ei2mf7bl17STagcDGHUZBAzVLz8Kamq0hwQGX2pCFkuUZH+2Ycdts2PSQ==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/de/System.Threading.Thread.xml", + "ref/dotnet/es/System.Threading.Thread.xml", + "ref/dotnet/fr/System.Threading.Thread.xml", + "ref/dotnet/it/System.Threading.Thread.xml", + "ref/dotnet/ja/System.Threading.Thread.xml", + "ref/dotnet/ko/System.Threading.Thread.xml", + "ref/dotnet/ru/System.Threading.Thread.xml", + "ref/dotnet/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.xml", + "ref/dotnet/zh-hans/System.Threading.Thread.xml", + "ref/dotnet/zh-hant/System.Threading.Thread.xml", + "ref/net46/System.Threading.Thread.dll", + "System.Threading.Thread.4.0.0-beta-23109.nupkg", + "System.Threading.Thread.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23109": { + "sha512": "+PySIYrGo5TYk6/+SUq84cnhaJ/12z1DgguacLOjixDn7e1qVo8g2zSk/APEZFqj3CEE5OvGmYPhWPXgRaAgyw==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/de/System.Threading.ThreadPool.xml", + "ref/dotnet/es/System.Threading.ThreadPool.xml", + "ref/dotnet/fr/System.Threading.ThreadPool.xml", + "ref/dotnet/it/System.Threading.ThreadPool.xml", + "ref/dotnet/ja/System.Threading.ThreadPool.xml", + "ref/dotnet/ko/System.Threading.ThreadPool.xml", + "ref/dotnet/ru/System.Threading.ThreadPool.xml", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.xml", + "ref/dotnet/zh-hans/System.Threading.ThreadPool.xml", + "ref/dotnet/zh-hant/System.Threading.ThreadPool.xml", + "ref/net46/System.Threading.ThreadPool.dll", + "System.Threading.ThreadPool.4.0.10-beta-23109.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [], + ".NETFramework,Version=v4.5": [ + "EntityFramework.Relational.Design >= 7.0.0-beta6" + ], + "DNX,Version=v4.5.1": [ + "EntityFramework.Relational.Design >= 7.0.0-beta6", + "Microsoft.AspNet.Hosting >= 1.0.0-beta6", + "Microsoft.Framework.CommandLineUtils.Sources >= 1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions >= 1.0.0-beta6", + "Microsoft.Framework.Runtime.Abstractions >= 1.0.0-beta6" + ], + "DNXCore,Version=v5.0": [ + "EntityFramework.Relational.Design >= 7.0.0-beta6", + "Microsoft.AspNet.Hosting >= 1.0.0-beta6", + "Microsoft.Framework.CommandLineUtils.Sources >= 1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions >= 1.0.0-beta6", + "Microsoft.Framework.Runtime.Abstractions >= 1.0.0-beta6" + ], + ".NETCore,Version=v5.0": [ + "EntityFramework.Relational >= 7.0.0-beta6" + ] + } +} \ No newline at end of file diff --git a/src/EntityFramework.Core/project.json b/src/EntityFramework.Core/project.json index ce4f41e6d69..cc131d6f866 100644 --- a/src/EntityFramework.Core/project.json +++ b/src/EntityFramework.Core/project.json @@ -1,88 +1,130 @@ { - "version": "7.0.0-*", - "description": "Entity Framework is Microsoft's recommended data access technology for new applications.", - "repository": { - "type": "git", - "url": "git://github.com/aspnet/entityframework" - }, - "compilationOptions": { - "warningsAsErrors": true - }, - "dependencies": { - "Ix-Async": "1.2.4", - "Microsoft.Framework.Caching.Abstractions": "1.0.0-*", - "Microsoft.Framework.Caching.Memory": "1.0.0-*", - "Microsoft.Framework.DependencyInjection": "1.0.0-*", - "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-*", - "Microsoft.Framework.Logging": "1.0.0-*", - "Microsoft.Framework.Logging.Abstractions": "1.0.0-*", - "Microsoft.Framework.OptionsModel": "1.0.0-*", - "Remotion.Linq": "2.0.0-alpha-004", - "System.Collections.Immutable": "1.1.37-*" - }, - "compile": "..\\Shared\\*.cs", - "namedResource": { - "EntityFramework.Core.Strings": "Properties/Strings.resx" - }, - "frameworks": { - "net45": { - "frameworkAssemblies": { - "System.Collections": { "version": "4.0.0.0", "type": "build" }, - "System.ComponentModel.DataAnnotations" : "4.0.0.0", - "System.Diagnostics.Debug": { "version": "4.0.0.0", "type": "build" }, - "System.Diagnostics.Tools": { "version": "4.0.0.0", "type": "build" }, - "System.Globalization": { "version": "4.0.0.0", "type": "build" }, - "System.Linq": { "version": "4.0.0.0", "type": "build" }, - "System.Linq.Expressions": { "version": "4.0.0.0", "type": "build" }, - "System.Linq.Queryable": { "version": "4.0.0.0", "type": "build" }, - "System.ObjectModel": { "version": "4.0.0.0", "type": "build" }, - "System.Reflection": { "version": "4.0.0.0", "type": "build" }, - "System.Reflection.Extensions": { "version": "4.0.0.0", "type": "build" }, - "System.Resources.ResourceManager": { "version": "4.0.0.0", "type": "build" }, - "System.Runtime": { "version": "4.0.0.0", "type": "build" }, - "System.Runtime.Extensions": { "version": "4.0.0.0", "type": "build" }, - "System.Threading": { "version": "4.0.0.0", "type": "build" } - } + "version": "7.0.0-beta6", + "description": "Entity Framework is Microsoft's recommended data access technology for new applications.", + "repository": { + "type": "git", + "url": "git://github.com/aspnet/entityframework" }, - "dnx451": { - "frameworkAssemblies": { - "System.Collections": "4.0.0.0", - "System.ComponentModel.DataAnnotations" : "4.0.0.0", - "System.Diagnostics.Debug": "4.0.0.0", - "System.Diagnostics.Tools": "4.0.0.0", - "System.Globalization": "4.0.0.0", - "System.Linq": "4.0.0.0", - "System.Linq.Expressions": "4.0.0.0", - "System.Linq.Queryable": "4.0.0.0", - "System.ObjectModel": "4.0.0.0", - "System.Reflection": "4.0.0.0", - "System.Reflection.Extensions": "4.0.0.0", - "System.Resources.ResourceManager": "4.0.0.0", - "System.Runtime": "4.0.0.0", - "System.Runtime.Extensions": "4.0.0.0", - "System.Threading": "4.0.0.0" - } + "compilationOptions": { + "warningsAsErrors": true }, - "dotnet": { - "dependencies": { - "System.Collections": "4.0.10-*", - "System.Collections.Concurrent": "4.0.10-*", - "System.ComponentModel": "4.0.0-*", - "System.ComponentModel.Annotations": "4.0.10-*", - "System.Diagnostics.Debug": "4.0.10-*", - "System.Diagnostics.Tools": "4.0.0-*", - "System.Linq": "4.0.0-*", - "System.Linq.Queryable": "4.0.0-*", - "System.ObjectModel": "4.0.10-*", - "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.Runtime.InteropServices": "4.0.20-*", - "System.Threading": "4.0.10-*", - "System.Threading.Tasks": "4.0.10-*" - } + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "compile": "..\\Shared\\*.cs", + "namedResource": { + "EntityFramework.Core.Strings": "Properties/Strings.resx" + }, + "frameworks": { + "net45": { + "frameworkAssemblies": { + "System.Collections": { + "version": "4.0.0.0", + "type": "build" + }, + "System.ComponentModel.DataAnnotations": "4.0.0.0", + "System.Diagnostics.Debug": { + "version": "4.0.0.0", + "type": "build" + }, + "System.Diagnostics.Tools": { + "version": "4.0.0.0", + "type": "build" + }, + "System.Globalization": { + "version": "4.0.0.0", + "type": "build" + }, + "System.Linq": { + "version": "4.0.0.0", + "type": "build" + }, + "System.Linq.Expressions": { + "version": "4.0.0.0", + "type": "build" + }, + "System.Linq.Queryable": { + "version": "4.0.0.0", + "type": "build" + }, + "System.ObjectModel": { + "version": "4.0.0.0", + "type": "build" + }, + "System.Reflection": { + "version": "4.0.0.0", + "type": "build" + }, + "System.Reflection.Extensions": { + "version": "4.0.0.0", + "type": "build" + }, + "System.Resources.ResourceManager": { + "version": "4.0.0.0", + "type": "build" + }, + "System.Runtime": { + "version": "4.0.0.0", + "type": "build" + }, + "System.Runtime.Extensions": { + "version": "4.0.0.0", + "type": "build" + }, + "System.Threading": { + "version": "4.0.0.0", + "type": "build" + } + } + }, + "dnx451": { + "frameworkAssemblies": { + "System.Collections": "4.0.0.0", + "System.ComponentModel.DataAnnotations": "4.0.0.0", + "System.Diagnostics.Debug": "4.0.0.0", + "System.Diagnostics.Tools": "4.0.0.0", + "System.Globalization": "4.0.0.0", + "System.Linq": "4.0.0.0", + "System.Linq.Expressions": "4.0.0.0", + "System.Linq.Queryable": "4.0.0.0", + "System.ObjectModel": "4.0.0.0", + "System.Reflection": "4.0.0.0", + "System.Reflection.Extensions": "4.0.0.0", + "System.Resources.ResourceManager": "4.0.0.0", + "System.Runtime": "4.0.0.0", + "System.Runtime.Extensions": "4.0.0.0", + "System.Threading": "4.0.0.0" + } + }, + "dotnet": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.ComponentModel.Annotations": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Queryable": "4.0.0-beta-23109", + "System.ObjectModel": "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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + } + } } - } -} +} \ No newline at end of file diff --git a/src/EntityFramework.Core/project.lock.json b/src/EntityFramework.Core/project.lock.json new file mode 100644 index 00000000000..c1057dce629 --- /dev/null +++ b/src/EntityFramework.Core/project.lock.json @@ -0,0 +1,2420 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.5": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + } + }, + "DNX,Version=v4.5.1": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.ComponentModel.DataAnnotations", + "System.Core", + "System.Diagnostics.Debug", + "System.Diagnostics.Tools", + "System.Globalization", + "System.Linq", + "System.Linq.Expressions", + "System.Linq.Queryable", + "System.ObjectModel", + "System.Reflection", + "System.Reflection.Extensions", + "System.Resources.ResourceManager", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading" + ], + "compile": { + "lib/dnx451/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dnx451/EntityFramework.Core.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + } + }, + ".NETPlatform,Version=v5.0": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Collections.Immutable": "1.1.37-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.ComponentModel.Annotations": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Queryable": "4.0.0-beta-23109", + "System.ObjectModel": "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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Core.dll": {} + } + }, + "Ix-Async/1.2.4": { + "compile": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Linq": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.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.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tracing": "4.0.20-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + } + }, + "System.IO/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "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.ObjectModel/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23109": { + "compile": { + "ref/dotnet/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + } + }, + "System.Text.Encoding/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "2/VX+2QEyyIpvGDzuIXX8V0vSl/Llt673DR48nNmeA6BoMuwL4Eu4F1Meh9fPp80nhcjifqVK8g7/UQDn/0PFw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23109.nupkg", + "System.Collections.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "fRXR5y4dg9zPovFpSQZkc6gnyMNlQJVQ8lKqPDPFSIelhqWxv2VyY87s5Vd9ViGwKrFwekDwCQFug9ny8qCHuA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Collections.Concurrent.xml", + "ref/dotnet/es/System.Collections.Concurrent.xml", + "ref/dotnet/fr/System.Collections.Concurrent.xml", + "ref/dotnet/it/System.Collections.Concurrent.xml", + "ref/dotnet/ja/System.Collections.Concurrent.xml", + "ref/dotnet/ko/System.Collections.Concurrent.xml", + "ref/dotnet/ru/System.Collections.Concurrent.xml", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/dotnet/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "JFzHUvX28tQbud0c9AP+SFeOroBG9x7tgc0OYu0Z5nQotnIiwP5nHXq9DoK3N2y0MoRUt8jy2FwkRMAYgiQuNQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.ComponentModel.xml", + "ref/dotnet/es/System.ComponentModel.xml", + "ref/dotnet/fr/System.ComponentModel.xml", + "ref/dotnet/it/System.ComponentModel.xml", + "ref/dotnet/ja/System.ComponentModel.xml", + "ref/dotnet/ko/System.ComponentModel.xml", + "ref/dotnet/ru/System.ComponentModel.xml", + "ref/dotnet/System.ComponentModel.dll", + "ref/dotnet/System.ComponentModel.xml", + "ref/dotnet/zh-hans/System.ComponentModel.xml", + "ref/dotnet/zh-hant/System.ComponentModel.xml", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.0-beta-23109.nupkg", + "System.ComponentModel.4.0.0-beta-23109.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "tfq+u00KcRXrvtYS4v7Bi4NgfFXt0sx5IgqqgeWCOFtwhDTVWgL3XJN/lanFtANnG7+zVU3+B5mvjH1pblGHxg==", + "files": [ + "lib/dotnet/System.ComponentModel.Annotations.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ComponentModel.Annotations.xml", + "ref/dotnet/es/System.ComponentModel.Annotations.xml", + "ref/dotnet/fr/System.ComponentModel.Annotations.xml", + "ref/dotnet/it/System.ComponentModel.Annotations.xml", + "ref/dotnet/ja/System.ComponentModel.Annotations.xml", + "ref/dotnet/ko/System.ComponentModel.Annotations.xml", + "ref/dotnet/ru/System.ComponentModel.Annotations.xml", + "ref/dotnet/System.ComponentModel.Annotations.dll", + "ref/dotnet/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", + "ref/net46/_._", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg.sha512", + "System.ComponentModel.Annotations.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "woJsNwCtAqYac5zp+6Wy40HAp7kYr8zhaFvHl3gECjQf+VGeGYaHgDV1ATVcyMG1h6XvmX0wtmD5Qds51CRJoA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6tFdP3p3SV6DZOagwW5ThfUF+zp5pUIyW4CY2K4B2RxV6HGVyY/8J2EuZGrcEP3wdO5fXnb9MmdOZa5Tn01Hmg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Diagnostics.Tools.xml", + "ref/dotnet/es/System.Diagnostics.Tools.xml", + "ref/dotnet/fr/System.Diagnostics.Tools.xml", + "ref/dotnet/it/System.Diagnostics.Tools.xml", + "ref/dotnet/ja/System.Diagnostics.Tools.xml", + "ref/dotnet/ko/System.Diagnostics.Tools.xml", + "ref/dotnet/ru/System.Diagnostics.Tools.xml", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/dotnet/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "sNauLSBFewFLjULHeplEr7FCmmfPbcc1jfz1Mynjy445bYiP/IW1q9X14a//oV/uQG7p82S9qHyfPxoxmt3pxQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/de/System.Diagnostics.Tracing.xml", + "ref/dotnet/es/System.Diagnostics.Tracing.xml", + "ref/dotnet/fr/System.Diagnostics.Tracing.xml", + "ref/dotnet/it/System.Diagnostics.Tracing.xml", + "ref/dotnet/ja/System.Diagnostics.Tracing.xml", + "ref/dotnet/ko/System.Diagnostics.Tracing.xml", + "ref/dotnet/ru/System.Diagnostics.Tracing.xml", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23109": { + "sha512": "l4QNrgLmC4KHGLcfriJ2EmsM2j18xefJzCnLU6YqVdBFaYzsJGwqmHyIr4nqw9DBjdWEtzdHLEbvpLeEay0ZWQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23109.nupkg", + "System.Globalization.4.0.10-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.IO/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "DVHSyfJO8mC9CpZFjjuaOWazALkWFnI6b/fqTQCjNe1dp2XasuvTRiV/qIOJB+uyDVex8sH8QMRUDS6ukimyLA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/de/System.IO.xml", + "ref/dotnet/es/System.IO.xml", + "ref/dotnet/fr/System.IO.xml", + "ref/dotnet/it/System.IO.xml", + "ref/dotnet/ja/System.IO.xml", + "ref/dotnet/ko/System.IO.xml", + "ref/dotnet/ru/System.IO.xml", + "ref/dotnet/System.IO.dll", + "ref/dotnet/System.IO.xml", + "ref/dotnet/zh-hans/System.IO.xml", + "ref/dotnet/zh-hant/System.IO.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23109.nupkg", + "System.IO.4.0.10-beta-23109.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "OusDe4B1/Q3BYY4QzNfztnyPPK9a1OGsQVZBg41C1bk8F2S3AOtXCx0GUwAfKbVxxS4dOdIgxWw1JN5m+IlpAA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/de/System.IO.FileSystem.xml", + "ref/dotnet/es/System.IO.FileSystem.xml", + "ref/dotnet/fr/System.IO.FileSystem.xml", + "ref/dotnet/it/System.IO.FileSystem.xml", + "ref/dotnet/ja/System.IO.FileSystem.xml", + "ref/dotnet/ko/System.IO.FileSystem.xml", + "ref/dotnet/ru/System.IO.FileSystem.xml", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.xml", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "1JFc6+hsLnlYgACgluhMi19zFkNruPgWoLDq30z7qMKgs3FZqShvXDZLTQ1Hk+cnenUoUU/8P8yRdmbdQaf4yg==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "cy+sQJW809QnFHIXt5Y/If45u362gwiNqHldnJS70l7VCjyR4Bo3UgZMZl+bowSupWxqXk69cwCQhRUyFu2hVw==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/de/System.Linq.Expressions.xml", + "ref/dotnet/es/System.Linq.Expressions.xml", + "ref/dotnet/fr/System.Linq.Expressions.xml", + "ref/dotnet/it/System.Linq.Expressions.xml", + "ref/dotnet/ja/System.Linq.Expressions.xml", + "ref/dotnet/ko/System.Linq.Expressions.xml", + "ref/dotnet/ru/System.Linq.Expressions.xml", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.xml", + "ref/dotnet/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet/zh-hant/System.Linq.Expressions.xml", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Mu6nIhw5k/zAMigeCh4aqma3kwXLoyPREVD6RxVPhGu2QJjAEeih0GWumoDjtdFp0B5Q6sYeakWDAds7NmzWQg==", + "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.ObjectModel/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "mnrhXE8nT5mX/ndEJ5BsdLCgN6CofKiwQvr9Olsp/s3crY5/lXYM73N2bNSvsFcHD1o0XhaCOn18Vekv6SYTpg==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ObjectModel.xml", + "ref/dotnet/es/System.ObjectModel.xml", + "ref/dotnet/fr/System.ObjectModel.xml", + "ref/dotnet/it/System.ObjectModel.xml", + "ref/dotnet/ja/System.ObjectModel.xml", + "ref/dotnet/ko/System.ObjectModel.xml", + "ref/dotnet/ru/System.ObjectModel.xml", + "ref/dotnet/System.ObjectModel.dll", + "ref/dotnet/System.ObjectModel.xml", + "ref/dotnet/zh-hans/System.ObjectModel.xml", + "ref/dotnet/zh-hant/System.ObjectModel.xml", + "ref/net46/_._", + "System.ObjectModel.4.0.10-beta-23109.nupkg", + "System.ObjectModel.4.0.10-beta-23109.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23109": { + "sha512": "aeXO8gjPb46LaP727cXDcCZ2mZoMxguq2UhE25wJoO1Je8Q8D2JFonNk85oVlgXCdEM6XgrtRnsnhvj8PmTBNg==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/de/System.Reflection.xml", + "ref/dotnet/es/System.Reflection.xml", + "ref/dotnet/fr/System.Reflection.xml", + "ref/dotnet/it/System.Reflection.xml", + "ref/dotnet/ja/System.Reflection.xml", + "ref/dotnet/ko/System.Reflection.xml", + "ref/dotnet/ru/System.Reflection.xml", + "ref/dotnet/System.Reflection.dll", + "ref/dotnet/System.Reflection.xml", + "ref/dotnet/zh-hans/System.Reflection.xml", + "ref/dotnet/zh-hant/System.Reflection.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23109.nupkg", + "System.Reflection.4.0.10-beta-23109.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "sXo3+qJ7TukCF/rDFYKjEog4iVb75dXJztu/lkvhMHgYnviPSbi9zg78FQUFhB6BOvntwnknrgNJhhtl3x9a7A==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Extensions.xml", + "ref/dotnet/es/System.Reflection.Extensions.xml", + "ref/dotnet/fr/System.Reflection.Extensions.xml", + "ref/dotnet/it/System.Reflection.Extensions.xml", + "ref/dotnet/ja/System.Reflection.Extensions.xml", + "ref/dotnet/ko/System.Reflection.Extensions.xml", + "ref/dotnet/ru/System.Reflection.Extensions.xml", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/dotnet/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "R5oBDNgUtSV9KTPCxwHWiTyryX/9mngnPbLWwFOEF5xcNd3Qlu6/3LiauGsIzGtXV8vOpRl9tfyIFy8t4ix4Gw==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Primitives.xml", + "ref/dotnet/es/System.Reflection.Primitives.xml", + "ref/dotnet/fr/System.Reflection.Primitives.xml", + "ref/dotnet/it/System.Reflection.Primitives.xml", + "ref/dotnet/ja/System.Reflection.Primitives.xml", + "ref/dotnet/ko/System.Reflection.Primitives.xml", + "ref/dotnet/ru/System.Reflection.Primitives.xml", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "lTuPMxeoT/Jqb1QtsIuSomLiJpQP3Y4DqqxLPncrMvLrejwdF25QSbhXdx5twgvBDqwSVL8wYtqiOqKe02u7FA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/de/System.Reflection.TypeExtensions.xml", + "ref/dotnet/es/System.Reflection.TypeExtensions.xml", + "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", + "ref/dotnet/it/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "6usAb6nZEPKugl3z5JR/RZrouH5/340n3tM0lhRfxVE/k3B3Sfh/sHSPiAOorrZgGm4cIDDhXTCGJQSWYphu3g==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/de/System.Runtime.xml", + "ref/dotnet/es/System.Runtime.xml", + "ref/dotnet/fr/System.Runtime.xml", + "ref/dotnet/it/System.Runtime.xml", + "ref/dotnet/ja/System.Runtime.xml", + "ref/dotnet/ko/System.Runtime.xml", + "ref/dotnet/ru/System.Runtime.xml", + "ref/dotnet/System.Runtime.dll", + "ref/dotnet/System.Runtime.xml", + "ref/dotnet/zh-hans/System.Runtime.xml", + "ref/dotnet/zh-hant/System.Runtime.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23109.nupkg", + "System.Runtime.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "JkRMtSY5YFGhP9eY7ZFIj40Ha5lGOwSxrk90k0ZAuIFn6qEPNe0NKu/C8laV7Cqy4Lv5IYzkVUGrfOqg3MOG9A==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/de/System.Runtime.Extensions.xml", + "ref/dotnet/es/System.Runtime.Extensions.xml", + "ref/dotnet/fr/System.Runtime.Extensions.xml", + "ref/dotnet/it/System.Runtime.Extensions.xml", + "ref/dotnet/ja/System.Runtime.Extensions.xml", + "ref/dotnet/ko/System.Runtime.Extensions.xml", + "ref/dotnet/ru/System.Runtime.Extensions.xml", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "XfjBv5hxBDVXvgPzBXiMpHprnmd5trdBAG4o7DEi/3GPXIlety4G0sfmlxeiTr7njKr0wF4ERdLIfzPesS5PAw==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "fxRLTR5kbqOZuSeT5ggVBYc6HIEGmEwh+Uw1ijp2qD3yMiMPmxvtI5aP5t0yZHEmwUrB37lGB+oaPpcXLH5Feg==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/de/System.Runtime.InteropServices.xml", + "ref/dotnet/es/System.Runtime.InteropServices.xml", + "ref/dotnet/fr/System.Runtime.InteropServices.xml", + "ref/dotnet/it/System.Runtime.InteropServices.xml", + "ref/dotnet/ja/System.Runtime.InteropServices.xml", + "ref/dotnet/ko/System.Runtime.InteropServices.xml", + "ref/dotnet/ru/System.Runtime.InteropServices.xml", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Text.Encoding/4.0.0-beta-23109": { + "sha512": "LlQ07793RcpK1Dgs8jV7YizVv0F78iFyE7t1t/EPQGCA+gxdbFDsmCmlZ/Bbr6KR7KwoFePi+YEQGDDcNmV+8g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Text.Encoding.xml", + "ref/dotnet/es/System.Text.Encoding.xml", + "ref/dotnet/fr/System.Text.Encoding.xml", + "ref/dotnet/it/System.Text.Encoding.xml", + "ref/dotnet/ja/System.Text.Encoding.xml", + "ref/dotnet/ko/System.Text.Encoding.xml", + "ref/dotnet/ru/System.Text.Encoding.xml", + "ref/dotnet/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Text.Encoding.4.0.0-beta-23109.nupkg", + "System.Text.Encoding.4.0.0-beta-23109.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "F+tfzB34KhZnjS3ActdL57CQVD9oYGhAZm8AREL+KvbJTh1Y8/tlyCyI2xoH6KdJzIPcXC50yu4OkHNbpcutEw==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Text.RegularExpressions.xml", + "ref/dotnet/es/System.Text.RegularExpressions.xml", + "ref/dotnet/fr/System.Text.RegularExpressions.xml", + "ref/dotnet/it/System.Text.RegularExpressions.xml", + "ref/dotnet/ja/System.Text.RegularExpressions.xml", + "ref/dotnet/ko/System.Text.RegularExpressions.xml", + "ref/dotnet/ru/System.Text.RegularExpressions.xml", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/dotnet/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "TSViw+K20yh9DmwzZpvuCUc2m2ju1eVAJ10pTw2gB/aP4kkrX2nGf4A9BkwkxupPXFA2OtO9LbbEqdp4YbBnjQ==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/de/System.Threading.xml", + "ref/dotnet/es/System.Threading.xml", + "ref/dotnet/fr/System.Threading.xml", + "ref/dotnet/it/System.Threading.xml", + "ref/dotnet/ja/System.Threading.xml", + "ref/dotnet/ko/System.Threading.xml", + "ref/dotnet/ru/System.Threading.xml", + "ref/dotnet/System.Threading.dll", + "ref/dotnet/System.Threading.xml", + "ref/dotnet/zh-hans/System.Threading.xml", + "ref/dotnet/zh-hant/System.Threading.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23109.nupkg", + "System.Threading.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "J7lBqLLy1A85KZUgFz0fS8u6BO+pnWun2OAkrNqcUQbgCiKDC9v92u9q6a6AB9znum+GCdzH3cyEftNtIVNd1Q==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/de/System.Threading.Tasks.xml", + "ref/dotnet/es/System.Threading.Tasks.xml", + "ref/dotnet/fr/System.Threading.Tasks.xml", + "ref/dotnet/it/System.Threading.Tasks.xml", + "ref/dotnet/ja/System.Threading.Tasks.xml", + "ref/dotnet/ko/System.Threading.Tasks.xml", + "ref/dotnet/ru/System.Threading.Tasks.xml", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.xml", + "ref/dotnet/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet/zh-hant/System.Threading.Tasks.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Ix-Async >= 1.2.4", + "Microsoft.Framework.Caching.Abstractions >= 1.0.0-beta6", + "Microsoft.Framework.Caching.Memory >= 1.0.0-beta6", + "Microsoft.Framework.DependencyInjection >= 1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions >= 1.0.0-beta6", + "Microsoft.Framework.Logging >= 1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions >= 1.0.0-beta6", + "Microsoft.Framework.OptionsModel >= 1.0.0-beta6", + "Remotion.Linq >= 2.0.0-alpha-004", + "System.Collections.Immutable >= 1.1.37-beta-23109" + ], + ".NETFramework,Version=v4.5": [ + "fx/System.Collections >= 4.0.0.0", + "fx/System.ComponentModel.DataAnnotations >= 4.0.0.0", + "fx/System.Diagnostics.Debug >= 4.0.0.0", + "fx/System.Diagnostics.Tools >= 4.0.0.0", + "fx/System.Globalization >= 4.0.0.0", + "fx/System.Linq >= 4.0.0.0", + "fx/System.Linq.Expressions >= 4.0.0.0", + "fx/System.Linq.Queryable >= 4.0.0.0", + "fx/System.ObjectModel >= 4.0.0.0", + "fx/System.Reflection >= 4.0.0.0", + "fx/System.Reflection.Extensions >= 4.0.0.0", + "fx/System.Resources.ResourceManager >= 4.0.0.0", + "fx/System.Runtime >= 4.0.0.0", + "fx/System.Runtime.Extensions >= 4.0.0.0", + "fx/System.Threading >= 4.0.0.0" + ], + "DNX,Version=v4.5.1": [ + "fx/System.Collections >= 4.0.0.0", + "fx/System.ComponentModel.DataAnnotations >= 4.0.0.0", + "fx/System.Diagnostics.Debug >= 4.0.0.0", + "fx/System.Diagnostics.Tools >= 4.0.0.0", + "fx/System.Globalization >= 4.0.0.0", + "fx/System.Linq >= 4.0.0.0", + "fx/System.Linq.Expressions >= 4.0.0.0", + "fx/System.Linq.Queryable >= 4.0.0.0", + "fx/System.ObjectModel >= 4.0.0.0", + "fx/System.Reflection >= 4.0.0.0", + "fx/System.Reflection.Extensions >= 4.0.0.0", + "fx/System.Resources.ResourceManager >= 4.0.0.0", + "fx/System.Runtime >= 4.0.0.0", + "fx/System.Runtime.Extensions >= 4.0.0.0", + "fx/System.Threading >= 4.0.0.0" + ], + ".NETPlatform,Version=v5.0": [ + "System.Collections >= 4.0.10-beta-23109", + "System.Collections.Concurrent >= 4.0.10-beta-23109", + "System.ComponentModel >= 4.0.0-beta-23109", + "System.ComponentModel.Annotations >= 4.0.10-beta-23109", + "System.Diagnostics.Debug >= 4.0.10-beta-23109", + "System.Diagnostics.Tools >= 4.0.0-beta-23109", + "System.Linq >= 4.0.0-beta-23109", + "System.Linq.Queryable >= 4.0.0-beta-23109", + "System.ObjectModel >= 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", + "System.Runtime.Extensions >= 4.0.10-beta-23109", + "System.Runtime.InteropServices >= 4.0.20-beta-23109", + "System.Threading >= 4.0.10-beta-23109", + "System.Threading.Tasks >= 4.0.10-beta-23109" + ] + } +} \ No newline at end of file diff --git a/src/EntityFramework.InMemory/project.json b/src/EntityFramework.InMemory/project.json index 0dafa065bb1..bbe4279374f 100644 --- a/src/EntityFramework.InMemory/project.json +++ b/src/EntityFramework.InMemory/project.json @@ -1,22 +1,22 @@ { - "version": "7.0.0-*", - "description": "In memory data store for Entity Framework (to be used for testing purposes).", - "repository": { - "type": "git", - "url": "git://github.com/aspnet/entityframework" - }, - "compilationOptions": { - "warningsAsErrors": true - }, - "dependencies": { - "EntityFramework.Core": "7.0.0-*" - }, - "compile": "..\\Shared\\*.cs", - "namedResource": { - "EntityFramework.InMemory.Strings": "Properties/Strings.resx" - }, - "frameworks": { - "net45": { }, - "dotnet": { } - } -} + "version": "7.0.0-beta6", + "description": "In memory data store for Entity Framework (to be used for testing purposes).", + "repository": { + "type": "git", + "url": "git://github.com/aspnet/entityframework" + }, + "compilationOptions": { + "warningsAsErrors": true + }, + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "compile": "..\\Shared\\*.cs", + "namedResource": { + "EntityFramework.InMemory.Strings": "Properties/Strings.resx" + }, + "frameworks": { + "net45": {}, + "dotnet": {} + } +} \ No newline at end of file diff --git a/src/EntityFramework.InMemory/project.lock.json b/src/EntityFramework.InMemory/project.lock.json new file mode 100644 index 00000000000..b411350004b --- /dev/null +++ b/src/EntityFramework.InMemory/project.lock.json @@ -0,0 +1,2093 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.5": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + } + }, + ".NETPlatform,Version=v5.0": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Collections.Immutable": "1.1.37-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.ComponentModel.Annotations": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Queryable": "4.0.0-beta-23109", + "System.ObjectModel": "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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "compile": { + "lib/dotnet/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.InMemory.dll": {} + } + }, + "Ix-Async/1.2.4": { + "compile": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Linq": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.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.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tracing": "4.0.20-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + } + }, + "System.IO/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "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.ObjectModel/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23109": { + "compile": { + "ref/dotnet/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + } + }, + "System.Text.Encoding/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "serviceable": true, + "sha512": "u4CXBQEmftJJD7U500i79xS2MwPyptOZLFqBAAwHVp7RuuAB0k2u9iFvdA2kgQZNhzkyooUTcS/+n4EPJalpaw==", + "files": [ + "EntityFramework.InMemory.7.0.0-beta6.nupkg", + "EntityFramework.InMemory.7.0.0-beta6.nupkg.sha512", + "EntityFramework.InMemory.nuspec", + "lib/dotnet/EntityFramework.InMemory.dll", + "lib/dotnet/EntityFramework.InMemory.xml", + "lib/net45/EntityFramework.InMemory.dll", + "lib/net45/EntityFramework.InMemory.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "2/VX+2QEyyIpvGDzuIXX8V0vSl/Llt673DR48nNmeA6BoMuwL4Eu4F1Meh9fPp80nhcjifqVK8g7/UQDn/0PFw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23109.nupkg", + "System.Collections.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "fRXR5y4dg9zPovFpSQZkc6gnyMNlQJVQ8lKqPDPFSIelhqWxv2VyY87s5Vd9ViGwKrFwekDwCQFug9ny8qCHuA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Collections.Concurrent.xml", + "ref/dotnet/es/System.Collections.Concurrent.xml", + "ref/dotnet/fr/System.Collections.Concurrent.xml", + "ref/dotnet/it/System.Collections.Concurrent.xml", + "ref/dotnet/ja/System.Collections.Concurrent.xml", + "ref/dotnet/ko/System.Collections.Concurrent.xml", + "ref/dotnet/ru/System.Collections.Concurrent.xml", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/dotnet/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "JFzHUvX28tQbud0c9AP+SFeOroBG9x7tgc0OYu0Z5nQotnIiwP5nHXq9DoK3N2y0MoRUt8jy2FwkRMAYgiQuNQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.ComponentModel.xml", + "ref/dotnet/es/System.ComponentModel.xml", + "ref/dotnet/fr/System.ComponentModel.xml", + "ref/dotnet/it/System.ComponentModel.xml", + "ref/dotnet/ja/System.ComponentModel.xml", + "ref/dotnet/ko/System.ComponentModel.xml", + "ref/dotnet/ru/System.ComponentModel.xml", + "ref/dotnet/System.ComponentModel.dll", + "ref/dotnet/System.ComponentModel.xml", + "ref/dotnet/zh-hans/System.ComponentModel.xml", + "ref/dotnet/zh-hant/System.ComponentModel.xml", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.0-beta-23109.nupkg", + "System.ComponentModel.4.0.0-beta-23109.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "tfq+u00KcRXrvtYS4v7Bi4NgfFXt0sx5IgqqgeWCOFtwhDTVWgL3XJN/lanFtANnG7+zVU3+B5mvjH1pblGHxg==", + "files": [ + "lib/dotnet/System.ComponentModel.Annotations.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ComponentModel.Annotations.xml", + "ref/dotnet/es/System.ComponentModel.Annotations.xml", + "ref/dotnet/fr/System.ComponentModel.Annotations.xml", + "ref/dotnet/it/System.ComponentModel.Annotations.xml", + "ref/dotnet/ja/System.ComponentModel.Annotations.xml", + "ref/dotnet/ko/System.ComponentModel.Annotations.xml", + "ref/dotnet/ru/System.ComponentModel.Annotations.xml", + "ref/dotnet/System.ComponentModel.Annotations.dll", + "ref/dotnet/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", + "ref/net46/_._", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg.sha512", + "System.ComponentModel.Annotations.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "woJsNwCtAqYac5zp+6Wy40HAp7kYr8zhaFvHl3gECjQf+VGeGYaHgDV1ATVcyMG1h6XvmX0wtmD5Qds51CRJoA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6tFdP3p3SV6DZOagwW5ThfUF+zp5pUIyW4CY2K4B2RxV6HGVyY/8J2EuZGrcEP3wdO5fXnb9MmdOZa5Tn01Hmg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Diagnostics.Tools.xml", + "ref/dotnet/es/System.Diagnostics.Tools.xml", + "ref/dotnet/fr/System.Diagnostics.Tools.xml", + "ref/dotnet/it/System.Diagnostics.Tools.xml", + "ref/dotnet/ja/System.Diagnostics.Tools.xml", + "ref/dotnet/ko/System.Diagnostics.Tools.xml", + "ref/dotnet/ru/System.Diagnostics.Tools.xml", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/dotnet/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "sNauLSBFewFLjULHeplEr7FCmmfPbcc1jfz1Mynjy445bYiP/IW1q9X14a//oV/uQG7p82S9qHyfPxoxmt3pxQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/de/System.Diagnostics.Tracing.xml", + "ref/dotnet/es/System.Diagnostics.Tracing.xml", + "ref/dotnet/fr/System.Diagnostics.Tracing.xml", + "ref/dotnet/it/System.Diagnostics.Tracing.xml", + "ref/dotnet/ja/System.Diagnostics.Tracing.xml", + "ref/dotnet/ko/System.Diagnostics.Tracing.xml", + "ref/dotnet/ru/System.Diagnostics.Tracing.xml", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23109": { + "sha512": "l4QNrgLmC4KHGLcfriJ2EmsM2j18xefJzCnLU6YqVdBFaYzsJGwqmHyIr4nqw9DBjdWEtzdHLEbvpLeEay0ZWQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23109.nupkg", + "System.Globalization.4.0.10-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.IO/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "DVHSyfJO8mC9CpZFjjuaOWazALkWFnI6b/fqTQCjNe1dp2XasuvTRiV/qIOJB+uyDVex8sH8QMRUDS6ukimyLA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/de/System.IO.xml", + "ref/dotnet/es/System.IO.xml", + "ref/dotnet/fr/System.IO.xml", + "ref/dotnet/it/System.IO.xml", + "ref/dotnet/ja/System.IO.xml", + "ref/dotnet/ko/System.IO.xml", + "ref/dotnet/ru/System.IO.xml", + "ref/dotnet/System.IO.dll", + "ref/dotnet/System.IO.xml", + "ref/dotnet/zh-hans/System.IO.xml", + "ref/dotnet/zh-hant/System.IO.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23109.nupkg", + "System.IO.4.0.10-beta-23109.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "OusDe4B1/Q3BYY4QzNfztnyPPK9a1OGsQVZBg41C1bk8F2S3AOtXCx0GUwAfKbVxxS4dOdIgxWw1JN5m+IlpAA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/de/System.IO.FileSystem.xml", + "ref/dotnet/es/System.IO.FileSystem.xml", + "ref/dotnet/fr/System.IO.FileSystem.xml", + "ref/dotnet/it/System.IO.FileSystem.xml", + "ref/dotnet/ja/System.IO.FileSystem.xml", + "ref/dotnet/ko/System.IO.FileSystem.xml", + "ref/dotnet/ru/System.IO.FileSystem.xml", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.xml", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "1JFc6+hsLnlYgACgluhMi19zFkNruPgWoLDq30z7qMKgs3FZqShvXDZLTQ1Hk+cnenUoUU/8P8yRdmbdQaf4yg==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "cy+sQJW809QnFHIXt5Y/If45u362gwiNqHldnJS70l7VCjyR4Bo3UgZMZl+bowSupWxqXk69cwCQhRUyFu2hVw==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/de/System.Linq.Expressions.xml", + "ref/dotnet/es/System.Linq.Expressions.xml", + "ref/dotnet/fr/System.Linq.Expressions.xml", + "ref/dotnet/it/System.Linq.Expressions.xml", + "ref/dotnet/ja/System.Linq.Expressions.xml", + "ref/dotnet/ko/System.Linq.Expressions.xml", + "ref/dotnet/ru/System.Linq.Expressions.xml", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.xml", + "ref/dotnet/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet/zh-hant/System.Linq.Expressions.xml", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Mu6nIhw5k/zAMigeCh4aqma3kwXLoyPREVD6RxVPhGu2QJjAEeih0GWumoDjtdFp0B5Q6sYeakWDAds7NmzWQg==", + "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.ObjectModel/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "mnrhXE8nT5mX/ndEJ5BsdLCgN6CofKiwQvr9Olsp/s3crY5/lXYM73N2bNSvsFcHD1o0XhaCOn18Vekv6SYTpg==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ObjectModel.xml", + "ref/dotnet/es/System.ObjectModel.xml", + "ref/dotnet/fr/System.ObjectModel.xml", + "ref/dotnet/it/System.ObjectModel.xml", + "ref/dotnet/ja/System.ObjectModel.xml", + "ref/dotnet/ko/System.ObjectModel.xml", + "ref/dotnet/ru/System.ObjectModel.xml", + "ref/dotnet/System.ObjectModel.dll", + "ref/dotnet/System.ObjectModel.xml", + "ref/dotnet/zh-hans/System.ObjectModel.xml", + "ref/dotnet/zh-hant/System.ObjectModel.xml", + "ref/net46/_._", + "System.ObjectModel.4.0.10-beta-23109.nupkg", + "System.ObjectModel.4.0.10-beta-23109.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23109": { + "sha512": "aeXO8gjPb46LaP727cXDcCZ2mZoMxguq2UhE25wJoO1Je8Q8D2JFonNk85oVlgXCdEM6XgrtRnsnhvj8PmTBNg==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/de/System.Reflection.xml", + "ref/dotnet/es/System.Reflection.xml", + "ref/dotnet/fr/System.Reflection.xml", + "ref/dotnet/it/System.Reflection.xml", + "ref/dotnet/ja/System.Reflection.xml", + "ref/dotnet/ko/System.Reflection.xml", + "ref/dotnet/ru/System.Reflection.xml", + "ref/dotnet/System.Reflection.dll", + "ref/dotnet/System.Reflection.xml", + "ref/dotnet/zh-hans/System.Reflection.xml", + "ref/dotnet/zh-hant/System.Reflection.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23109.nupkg", + "System.Reflection.4.0.10-beta-23109.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "sXo3+qJ7TukCF/rDFYKjEog4iVb75dXJztu/lkvhMHgYnviPSbi9zg78FQUFhB6BOvntwnknrgNJhhtl3x9a7A==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Extensions.xml", + "ref/dotnet/es/System.Reflection.Extensions.xml", + "ref/dotnet/fr/System.Reflection.Extensions.xml", + "ref/dotnet/it/System.Reflection.Extensions.xml", + "ref/dotnet/ja/System.Reflection.Extensions.xml", + "ref/dotnet/ko/System.Reflection.Extensions.xml", + "ref/dotnet/ru/System.Reflection.Extensions.xml", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/dotnet/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "R5oBDNgUtSV9KTPCxwHWiTyryX/9mngnPbLWwFOEF5xcNd3Qlu6/3LiauGsIzGtXV8vOpRl9tfyIFy8t4ix4Gw==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Primitives.xml", + "ref/dotnet/es/System.Reflection.Primitives.xml", + "ref/dotnet/fr/System.Reflection.Primitives.xml", + "ref/dotnet/it/System.Reflection.Primitives.xml", + "ref/dotnet/ja/System.Reflection.Primitives.xml", + "ref/dotnet/ko/System.Reflection.Primitives.xml", + "ref/dotnet/ru/System.Reflection.Primitives.xml", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "lTuPMxeoT/Jqb1QtsIuSomLiJpQP3Y4DqqxLPncrMvLrejwdF25QSbhXdx5twgvBDqwSVL8wYtqiOqKe02u7FA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/de/System.Reflection.TypeExtensions.xml", + "ref/dotnet/es/System.Reflection.TypeExtensions.xml", + "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", + "ref/dotnet/it/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "6usAb6nZEPKugl3z5JR/RZrouH5/340n3tM0lhRfxVE/k3B3Sfh/sHSPiAOorrZgGm4cIDDhXTCGJQSWYphu3g==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/de/System.Runtime.xml", + "ref/dotnet/es/System.Runtime.xml", + "ref/dotnet/fr/System.Runtime.xml", + "ref/dotnet/it/System.Runtime.xml", + "ref/dotnet/ja/System.Runtime.xml", + "ref/dotnet/ko/System.Runtime.xml", + "ref/dotnet/ru/System.Runtime.xml", + "ref/dotnet/System.Runtime.dll", + "ref/dotnet/System.Runtime.xml", + "ref/dotnet/zh-hans/System.Runtime.xml", + "ref/dotnet/zh-hant/System.Runtime.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23109.nupkg", + "System.Runtime.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "JkRMtSY5YFGhP9eY7ZFIj40Ha5lGOwSxrk90k0ZAuIFn6qEPNe0NKu/C8laV7Cqy4Lv5IYzkVUGrfOqg3MOG9A==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/de/System.Runtime.Extensions.xml", + "ref/dotnet/es/System.Runtime.Extensions.xml", + "ref/dotnet/fr/System.Runtime.Extensions.xml", + "ref/dotnet/it/System.Runtime.Extensions.xml", + "ref/dotnet/ja/System.Runtime.Extensions.xml", + "ref/dotnet/ko/System.Runtime.Extensions.xml", + "ref/dotnet/ru/System.Runtime.Extensions.xml", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "XfjBv5hxBDVXvgPzBXiMpHprnmd5trdBAG4o7DEi/3GPXIlety4G0sfmlxeiTr7njKr0wF4ERdLIfzPesS5PAw==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "fxRLTR5kbqOZuSeT5ggVBYc6HIEGmEwh+Uw1ijp2qD3yMiMPmxvtI5aP5t0yZHEmwUrB37lGB+oaPpcXLH5Feg==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/de/System.Runtime.InteropServices.xml", + "ref/dotnet/es/System.Runtime.InteropServices.xml", + "ref/dotnet/fr/System.Runtime.InteropServices.xml", + "ref/dotnet/it/System.Runtime.InteropServices.xml", + "ref/dotnet/ja/System.Runtime.InteropServices.xml", + "ref/dotnet/ko/System.Runtime.InteropServices.xml", + "ref/dotnet/ru/System.Runtime.InteropServices.xml", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Text.Encoding/4.0.0-beta-23109": { + "sha512": "LlQ07793RcpK1Dgs8jV7YizVv0F78iFyE7t1t/EPQGCA+gxdbFDsmCmlZ/Bbr6KR7KwoFePi+YEQGDDcNmV+8g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Text.Encoding.xml", + "ref/dotnet/es/System.Text.Encoding.xml", + "ref/dotnet/fr/System.Text.Encoding.xml", + "ref/dotnet/it/System.Text.Encoding.xml", + "ref/dotnet/ja/System.Text.Encoding.xml", + "ref/dotnet/ko/System.Text.Encoding.xml", + "ref/dotnet/ru/System.Text.Encoding.xml", + "ref/dotnet/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Text.Encoding.4.0.0-beta-23109.nupkg", + "System.Text.Encoding.4.0.0-beta-23109.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "F+tfzB34KhZnjS3ActdL57CQVD9oYGhAZm8AREL+KvbJTh1Y8/tlyCyI2xoH6KdJzIPcXC50yu4OkHNbpcutEw==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Text.RegularExpressions.xml", + "ref/dotnet/es/System.Text.RegularExpressions.xml", + "ref/dotnet/fr/System.Text.RegularExpressions.xml", + "ref/dotnet/it/System.Text.RegularExpressions.xml", + "ref/dotnet/ja/System.Text.RegularExpressions.xml", + "ref/dotnet/ko/System.Text.RegularExpressions.xml", + "ref/dotnet/ru/System.Text.RegularExpressions.xml", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/dotnet/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "TSViw+K20yh9DmwzZpvuCUc2m2ju1eVAJ10pTw2gB/aP4kkrX2nGf4A9BkwkxupPXFA2OtO9LbbEqdp4YbBnjQ==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/de/System.Threading.xml", + "ref/dotnet/es/System.Threading.xml", + "ref/dotnet/fr/System.Threading.xml", + "ref/dotnet/it/System.Threading.xml", + "ref/dotnet/ja/System.Threading.xml", + "ref/dotnet/ko/System.Threading.xml", + "ref/dotnet/ru/System.Threading.xml", + "ref/dotnet/System.Threading.dll", + "ref/dotnet/System.Threading.xml", + "ref/dotnet/zh-hans/System.Threading.xml", + "ref/dotnet/zh-hant/System.Threading.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23109.nupkg", + "System.Threading.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "J7lBqLLy1A85KZUgFz0fS8u6BO+pnWun2OAkrNqcUQbgCiKDC9v92u9q6a6AB9znum+GCdzH3cyEftNtIVNd1Q==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/de/System.Threading.Tasks.xml", + "ref/dotnet/es/System.Threading.Tasks.xml", + "ref/dotnet/fr/System.Threading.Tasks.xml", + "ref/dotnet/it/System.Threading.Tasks.xml", + "ref/dotnet/ja/System.Threading.Tasks.xml", + "ref/dotnet/ko/System.Threading.Tasks.xml", + "ref/dotnet/ru/System.Threading.Tasks.xml", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.xml", + "ref/dotnet/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet/zh-hant/System.Threading.Tasks.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "EntityFramework.Core >= 7.0.0-beta6" + ], + ".NETFramework,Version=v4.5": [], + ".NETPlatform,Version=v5.0": [] + } +} \ No newline at end of file diff --git a/src/EntityFramework.Relational.Design/project.json b/src/EntityFramework.Relational.Design/project.json index 154225dbab6..e8e21e79943 100644 --- a/src/EntityFramework.Relational.Design/project.json +++ b/src/EntityFramework.Relational.Design/project.json @@ -1,44 +1,53 @@ { - "version": "7.0.0-*", - "description": "Shared Design-time Entity Framework components for relational data stores.", - "repository": { - "type": "git", - "url": "git://github.com/aspnet/entityframework" - }, - "compilationOptions": { - "warningsAsErrors": true - }, - "dependencies": { - "Microsoft.AspNet.Razor": "4.0.0-*", - "Microsoft.CodeAnalysis.CSharp": "1.0.0-*", - "EntityFramework.Relational": "7.0.0-*" - }, - "compile": "..\\Shared\\*.cs", - "namedResource": { - "EntityFramework.Relational.Design.Strings": "Properties/Strings.resx" - }, - "frameworks": { - "net45": { - "frameworkAssemblies": { - "System.IO": { "version": "4.0.0.0", "type": "build" }, - "System.Text.Encoding": { "version": "4.0.0.0", "type": "build" }, - "System.Threading.Tasks": { "version": "4.0.0.0", "type": "build" } - } + "version": "7.0.0-beta6", + "description": "Shared Design-time Entity Framework components for relational data stores.", + "repository": { + "type": "git", + "url": "git://github.com/aspnet/entityframework" }, - "dnx451": { - "frameworkAssemblies": { - "System.IO": "4.0.0.0", - "System.Text.Encoding": "4.0.0.0", - "System.Threading.Tasks": "4.0.0.0" - }, - "dependencies": { - "Microsoft.Framework.Runtime.Roslyn": "1.0.0-*" - } + "compilationOptions": { + "warningsAsErrors": true }, - "dnxcore50": { - "dependencies": { - "Microsoft.Framework.Runtime.Roslyn": "1.0.0-*" - } + "dependencies": { + "Microsoft.AspNet.Razor": "4.0.0-beta6", + "Microsoft.CodeAnalysis.CSharp": "1.0.0-*", + "EntityFramework.Relational": "7.0.0-beta6" + }, + "compile": "..\\Shared\\*.cs", + "namedResource": { + "EntityFramework.Relational.Design.Strings": "Properties/Strings.resx" + }, + "frameworks": { + "net45": { + "frameworkAssemblies": { + "System.IO": { + "version": "4.0.0.0", + "type": "build" + }, + "System.Text.Encoding": { + "version": "4.0.0.0", + "type": "build" + }, + "System.Threading.Tasks": { + "version": "4.0.0.0", + "type": "build" + } + } + }, + "dnx451": { + "frameworkAssemblies": { + "System.IO": "4.0.0.0", + "System.Text.Encoding": "4.0.0.0", + "System.Threading.Tasks": "4.0.0.0" + }, + "dependencies": { + "Microsoft.Framework.Runtime.Roslyn": "1.0.0-beta6" + } + }, + "dnxcore50": { + "dependencies": { + "Microsoft.Framework.Runtime.Roslyn": "1.0.0-beta6" + } + } } - } -} +} \ No newline at end of file diff --git a/src/EntityFramework.Relational.Design/project.lock.json b/src/EntityFramework.Relational.Design/project.lock.json new file mode 100644 index 00000000000..508acbfcc01 --- /dev/null +++ b/src/EntityFramework.Relational.Design/project.lock.json @@ -0,0 +1,3469 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.5": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.AspNet.Razor.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.AspNet.Razor.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + } + }, + "DNX,Version=v4.5.1": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.ComponentModel.DataAnnotations", + "System.Core", + "System.Diagnostics.Debug", + "System.Diagnostics.Tools", + "System.Globalization", + "System.Linq", + "System.Linq.Expressions", + "System.Linq.Queryable", + "System.ObjectModel", + "System.Reflection", + "System.Reflection.Extensions", + "System.Resources.ResourceManager", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading" + ], + "compile": { + "lib/dnx451/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dnx451/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Razor.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Razor.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Roslyn.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.Text.Encoding", + "System.Threading.Tasks" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.0.0", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + } + }, + "DNXCore,Version=v5.0": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Collections.Immutable": "1.1.37-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.ComponentModel.Annotations": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Queryable": "4.0.0-beta-23109", + "System.ObjectModel": "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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6", + "Microsoft.CSharp": "4.0.0-beta-23109", + "System.Data.Common": "4.0.0-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Relational.dll": {} + } + }, + "Ix-Async/1.2.4": { + "compile": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + } + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109", + "System.Threading.Thread": "4.0.0-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Razor.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Razor.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": {}, + "Microsoft.CodeAnalysis.Common/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Dynamic.Runtime": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.10-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.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Linq": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.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.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Roslyn.Abstractions": "1.0.0-beta6", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.0.0", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tracing": "4.0.20-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.Data.Common/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Data.Common.dll": {} + }, + "runtime": { + "lib/dotnet/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.0-beta-23109": { + "dependencies": { + "System.Linq.Expressions": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.IO/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Overlapped": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit": "4.0.0-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "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.ObjectModel/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23109": { + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23109": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23109": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23109", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23109": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "EntityFramework.Relational/7.0.0-beta6": { + "serviceable": true, + "sha512": "2CVE3UZjzXDRFYyfVL0lePnK1t2ZyLexNE88SiuUhY4mPC5SOWmDZ7mhLvtXeVJL/7PBpEmDy0qSDZRBpJ/Kiw==", + "files": [ + "EntityFramework.Relational.7.0.0-beta6.nupkg", + "EntityFramework.Relational.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Relational.nuspec", + "lib/dotnet/EntityFramework.Relational.dll", + "lib/dotnet/EntityFramework.Relational.xml", + "lib/net45/EntityFramework.Relational.dll", + "lib/net45/EntityFramework.Relational.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "serviceable": true, + "sha512": "GkdomN9ySGxL9FqgD8pdxxljGWvIFOyRPKzbLe+XseKDfpP9YNzkX2+oD2TLcwCl/O7bJcX2F7k0Zlf96fMpfw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Razor.dll", + "lib/dnx451/Microsoft.AspNet.Razor.xml", + "lib/dnxcore50/Microsoft.AspNet.Razor.dll", + "lib/dnxcore50/Microsoft.AspNet.Razor.xml", + "lib/net45/Microsoft.AspNet.Razor.dll", + "lib/net45/Microsoft.AspNet.Razor.xml", + "Microsoft.AspNet.Razor.4.0.0-beta6.nupkg", + "Microsoft.AspNet.Razor.4.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Razor.nuspec", + "repo.json" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "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.0.0": { + "sha512": "MhxsY8N9veim57uXqcRCJb7X9xZoWhMDU4/EyIqNkS7qfRsLxrzELSpjp6NjFkISZElvwIV2Ehi3UxyJui/gPw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "sha512": "KZ70r7EF+Dn8qp2p1CiBJGVoIG6el7Q9cLhnXuq+3oLcnMvUk2XzimB36AgO/Qg/liqRzf992WmFWhwqZSaIEg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "MO4Lu8aMS1vL4Omp/gIMl2hr4sdV1l99p6xhAExGnS3MlFEa5JYPDL5mpdeg/osDH+1gAhb11xMJTYP7Ya3cAA==", + "files": [ + "lib/dotnet/Microsoft.CSharp.dll", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg.sha512", + "Microsoft.CSharp.nuspec", + "ref/dotnet/de/Microsoft.CSharp.xml", + "ref/dotnet/es/Microsoft.CSharp.xml", + "ref/dotnet/fr/Microsoft.CSharp.xml", + "ref/dotnet/it/Microsoft.CSharp.xml", + "ref/dotnet/ja/Microsoft.CSharp.xml", + "ref/dotnet/ko/Microsoft.CSharp.xml", + "ref/dotnet/Microsoft.CSharp.dll", + "ref/dotnet/Microsoft.CSharp.xml", + "ref/dotnet/ru/Microsoft.CSharp.xml", + "ref/dotnet/zh-hans/Microsoft.CSharp.xml", + "ref/dotnet/zh-hant/Microsoft.CSharp.xml", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "w4Cwg6jgPd3XFGOgBGU3GVGVAwUcMglSDTlI23M8uI7yhDRSDbxZ2HPbjTEBMoj+IYdkfunZWFdA67tdk8L8Tg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta6": { + "sha512": "+y/7JAz5lC3cmxeNe88Bi80jw6gA2f092y7vk8J6GXOWcUV+I3QoBl0p2Hne5T2YDfZALtzuyVGqsXIaM1X93A==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Roslyn/1.0.0-beta6": { + "serviceable": true, + "sha512": "P15pRq5zhTX6VB3yKJATfHf9/QpLSJZRnof81fj0BlEx0sTZdYVojbd1FSLKaG8aKb0B82TZrwk49UqIsKvSMA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.xml", + "Microsoft.Framework.Runtime.Roslyn.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Roslyn.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Roslyn.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Roslyn.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "gEHCvzynTJl20HUNR0Ag2K5i07oQUk+XIakcagbS6dsz7SQO2YFPmCoxUAp4puqjfsb4XZ8koZHQfLsEDGJd2A==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.xml", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.nuspec" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "2/VX+2QEyyIpvGDzuIXX8V0vSl/Llt673DR48nNmeA6BoMuwL4Eu4F1Meh9fPp80nhcjifqVK8g7/UQDn/0PFw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23109.nupkg", + "System.Collections.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "fRXR5y4dg9zPovFpSQZkc6gnyMNlQJVQ8lKqPDPFSIelhqWxv2VyY87s5Vd9ViGwKrFwekDwCQFug9ny8qCHuA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Collections.Concurrent.xml", + "ref/dotnet/es/System.Collections.Concurrent.xml", + "ref/dotnet/fr/System.Collections.Concurrent.xml", + "ref/dotnet/it/System.Collections.Concurrent.xml", + "ref/dotnet/ja/System.Collections.Concurrent.xml", + "ref/dotnet/ko/System.Collections.Concurrent.xml", + "ref/dotnet/ru/System.Collections.Concurrent.xml", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/dotnet/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Z+VGG3YaL4PxuBn/Nbjul1OoaCBzvkylexTwIW6s8arj3c17XkCeJvZ1BIn66lzDpAQYMGZmv97UMT6OboRoVg==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/de/System.Collections.NonGeneric.xml", + "ref/dotnet/es/System.Collections.NonGeneric.xml", + "ref/dotnet/fr/System.Collections.NonGeneric.xml", + "ref/dotnet/it/System.Collections.NonGeneric.xml", + "ref/dotnet/ja/System.Collections.NonGeneric.xml", + "ref/dotnet/ko/System.Collections.NonGeneric.xml", + "ref/dotnet/ru/System.Collections.NonGeneric.xml", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", + "ref/net46/System.Collections.NonGeneric.dll", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "JFzHUvX28tQbud0c9AP+SFeOroBG9x7tgc0OYu0Z5nQotnIiwP5nHXq9DoK3N2y0MoRUt8jy2FwkRMAYgiQuNQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.ComponentModel.xml", + "ref/dotnet/es/System.ComponentModel.xml", + "ref/dotnet/fr/System.ComponentModel.xml", + "ref/dotnet/it/System.ComponentModel.xml", + "ref/dotnet/ja/System.ComponentModel.xml", + "ref/dotnet/ko/System.ComponentModel.xml", + "ref/dotnet/ru/System.ComponentModel.xml", + "ref/dotnet/System.ComponentModel.dll", + "ref/dotnet/System.ComponentModel.xml", + "ref/dotnet/zh-hans/System.ComponentModel.xml", + "ref/dotnet/zh-hant/System.ComponentModel.xml", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.0-beta-23109.nupkg", + "System.ComponentModel.4.0.0-beta-23109.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "tfq+u00KcRXrvtYS4v7Bi4NgfFXt0sx5IgqqgeWCOFtwhDTVWgL3XJN/lanFtANnG7+zVU3+B5mvjH1pblGHxg==", + "files": [ + "lib/dotnet/System.ComponentModel.Annotations.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ComponentModel.Annotations.xml", + "ref/dotnet/es/System.ComponentModel.Annotations.xml", + "ref/dotnet/fr/System.ComponentModel.Annotations.xml", + "ref/dotnet/it/System.ComponentModel.Annotations.xml", + "ref/dotnet/ja/System.ComponentModel.Annotations.xml", + "ref/dotnet/ko/System.ComponentModel.Annotations.xml", + "ref/dotnet/ru/System.ComponentModel.Annotations.xml", + "ref/dotnet/System.ComponentModel.Annotations.dll", + "ref/dotnet/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", + "ref/net46/_._", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg.sha512", + "System.ComponentModel.Annotations.nuspec" + ] + }, + "System.Data.Common/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "oWJT16F9TqEP1dQDNZUSuJ1gH17YyR8wTD+zfz03oflnAUWlyH2QM/px/X10GPZAn9Qz58EYR/maNzJIX9FSOA==", + "files": [ + "lib/dotnet/System.Data.Common.dll", + "lib/net46/System.Data.Common.dll", + "ref/dotnet/de/System.Data.Common.xml", + "ref/dotnet/es/System.Data.Common.xml", + "ref/dotnet/fr/System.Data.Common.xml", + "ref/dotnet/it/System.Data.Common.xml", + "ref/dotnet/ja/System.Data.Common.xml", + "ref/dotnet/ko/System.Data.Common.xml", + "ref/dotnet/ru/System.Data.Common.xml", + "ref/dotnet/System.Data.Common.dll", + "ref/dotnet/System.Data.Common.xml", + "ref/dotnet/zh-hans/System.Data.Common.xml", + "ref/dotnet/zh-hant/System.Data.Common.xml", + "ref/net46/System.Data.Common.dll", + "System.Data.Common.4.0.0-beta-23109.nupkg", + "System.Data.Common.4.0.0-beta-23109.nupkg.sha512", + "System.Data.Common.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "woJsNwCtAqYac5zp+6Wy40HAp7kYr8zhaFvHl3gECjQf+VGeGYaHgDV1ATVcyMG1h6XvmX0wtmD5Qds51CRJoA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6tFdP3p3SV6DZOagwW5ThfUF+zp5pUIyW4CY2K4B2RxV6HGVyY/8J2EuZGrcEP3wdO5fXnb9MmdOZa5Tn01Hmg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Diagnostics.Tools.xml", + "ref/dotnet/es/System.Diagnostics.Tools.xml", + "ref/dotnet/fr/System.Diagnostics.Tools.xml", + "ref/dotnet/it/System.Diagnostics.Tools.xml", + "ref/dotnet/ja/System.Diagnostics.Tools.xml", + "ref/dotnet/ko/System.Diagnostics.Tools.xml", + "ref/dotnet/ru/System.Diagnostics.Tools.xml", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/dotnet/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "sNauLSBFewFLjULHeplEr7FCmmfPbcc1jfz1Mynjy445bYiP/IW1q9X14a//oV/uQG7p82S9qHyfPxoxmt3pxQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/de/System.Diagnostics.Tracing.xml", + "ref/dotnet/es/System.Diagnostics.Tracing.xml", + "ref/dotnet/fr/System.Diagnostics.Tracing.xml", + "ref/dotnet/it/System.Diagnostics.Tracing.xml", + "ref/dotnet/ja/System.Diagnostics.Tracing.xml", + "ref/dotnet/ko/System.Diagnostics.Tracing.xml", + "ref/dotnet/ru/System.Diagnostics.Tracing.xml", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.0-beta-23109": { + "sha512": "nH2j/mWRcUME1Tz9tFXhf6zWGRVW5a5M+2bMG5GvudHv0SrbwfPGQBqwYCm5n1uQu68K1C59evXEq8BoMdXlcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Dynamic.Runtime.xml", + "ref/dotnet/es/System.Dynamic.Runtime.xml", + "ref/dotnet/fr/System.Dynamic.Runtime.xml", + "ref/dotnet/it/System.Dynamic.Runtime.xml", + "ref/dotnet/ja/System.Dynamic.Runtime.xml", + "ref/dotnet/ko/System.Dynamic.Runtime.xml", + "ref/dotnet/ru/System.Dynamic.Runtime.xml", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.xml", + "ref/dotnet/zh-hans/System.Dynamic.Runtime.xml", + "ref/dotnet/zh-hant/System.Dynamic.Runtime.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Dynamic.Runtime.4.0.0-beta-23109.nupkg", + "System.Dynamic.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23109": { + "sha512": "l4QNrgLmC4KHGLcfriJ2EmsM2j18xefJzCnLU6YqVdBFaYzsJGwqmHyIr4nqw9DBjdWEtzdHLEbvpLeEay0ZWQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23109.nupkg", + "System.Globalization.4.0.10-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.IO/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "DVHSyfJO8mC9CpZFjjuaOWazALkWFnI6b/fqTQCjNe1dp2XasuvTRiV/qIOJB+uyDVex8sH8QMRUDS6ukimyLA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/de/System.IO.xml", + "ref/dotnet/es/System.IO.xml", + "ref/dotnet/fr/System.IO.xml", + "ref/dotnet/it/System.IO.xml", + "ref/dotnet/ja/System.IO.xml", + "ref/dotnet/ko/System.IO.xml", + "ref/dotnet/ru/System.IO.xml", + "ref/dotnet/System.IO.dll", + "ref/dotnet/System.IO.xml", + "ref/dotnet/zh-hans/System.IO.xml", + "ref/dotnet/zh-hant/System.IO.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23109.nupkg", + "System.IO.4.0.10-beta-23109.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "OusDe4B1/Q3BYY4QzNfztnyPPK9a1OGsQVZBg41C1bk8F2S3AOtXCx0GUwAfKbVxxS4dOdIgxWw1JN5m+IlpAA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/de/System.IO.FileSystem.xml", + "ref/dotnet/es/System.IO.FileSystem.xml", + "ref/dotnet/fr/System.IO.FileSystem.xml", + "ref/dotnet/it/System.IO.FileSystem.xml", + "ref/dotnet/ja/System.IO.FileSystem.xml", + "ref/dotnet/ko/System.IO.FileSystem.xml", + "ref/dotnet/ru/System.IO.FileSystem.xml", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.xml", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "1JFc6+hsLnlYgACgluhMi19zFkNruPgWoLDq30z7qMKgs3FZqShvXDZLTQ1Hk+cnenUoUU/8P8yRdmbdQaf4yg==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "cy+sQJW809QnFHIXt5Y/If45u362gwiNqHldnJS70l7VCjyR4Bo3UgZMZl+bowSupWxqXk69cwCQhRUyFu2hVw==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/de/System.Linq.Expressions.xml", + "ref/dotnet/es/System.Linq.Expressions.xml", + "ref/dotnet/fr/System.Linq.Expressions.xml", + "ref/dotnet/it/System.Linq.Expressions.xml", + "ref/dotnet/ja/System.Linq.Expressions.xml", + "ref/dotnet/ko/System.Linq.Expressions.xml", + "ref/dotnet/ru/System.Linq.Expressions.xml", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.xml", + "ref/dotnet/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet/zh-hant/System.Linq.Expressions.xml", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Mu6nIhw5k/zAMigeCh4aqma3kwXLoyPREVD6RxVPhGu2QJjAEeih0GWumoDjtdFp0B5Q6sYeakWDAds7NmzWQg==", + "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.ObjectModel/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "mnrhXE8nT5mX/ndEJ5BsdLCgN6CofKiwQvr9Olsp/s3crY5/lXYM73N2bNSvsFcHD1o0XhaCOn18Vekv6SYTpg==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ObjectModel.xml", + "ref/dotnet/es/System.ObjectModel.xml", + "ref/dotnet/fr/System.ObjectModel.xml", + "ref/dotnet/it/System.ObjectModel.xml", + "ref/dotnet/ja/System.ObjectModel.xml", + "ref/dotnet/ko/System.ObjectModel.xml", + "ref/dotnet/ru/System.ObjectModel.xml", + "ref/dotnet/System.ObjectModel.dll", + "ref/dotnet/System.ObjectModel.xml", + "ref/dotnet/zh-hans/System.ObjectModel.xml", + "ref/dotnet/zh-hant/System.ObjectModel.xml", + "ref/net46/_._", + "System.ObjectModel.4.0.10-beta-23109.nupkg", + "System.ObjectModel.4.0.10-beta-23109.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "y6M7TxwDXBD2in5cCf+KzucZyx7YE7SJMcU24atzYnpwP2xFASUYCeI6NRg5bYcw2Do5HKBz+XdE9WiZrwpnFg==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23109.nupkg", + "System.Private.Uri.4.0.0-beta-23109.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23109": { + "sha512": "aeXO8gjPb46LaP727cXDcCZ2mZoMxguq2UhE25wJoO1Je8Q8D2JFonNk85oVlgXCdEM6XgrtRnsnhvj8PmTBNg==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/de/System.Reflection.xml", + "ref/dotnet/es/System.Reflection.xml", + "ref/dotnet/fr/System.Reflection.xml", + "ref/dotnet/it/System.Reflection.xml", + "ref/dotnet/ja/System.Reflection.xml", + "ref/dotnet/ko/System.Reflection.xml", + "ref/dotnet/ru/System.Reflection.xml", + "ref/dotnet/System.Reflection.dll", + "ref/dotnet/System.Reflection.xml", + "ref/dotnet/zh-hans/System.Reflection.xml", + "ref/dotnet/zh-hant/System.Reflection.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23109.nupkg", + "System.Reflection.4.0.10-beta-23109.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "sha512": "H8QtiSXFHNiQIPZe3PdNJPIjuH9O/A8+/52bw2RIKgV8rMrshmi2LufTvYCb+V5YPBFYWg2Yt8nRISEY4+uV5Q==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/de/System.Reflection.Emit.xml", + "ref/dotnet/es/System.Reflection.Emit.xml", + "ref/dotnet/fr/System.Reflection.Emit.xml", + "ref/dotnet/it/System.Reflection.Emit.xml", + "ref/dotnet/ja/System.Reflection.Emit.xml", + "ref/dotnet/ko/System.Reflection.Emit.xml", + "ref/dotnet/ru/System.Reflection.Emit.xml", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.xml", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "sha512": "tJO27blFXyvYwDLbK7GvgFC94XjeY6MnRitBI4w8LHfEc/gVdRmCC8gzkE8KEmkecnIWIt9VTSJ3p4lGgafKKA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/wp80/_._", + "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/net45/_._", + "ref/wp80/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "sXo3+qJ7TukCF/rDFYKjEog4iVb75dXJztu/lkvhMHgYnviPSbi9zg78FQUFhB6BOvntwnknrgNJhhtl3x9a7A==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Extensions.xml", + "ref/dotnet/es/System.Reflection.Extensions.xml", + "ref/dotnet/fr/System.Reflection.Extensions.xml", + "ref/dotnet/it/System.Reflection.Extensions.xml", + "ref/dotnet/ja/System.Reflection.Extensions.xml", + "ref/dotnet/ko/System.Reflection.Extensions.xml", + "ref/dotnet/ru/System.Reflection.Extensions.xml", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/dotnet/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "R5oBDNgUtSV9KTPCxwHWiTyryX/9mngnPbLWwFOEF5xcNd3Qlu6/3LiauGsIzGtXV8vOpRl9tfyIFy8t4ix4Gw==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Primitives.xml", + "ref/dotnet/es/System.Reflection.Primitives.xml", + "ref/dotnet/fr/System.Reflection.Primitives.xml", + "ref/dotnet/it/System.Reflection.Primitives.xml", + "ref/dotnet/ja/System.Reflection.Primitives.xml", + "ref/dotnet/ko/System.Reflection.Primitives.xml", + "ref/dotnet/ru/System.Reflection.Primitives.xml", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "lTuPMxeoT/Jqb1QtsIuSomLiJpQP3Y4DqqxLPncrMvLrejwdF25QSbhXdx5twgvBDqwSVL8wYtqiOqKe02u7FA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/de/System.Reflection.TypeExtensions.xml", + "ref/dotnet/es/System.Reflection.TypeExtensions.xml", + "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", + "ref/dotnet/it/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "6usAb6nZEPKugl3z5JR/RZrouH5/340n3tM0lhRfxVE/k3B3Sfh/sHSPiAOorrZgGm4cIDDhXTCGJQSWYphu3g==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/de/System.Runtime.xml", + "ref/dotnet/es/System.Runtime.xml", + "ref/dotnet/fr/System.Runtime.xml", + "ref/dotnet/it/System.Runtime.xml", + "ref/dotnet/ja/System.Runtime.xml", + "ref/dotnet/ko/System.Runtime.xml", + "ref/dotnet/ru/System.Runtime.xml", + "ref/dotnet/System.Runtime.dll", + "ref/dotnet/System.Runtime.xml", + "ref/dotnet/zh-hans/System.Runtime.xml", + "ref/dotnet/zh-hant/System.Runtime.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23109.nupkg", + "System.Runtime.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "JkRMtSY5YFGhP9eY7ZFIj40Ha5lGOwSxrk90k0ZAuIFn6qEPNe0NKu/C8laV7Cqy4Lv5IYzkVUGrfOqg3MOG9A==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/de/System.Runtime.Extensions.xml", + "ref/dotnet/es/System.Runtime.Extensions.xml", + "ref/dotnet/fr/System.Runtime.Extensions.xml", + "ref/dotnet/it/System.Runtime.Extensions.xml", + "ref/dotnet/ja/System.Runtime.Extensions.xml", + "ref/dotnet/ko/System.Runtime.Extensions.xml", + "ref/dotnet/ru/System.Runtime.Extensions.xml", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "XfjBv5hxBDVXvgPzBXiMpHprnmd5trdBAG4o7DEi/3GPXIlety4G0sfmlxeiTr7njKr0wF4ERdLIfzPesS5PAw==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "fxRLTR5kbqOZuSeT5ggVBYc6HIEGmEwh+Uw1ijp2qD3yMiMPmxvtI5aP5t0yZHEmwUrB37lGB+oaPpcXLH5Feg==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/de/System.Runtime.InteropServices.xml", + "ref/dotnet/es/System.Runtime.InteropServices.xml", + "ref/dotnet/fr/System.Runtime.InteropServices.xml", + "ref/dotnet/it/System.Runtime.InteropServices.xml", + "ref/dotnet/ja/System.Runtime.InteropServices.xml", + "ref/dotnet/ko/System.Runtime.InteropServices.xml", + "ref/dotnet/ru/System.Runtime.InteropServices.xml", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Lewf25aZTItYvFz8RtCFdNAniNQ737gkTPU9IObuzbOeX8MMGHRf9Le4AQ2SdkTTTljjhebGybF5KCKZ784DLA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/de/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/es/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/fr/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/it/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/ja/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/ko/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/ru/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Encryption.xml", + "ref/net46/System.Security.Cryptography.Encryption.dll", + "System.Security.Cryptography.Encryption.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "cFQ8ewUVBb/bv2EbH64xNjmyLo1OmWGsrj4dbHDrdm+Huu2yGvsF/sdPTtHacX7cAi5iyJIv7tT3h149rQHlhg==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/de/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/es/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/fr/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/it/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/ja/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/ko/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/ru/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Hashing.xml", + "ref/net46/System.Security.Cryptography.Hashing.dll", + "System.Security.Cryptography.Hashing.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "nwFw1zaKhA82wYjIrAQdB67ap7SnH4OThYrEG6TYgX4UJyMIxG24pegcs8aaWupAUozmLXpDVOmtAkV6oL1LBQ==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/de/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/es/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/fr/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/it/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/ja/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/ko/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/ru/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "eBEb851icqj4elt5iPbiO6cnLflOWr0tRRHEq/ekxr1P2zNkI2TntVWC+lu5MOYgRj92XRNt2H+pCootjKruMw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/de/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/es/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/fr/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/it/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/ja/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/ko/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/ru/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "sha512": "oymPt96KPPXO/Scxow+x8cKczVw0KXfExKTXQlwT+j3sS1j/JuV+rZq2sQ54fqOi2R4d9aFPESsoN830sA6VCw==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/de/System.Text.Encoding.xml", + "ref/dotnet/es/System.Text.Encoding.xml", + "ref/dotnet/fr/System.Text.Encoding.xml", + "ref/dotnet/it/System.Text.Encoding.xml", + "ref/dotnet/ja/System.Text.Encoding.xml", + "ref/dotnet/ko/System.Text.Encoding.xml", + "ref/dotnet/ru/System.Text.Encoding.xml", + "ref/dotnet/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "sha512": "F6GZqICZ654MsqVPCL8h+fvDZJmXnu1I1PYY9686yG+lbcZzs9aavqMUjv1Lu5wOdiTKnmn7LADZYzPD6y1p+w==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/de/System.Text.Encoding.Extensions.xml", + "ref/dotnet/es/System.Text.Encoding.Extensions.xml", + "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", + "ref/dotnet/it/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "F+tfzB34KhZnjS3ActdL57CQVD9oYGhAZm8AREL+KvbJTh1Y8/tlyCyI2xoH6KdJzIPcXC50yu4OkHNbpcutEw==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Text.RegularExpressions.xml", + "ref/dotnet/es/System.Text.RegularExpressions.xml", + "ref/dotnet/fr/System.Text.RegularExpressions.xml", + "ref/dotnet/it/System.Text.RegularExpressions.xml", + "ref/dotnet/ja/System.Text.RegularExpressions.xml", + "ref/dotnet/ko/System.Text.RegularExpressions.xml", + "ref/dotnet/ru/System.Text.RegularExpressions.xml", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/dotnet/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "TSViw+K20yh9DmwzZpvuCUc2m2ju1eVAJ10pTw2gB/aP4kkrX2nGf4A9BkwkxupPXFA2OtO9LbbEqdp4YbBnjQ==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/de/System.Threading.xml", + "ref/dotnet/es/System.Threading.xml", + "ref/dotnet/fr/System.Threading.xml", + "ref/dotnet/it/System.Threading.xml", + "ref/dotnet/ja/System.Threading.xml", + "ref/dotnet/ko/System.Threading.xml", + "ref/dotnet/ru/System.Threading.xml", + "ref/dotnet/System.Threading.dll", + "ref/dotnet/System.Threading.xml", + "ref/dotnet/zh-hans/System.Threading.xml", + "ref/dotnet/zh-hant/System.Threading.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23109.nupkg", + "System.Threading.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "IMVmv9x4lBiy+jz31dU7KT/aTDlKZabAEDFAxQOTv//v1RYu5XZXZLIiTZqyVUKxxHgB0PUnuSDl5VxUDKysfQ==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/de/System.Threading.Overlapped.xml", + "ref/dotnet/es/System.Threading.Overlapped.xml", + "ref/dotnet/fr/System.Threading.Overlapped.xml", + "ref/dotnet/it/System.Threading.Overlapped.xml", + "ref/dotnet/ja/System.Threading.Overlapped.xml", + "ref/dotnet/ko/System.Threading.Overlapped.xml", + "ref/dotnet/ru/System.Threading.Overlapped.xml", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "J7lBqLLy1A85KZUgFz0fS8u6BO+pnWun2OAkrNqcUQbgCiKDC9v92u9q6a6AB9znum+GCdzH3cyEftNtIVNd1Q==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/de/System.Threading.Tasks.xml", + "ref/dotnet/es/System.Threading.Tasks.xml", + "ref/dotnet/fr/System.Threading.Tasks.xml", + "ref/dotnet/it/System.Threading.Tasks.xml", + "ref/dotnet/ja/System.Threading.Tasks.xml", + "ref/dotnet/ko/System.Threading.Tasks.xml", + "ref/dotnet/ru/System.Threading.Tasks.xml", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.xml", + "ref/dotnet/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet/zh-hant/System.Threading.Tasks.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23109": { + "sha512": "pOob5Fz4cRJ/bfBs2+ehmS99VGCN5Ei2mf7bl17STagcDGHUZBAzVLz8Kamq0hwQGX2pCFkuUZH+2Ycdts2PSQ==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/de/System.Threading.Thread.xml", + "ref/dotnet/es/System.Threading.Thread.xml", + "ref/dotnet/fr/System.Threading.Thread.xml", + "ref/dotnet/it/System.Threading.Thread.xml", + "ref/dotnet/ja/System.Threading.Thread.xml", + "ref/dotnet/ko/System.Threading.Thread.xml", + "ref/dotnet/ru/System.Threading.Thread.xml", + "ref/dotnet/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.xml", + "ref/dotnet/zh-hans/System.Threading.Thread.xml", + "ref/dotnet/zh-hant/System.Threading.Thread.xml", + "ref/net46/System.Threading.Thread.dll", + "System.Threading.Thread.4.0.0-beta-23109.nupkg", + "System.Threading.Thread.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.AspNet.Razor >= 4.0.0-beta6", + "Microsoft.CodeAnalysis.CSharp >= 1.0.0-*", + "EntityFramework.Relational >= 7.0.0-beta6" + ], + ".NETFramework,Version=v4.5": [ + "fx/System.IO >= 4.0.0.0", + "fx/System.Text.Encoding >= 4.0.0.0", + "fx/System.Threading.Tasks >= 4.0.0.0" + ], + "DNX,Version=v4.5.1": [ + "Microsoft.Framework.Runtime.Roslyn >= 1.0.0-beta6", + "fx/System.IO >= 4.0.0.0", + "fx/System.Text.Encoding >= 4.0.0.0", + "fx/System.Threading.Tasks >= 4.0.0.0" + ], + "DNXCore,Version=v5.0": [ + "Microsoft.Framework.Runtime.Roslyn >= 1.0.0-beta6" + ] + } +} \ No newline at end of file diff --git a/src/EntityFramework.Relational/project.json b/src/EntityFramework.Relational/project.json index c8bf7861e0a..b302de53709 100644 --- a/src/EntityFramework.Relational/project.json +++ b/src/EntityFramework.Relational/project.json @@ -1,33 +1,33 @@ { - "version": "7.0.0-*", - "description": "Shared Entity Framework components for relational data stores.", - "repository": { - "type": "git", - "url": "git://github.com/aspnet/entityframework" - }, - "compilationOptions": { - "warningsAsErrors": true - }, - "dependencies": { - "EntityFramework.Core": "7.0.0-*" - }, - "compile": "..\\Shared\\*.cs", - "namedResource": { - "EntityFramework.Relational.Strings": "Properties/Strings.resx" - }, - "frameworks": { - "net45": { - "frameworkAssemblies": { - "System.Data": "4.0.0.0", - "System.Transactions": "4.0.0.0" - } + "version": "7.0.0-beta6", + "description": "Shared Entity Framework components for relational data stores.", + "repository": { + "type": "git", + "url": "git://github.com/aspnet/entityframework" }, - "dotnet": { - "dependencies": { - "System.Data.Common": "4.0.0-*", - "System.Text.RegularExpressions": "4.0.10-*", - "Microsoft.CSharp": "4.0.0-*" - } + "compilationOptions": { + "warningsAsErrors": true + }, + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "compile": "..\\Shared\\*.cs", + "namedResource": { + "EntityFramework.Relational.Strings": "Properties/Strings.resx" + }, + "frameworks": { + "net45": { + "frameworkAssemblies": { + "System.Data": "4.0.0.0", + "System.Transactions": "4.0.0.0" + } + }, + "dotnet": { + "dependencies": { + "System.Data.Common": "4.0.0-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "Microsoft.CSharp": "4.0.0-beta-23109" + } + } } - } -} +} \ No newline at end of file diff --git a/src/EntityFramework.Relational/project.lock.json b/src/EntityFramework.Relational/project.lock.json new file mode 100644 index 00000000000..2279720b5a3 --- /dev/null +++ b/src/EntityFramework.Relational/project.lock.json @@ -0,0 +1,2294 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.5": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + } + }, + ".NETPlatform,Version=v5.0": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Collections.Immutable": "1.1.37-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.ComponentModel.Annotations": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Queryable": "4.0.0-beta-23109", + "System.ObjectModel": "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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6", + "Microsoft.CSharp": "4.0.0-beta-23109", + "System.Data.Common": "4.0.0-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Relational.dll": {} + } + }, + "Ix-Async/1.2.4": { + "compile": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + } + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Dynamic.Runtime": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.10-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.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Linq": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.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.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tracing": "4.0.20-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.Data.Common/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Data.Common.dll": {} + }, + "runtime": { + "lib/dotnet/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.0-beta-23109": { + "dependencies": { + "System.Linq.Expressions": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + } + }, + "System.IO/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "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.ObjectModel/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23109": { + "compile": { + "ref/dotnet/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + } + }, + "System.Text.Encoding/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "EntityFramework.Relational/7.0.0-beta6": { + "serviceable": true, + "sha512": "2CVE3UZjzXDRFYyfVL0lePnK1t2ZyLexNE88SiuUhY4mPC5SOWmDZ7mhLvtXeVJL/7PBpEmDy0qSDZRBpJ/Kiw==", + "files": [ + "EntityFramework.Relational.7.0.0-beta6.nupkg", + "EntityFramework.Relational.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Relational.nuspec", + "lib/dotnet/EntityFramework.Relational.dll", + "lib/dotnet/EntityFramework.Relational.xml", + "lib/net45/EntityFramework.Relational.dll", + "lib/net45/EntityFramework.Relational.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "MO4Lu8aMS1vL4Omp/gIMl2hr4sdV1l99p6xhAExGnS3MlFEa5JYPDL5mpdeg/osDH+1gAhb11xMJTYP7Ya3cAA==", + "files": [ + "lib/dotnet/Microsoft.CSharp.dll", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg.sha512", + "Microsoft.CSharp.nuspec", + "ref/dotnet/de/Microsoft.CSharp.xml", + "ref/dotnet/es/Microsoft.CSharp.xml", + "ref/dotnet/fr/Microsoft.CSharp.xml", + "ref/dotnet/it/Microsoft.CSharp.xml", + "ref/dotnet/ja/Microsoft.CSharp.xml", + "ref/dotnet/ko/Microsoft.CSharp.xml", + "ref/dotnet/Microsoft.CSharp.dll", + "ref/dotnet/Microsoft.CSharp.xml", + "ref/dotnet/ru/Microsoft.CSharp.xml", + "ref/dotnet/zh-hans/Microsoft.CSharp.xml", + "ref/dotnet/zh-hant/Microsoft.CSharp.xml", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "2/VX+2QEyyIpvGDzuIXX8V0vSl/Llt673DR48nNmeA6BoMuwL4Eu4F1Meh9fPp80nhcjifqVK8g7/UQDn/0PFw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23109.nupkg", + "System.Collections.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "fRXR5y4dg9zPovFpSQZkc6gnyMNlQJVQ8lKqPDPFSIelhqWxv2VyY87s5Vd9ViGwKrFwekDwCQFug9ny8qCHuA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Collections.Concurrent.xml", + "ref/dotnet/es/System.Collections.Concurrent.xml", + "ref/dotnet/fr/System.Collections.Concurrent.xml", + "ref/dotnet/it/System.Collections.Concurrent.xml", + "ref/dotnet/ja/System.Collections.Concurrent.xml", + "ref/dotnet/ko/System.Collections.Concurrent.xml", + "ref/dotnet/ru/System.Collections.Concurrent.xml", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/dotnet/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Z+VGG3YaL4PxuBn/Nbjul1OoaCBzvkylexTwIW6s8arj3c17XkCeJvZ1BIn66lzDpAQYMGZmv97UMT6OboRoVg==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/de/System.Collections.NonGeneric.xml", + "ref/dotnet/es/System.Collections.NonGeneric.xml", + "ref/dotnet/fr/System.Collections.NonGeneric.xml", + "ref/dotnet/it/System.Collections.NonGeneric.xml", + "ref/dotnet/ja/System.Collections.NonGeneric.xml", + "ref/dotnet/ko/System.Collections.NonGeneric.xml", + "ref/dotnet/ru/System.Collections.NonGeneric.xml", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", + "ref/net46/System.Collections.NonGeneric.dll", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "JFzHUvX28tQbud0c9AP+SFeOroBG9x7tgc0OYu0Z5nQotnIiwP5nHXq9DoK3N2y0MoRUt8jy2FwkRMAYgiQuNQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.ComponentModel.xml", + "ref/dotnet/es/System.ComponentModel.xml", + "ref/dotnet/fr/System.ComponentModel.xml", + "ref/dotnet/it/System.ComponentModel.xml", + "ref/dotnet/ja/System.ComponentModel.xml", + "ref/dotnet/ko/System.ComponentModel.xml", + "ref/dotnet/ru/System.ComponentModel.xml", + "ref/dotnet/System.ComponentModel.dll", + "ref/dotnet/System.ComponentModel.xml", + "ref/dotnet/zh-hans/System.ComponentModel.xml", + "ref/dotnet/zh-hant/System.ComponentModel.xml", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.0-beta-23109.nupkg", + "System.ComponentModel.4.0.0-beta-23109.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "tfq+u00KcRXrvtYS4v7Bi4NgfFXt0sx5IgqqgeWCOFtwhDTVWgL3XJN/lanFtANnG7+zVU3+B5mvjH1pblGHxg==", + "files": [ + "lib/dotnet/System.ComponentModel.Annotations.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ComponentModel.Annotations.xml", + "ref/dotnet/es/System.ComponentModel.Annotations.xml", + "ref/dotnet/fr/System.ComponentModel.Annotations.xml", + "ref/dotnet/it/System.ComponentModel.Annotations.xml", + "ref/dotnet/ja/System.ComponentModel.Annotations.xml", + "ref/dotnet/ko/System.ComponentModel.Annotations.xml", + "ref/dotnet/ru/System.ComponentModel.Annotations.xml", + "ref/dotnet/System.ComponentModel.Annotations.dll", + "ref/dotnet/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", + "ref/net46/_._", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg.sha512", + "System.ComponentModel.Annotations.nuspec" + ] + }, + "System.Data.Common/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "oWJT16F9TqEP1dQDNZUSuJ1gH17YyR8wTD+zfz03oflnAUWlyH2QM/px/X10GPZAn9Qz58EYR/maNzJIX9FSOA==", + "files": [ + "lib/dotnet/System.Data.Common.dll", + "lib/net46/System.Data.Common.dll", + "ref/dotnet/de/System.Data.Common.xml", + "ref/dotnet/es/System.Data.Common.xml", + "ref/dotnet/fr/System.Data.Common.xml", + "ref/dotnet/it/System.Data.Common.xml", + "ref/dotnet/ja/System.Data.Common.xml", + "ref/dotnet/ko/System.Data.Common.xml", + "ref/dotnet/ru/System.Data.Common.xml", + "ref/dotnet/System.Data.Common.dll", + "ref/dotnet/System.Data.Common.xml", + "ref/dotnet/zh-hans/System.Data.Common.xml", + "ref/dotnet/zh-hant/System.Data.Common.xml", + "ref/net46/System.Data.Common.dll", + "System.Data.Common.4.0.0-beta-23109.nupkg", + "System.Data.Common.4.0.0-beta-23109.nupkg.sha512", + "System.Data.Common.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "woJsNwCtAqYac5zp+6Wy40HAp7kYr8zhaFvHl3gECjQf+VGeGYaHgDV1ATVcyMG1h6XvmX0wtmD5Qds51CRJoA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6tFdP3p3SV6DZOagwW5ThfUF+zp5pUIyW4CY2K4B2RxV6HGVyY/8J2EuZGrcEP3wdO5fXnb9MmdOZa5Tn01Hmg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Diagnostics.Tools.xml", + "ref/dotnet/es/System.Diagnostics.Tools.xml", + "ref/dotnet/fr/System.Diagnostics.Tools.xml", + "ref/dotnet/it/System.Diagnostics.Tools.xml", + "ref/dotnet/ja/System.Diagnostics.Tools.xml", + "ref/dotnet/ko/System.Diagnostics.Tools.xml", + "ref/dotnet/ru/System.Diagnostics.Tools.xml", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/dotnet/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "sNauLSBFewFLjULHeplEr7FCmmfPbcc1jfz1Mynjy445bYiP/IW1q9X14a//oV/uQG7p82S9qHyfPxoxmt3pxQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/de/System.Diagnostics.Tracing.xml", + "ref/dotnet/es/System.Diagnostics.Tracing.xml", + "ref/dotnet/fr/System.Diagnostics.Tracing.xml", + "ref/dotnet/it/System.Diagnostics.Tracing.xml", + "ref/dotnet/ja/System.Diagnostics.Tracing.xml", + "ref/dotnet/ko/System.Diagnostics.Tracing.xml", + "ref/dotnet/ru/System.Diagnostics.Tracing.xml", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.0-beta-23109": { + "sha512": "nH2j/mWRcUME1Tz9tFXhf6zWGRVW5a5M+2bMG5GvudHv0SrbwfPGQBqwYCm5n1uQu68K1C59evXEq8BoMdXlcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Dynamic.Runtime.xml", + "ref/dotnet/es/System.Dynamic.Runtime.xml", + "ref/dotnet/fr/System.Dynamic.Runtime.xml", + "ref/dotnet/it/System.Dynamic.Runtime.xml", + "ref/dotnet/ja/System.Dynamic.Runtime.xml", + "ref/dotnet/ko/System.Dynamic.Runtime.xml", + "ref/dotnet/ru/System.Dynamic.Runtime.xml", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.xml", + "ref/dotnet/zh-hans/System.Dynamic.Runtime.xml", + "ref/dotnet/zh-hant/System.Dynamic.Runtime.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Dynamic.Runtime.4.0.0-beta-23109.nupkg", + "System.Dynamic.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23109": { + "sha512": "l4QNrgLmC4KHGLcfriJ2EmsM2j18xefJzCnLU6YqVdBFaYzsJGwqmHyIr4nqw9DBjdWEtzdHLEbvpLeEay0ZWQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23109.nupkg", + "System.Globalization.4.0.10-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.IO/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "DVHSyfJO8mC9CpZFjjuaOWazALkWFnI6b/fqTQCjNe1dp2XasuvTRiV/qIOJB+uyDVex8sH8QMRUDS6ukimyLA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/de/System.IO.xml", + "ref/dotnet/es/System.IO.xml", + "ref/dotnet/fr/System.IO.xml", + "ref/dotnet/it/System.IO.xml", + "ref/dotnet/ja/System.IO.xml", + "ref/dotnet/ko/System.IO.xml", + "ref/dotnet/ru/System.IO.xml", + "ref/dotnet/System.IO.dll", + "ref/dotnet/System.IO.xml", + "ref/dotnet/zh-hans/System.IO.xml", + "ref/dotnet/zh-hant/System.IO.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23109.nupkg", + "System.IO.4.0.10-beta-23109.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "OusDe4B1/Q3BYY4QzNfztnyPPK9a1OGsQVZBg41C1bk8F2S3AOtXCx0GUwAfKbVxxS4dOdIgxWw1JN5m+IlpAA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/de/System.IO.FileSystem.xml", + "ref/dotnet/es/System.IO.FileSystem.xml", + "ref/dotnet/fr/System.IO.FileSystem.xml", + "ref/dotnet/it/System.IO.FileSystem.xml", + "ref/dotnet/ja/System.IO.FileSystem.xml", + "ref/dotnet/ko/System.IO.FileSystem.xml", + "ref/dotnet/ru/System.IO.FileSystem.xml", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.xml", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "1JFc6+hsLnlYgACgluhMi19zFkNruPgWoLDq30z7qMKgs3FZqShvXDZLTQ1Hk+cnenUoUU/8P8yRdmbdQaf4yg==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "cy+sQJW809QnFHIXt5Y/If45u362gwiNqHldnJS70l7VCjyR4Bo3UgZMZl+bowSupWxqXk69cwCQhRUyFu2hVw==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/de/System.Linq.Expressions.xml", + "ref/dotnet/es/System.Linq.Expressions.xml", + "ref/dotnet/fr/System.Linq.Expressions.xml", + "ref/dotnet/it/System.Linq.Expressions.xml", + "ref/dotnet/ja/System.Linq.Expressions.xml", + "ref/dotnet/ko/System.Linq.Expressions.xml", + "ref/dotnet/ru/System.Linq.Expressions.xml", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.xml", + "ref/dotnet/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet/zh-hant/System.Linq.Expressions.xml", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Mu6nIhw5k/zAMigeCh4aqma3kwXLoyPREVD6RxVPhGu2QJjAEeih0GWumoDjtdFp0B5Q6sYeakWDAds7NmzWQg==", + "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.ObjectModel/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "mnrhXE8nT5mX/ndEJ5BsdLCgN6CofKiwQvr9Olsp/s3crY5/lXYM73N2bNSvsFcHD1o0XhaCOn18Vekv6SYTpg==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ObjectModel.xml", + "ref/dotnet/es/System.ObjectModel.xml", + "ref/dotnet/fr/System.ObjectModel.xml", + "ref/dotnet/it/System.ObjectModel.xml", + "ref/dotnet/ja/System.ObjectModel.xml", + "ref/dotnet/ko/System.ObjectModel.xml", + "ref/dotnet/ru/System.ObjectModel.xml", + "ref/dotnet/System.ObjectModel.dll", + "ref/dotnet/System.ObjectModel.xml", + "ref/dotnet/zh-hans/System.ObjectModel.xml", + "ref/dotnet/zh-hant/System.ObjectModel.xml", + "ref/net46/_._", + "System.ObjectModel.4.0.10-beta-23109.nupkg", + "System.ObjectModel.4.0.10-beta-23109.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23109": { + "sha512": "aeXO8gjPb46LaP727cXDcCZ2mZoMxguq2UhE25wJoO1Je8Q8D2JFonNk85oVlgXCdEM6XgrtRnsnhvj8PmTBNg==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/de/System.Reflection.xml", + "ref/dotnet/es/System.Reflection.xml", + "ref/dotnet/fr/System.Reflection.xml", + "ref/dotnet/it/System.Reflection.xml", + "ref/dotnet/ja/System.Reflection.xml", + "ref/dotnet/ko/System.Reflection.xml", + "ref/dotnet/ru/System.Reflection.xml", + "ref/dotnet/System.Reflection.dll", + "ref/dotnet/System.Reflection.xml", + "ref/dotnet/zh-hans/System.Reflection.xml", + "ref/dotnet/zh-hant/System.Reflection.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23109.nupkg", + "System.Reflection.4.0.10-beta-23109.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "sXo3+qJ7TukCF/rDFYKjEog4iVb75dXJztu/lkvhMHgYnviPSbi9zg78FQUFhB6BOvntwnknrgNJhhtl3x9a7A==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Extensions.xml", + "ref/dotnet/es/System.Reflection.Extensions.xml", + "ref/dotnet/fr/System.Reflection.Extensions.xml", + "ref/dotnet/it/System.Reflection.Extensions.xml", + "ref/dotnet/ja/System.Reflection.Extensions.xml", + "ref/dotnet/ko/System.Reflection.Extensions.xml", + "ref/dotnet/ru/System.Reflection.Extensions.xml", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/dotnet/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "R5oBDNgUtSV9KTPCxwHWiTyryX/9mngnPbLWwFOEF5xcNd3Qlu6/3LiauGsIzGtXV8vOpRl9tfyIFy8t4ix4Gw==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Primitives.xml", + "ref/dotnet/es/System.Reflection.Primitives.xml", + "ref/dotnet/fr/System.Reflection.Primitives.xml", + "ref/dotnet/it/System.Reflection.Primitives.xml", + "ref/dotnet/ja/System.Reflection.Primitives.xml", + "ref/dotnet/ko/System.Reflection.Primitives.xml", + "ref/dotnet/ru/System.Reflection.Primitives.xml", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "lTuPMxeoT/Jqb1QtsIuSomLiJpQP3Y4DqqxLPncrMvLrejwdF25QSbhXdx5twgvBDqwSVL8wYtqiOqKe02u7FA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/de/System.Reflection.TypeExtensions.xml", + "ref/dotnet/es/System.Reflection.TypeExtensions.xml", + "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", + "ref/dotnet/it/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "6usAb6nZEPKugl3z5JR/RZrouH5/340n3tM0lhRfxVE/k3B3Sfh/sHSPiAOorrZgGm4cIDDhXTCGJQSWYphu3g==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/de/System.Runtime.xml", + "ref/dotnet/es/System.Runtime.xml", + "ref/dotnet/fr/System.Runtime.xml", + "ref/dotnet/it/System.Runtime.xml", + "ref/dotnet/ja/System.Runtime.xml", + "ref/dotnet/ko/System.Runtime.xml", + "ref/dotnet/ru/System.Runtime.xml", + "ref/dotnet/System.Runtime.dll", + "ref/dotnet/System.Runtime.xml", + "ref/dotnet/zh-hans/System.Runtime.xml", + "ref/dotnet/zh-hant/System.Runtime.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23109.nupkg", + "System.Runtime.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "JkRMtSY5YFGhP9eY7ZFIj40Ha5lGOwSxrk90k0ZAuIFn6qEPNe0NKu/C8laV7Cqy4Lv5IYzkVUGrfOqg3MOG9A==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/de/System.Runtime.Extensions.xml", + "ref/dotnet/es/System.Runtime.Extensions.xml", + "ref/dotnet/fr/System.Runtime.Extensions.xml", + "ref/dotnet/it/System.Runtime.Extensions.xml", + "ref/dotnet/ja/System.Runtime.Extensions.xml", + "ref/dotnet/ko/System.Runtime.Extensions.xml", + "ref/dotnet/ru/System.Runtime.Extensions.xml", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "XfjBv5hxBDVXvgPzBXiMpHprnmd5trdBAG4o7DEi/3GPXIlety4G0sfmlxeiTr7njKr0wF4ERdLIfzPesS5PAw==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "fxRLTR5kbqOZuSeT5ggVBYc6HIEGmEwh+Uw1ijp2qD3yMiMPmxvtI5aP5t0yZHEmwUrB37lGB+oaPpcXLH5Feg==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/de/System.Runtime.InteropServices.xml", + "ref/dotnet/es/System.Runtime.InteropServices.xml", + "ref/dotnet/fr/System.Runtime.InteropServices.xml", + "ref/dotnet/it/System.Runtime.InteropServices.xml", + "ref/dotnet/ja/System.Runtime.InteropServices.xml", + "ref/dotnet/ko/System.Runtime.InteropServices.xml", + "ref/dotnet/ru/System.Runtime.InteropServices.xml", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Text.Encoding/4.0.0-beta-23109": { + "sha512": "LlQ07793RcpK1Dgs8jV7YizVv0F78iFyE7t1t/EPQGCA+gxdbFDsmCmlZ/Bbr6KR7KwoFePi+YEQGDDcNmV+8g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Text.Encoding.xml", + "ref/dotnet/es/System.Text.Encoding.xml", + "ref/dotnet/fr/System.Text.Encoding.xml", + "ref/dotnet/it/System.Text.Encoding.xml", + "ref/dotnet/ja/System.Text.Encoding.xml", + "ref/dotnet/ko/System.Text.Encoding.xml", + "ref/dotnet/ru/System.Text.Encoding.xml", + "ref/dotnet/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Text.Encoding.4.0.0-beta-23109.nupkg", + "System.Text.Encoding.4.0.0-beta-23109.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "F+tfzB34KhZnjS3ActdL57CQVD9oYGhAZm8AREL+KvbJTh1Y8/tlyCyI2xoH6KdJzIPcXC50yu4OkHNbpcutEw==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Text.RegularExpressions.xml", + "ref/dotnet/es/System.Text.RegularExpressions.xml", + "ref/dotnet/fr/System.Text.RegularExpressions.xml", + "ref/dotnet/it/System.Text.RegularExpressions.xml", + "ref/dotnet/ja/System.Text.RegularExpressions.xml", + "ref/dotnet/ko/System.Text.RegularExpressions.xml", + "ref/dotnet/ru/System.Text.RegularExpressions.xml", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/dotnet/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "TSViw+K20yh9DmwzZpvuCUc2m2ju1eVAJ10pTw2gB/aP4kkrX2nGf4A9BkwkxupPXFA2OtO9LbbEqdp4YbBnjQ==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/de/System.Threading.xml", + "ref/dotnet/es/System.Threading.xml", + "ref/dotnet/fr/System.Threading.xml", + "ref/dotnet/it/System.Threading.xml", + "ref/dotnet/ja/System.Threading.xml", + "ref/dotnet/ko/System.Threading.xml", + "ref/dotnet/ru/System.Threading.xml", + "ref/dotnet/System.Threading.dll", + "ref/dotnet/System.Threading.xml", + "ref/dotnet/zh-hans/System.Threading.xml", + "ref/dotnet/zh-hant/System.Threading.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23109.nupkg", + "System.Threading.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "J7lBqLLy1A85KZUgFz0fS8u6BO+pnWun2OAkrNqcUQbgCiKDC9v92u9q6a6AB9znum+GCdzH3cyEftNtIVNd1Q==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/de/System.Threading.Tasks.xml", + "ref/dotnet/es/System.Threading.Tasks.xml", + "ref/dotnet/fr/System.Threading.Tasks.xml", + "ref/dotnet/it/System.Threading.Tasks.xml", + "ref/dotnet/ja/System.Threading.Tasks.xml", + "ref/dotnet/ko/System.Threading.Tasks.xml", + "ref/dotnet/ru/System.Threading.Tasks.xml", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.xml", + "ref/dotnet/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet/zh-hant/System.Threading.Tasks.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "EntityFramework.Core >= 7.0.0-beta6" + ], + ".NETFramework,Version=v4.5": [ + "fx/System.Data >= 4.0.0.0", + "fx/System.Transactions >= 4.0.0.0" + ], + ".NETPlatform,Version=v5.0": [ + "System.Data.Common >= 4.0.0-beta-23109", + "System.Text.RegularExpressions >= 4.0.10-beta-23109", + "Microsoft.CSharp >= 4.0.0-beta-23109" + ] + } +} \ No newline at end of file diff --git a/src/EntityFramework.SqlServer.Design/project.json b/src/EntityFramework.SqlServer.Design/project.json index 8485083dbda..52e05c584d6 100644 --- a/src/EntityFramework.SqlServer.Design/project.json +++ b/src/EntityFramework.SqlServer.Design/project.json @@ -1,24 +1,24 @@ { - "version": "7.0.0-*", - "description": "Design-time Entity Framework Functionality for Microsoft SQL Server data store.", - "repository": { - "type": "git", - "url": "git://github.com/aspnet/entityframework" - }, - "compilationOptions": { - "warningsAsErrors": true - }, - "dependencies": { - "EntityFramework.Relational.Design": "7.0.0-*", - "EntityFramework.SqlServer": "7.0.0-*" - }, - "compile": "..\\Shared\\*.cs", - "namedResource": { - "EntityFramework.SqlServer.Design.Strings": "Properties/Strings.resx" - }, - "resource": "ReverseEngineering/Templates/*.cshtml", - "frameworks": { - "net45": { }, - "dnxcore50": { } - } -} + "version": "7.0.0-beta6", + "description": "Design-time Entity Framework Functionality for Microsoft SQL Server data store.", + "repository": { + "type": "git", + "url": "git://github.com/aspnet/entityframework" + }, + "compilationOptions": { + "warningsAsErrors": true + }, + "dependencies": { + "EntityFramework.Relational.Design": "7.0.0-beta6", + "EntityFramework.SqlServer": "7.0.0-beta6" + }, + "compile": "..\\Shared\\*.cs", + "namedResource": { + "EntityFramework.SqlServer.Design.Strings": "Properties/Strings.resx" + }, + "resource": "ReverseEngineering/Templates/*.cshtml", + "frameworks": { + "net45": {}, + "dnxcore50": {} + } +} \ No newline at end of file diff --git a/src/EntityFramework.SqlServer.Design/project.lock.json b/src/EntityFramework.SqlServer.Design/project.lock.json new file mode 100644 index 00000000000..587b9ee41cb --- /dev/null +++ b/src/EntityFramework.SqlServer.Design/project.lock.json @@ -0,0 +1,3425 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.5": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.SqlServer.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.AspNet.Razor.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.AspNet.Razor.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + } + }, + "DNXCore,Version=v5.0": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Collections.Immutable": "1.1.37-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.ComponentModel.Annotations": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Queryable": "4.0.0-beta-23109", + "System.ObjectModel": "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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6", + "Microsoft.CSharp": "4.0.0-beta-23109", + "System.Data.Common": "4.0.0-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Relational.dll": {} + } + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6", + "System.Data.SqlClient": "4.0.0-beta-23109", + "System.Text.Encoding.CodePages": "4.0.0-beta-23109", + "System.Threading.Thread": "4.0.0-beta-23109" + }, + "compile": { + "lib/dnxcore50/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/dnxcore50/EntityFramework.SqlServer.dll": {} + } + }, + "Ix-Async/1.2.4": { + "compile": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + } + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109", + "System.Threading.Thread": "4.0.0-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Razor.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Razor.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": {}, + "Microsoft.CodeAnalysis.Common/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Dynamic.Runtime": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.10-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.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Linq": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.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.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Roslyn.Abstractions": "1.0.0-beta6", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.0.0", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tracing": "4.0.20-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.Data.Common/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Data.Common.dll": {} + }, + "runtime": { + "lib/dotnet/System.Data.Common.dll": {} + } + }, + "System.Data.SqlClient/4.0.0-beta-23109": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23109", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.0-beta-23109", + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.Data.Common": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "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.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.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Security.Principal.Windows": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.CodePages": "4.0.0-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109", + "System.Threading.Thread": "4.0.0-beta-23109", + "System.Threading.ThreadPool": "4.0.0-beta-23109", + "System.Threading.Timer": "4.0.0-beta-23109", + "System.Xml.ReaderWriter": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Data.SqlClient.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Data.SqlClient.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.0-beta-23109": { + "dependencies": { + "System.Linq.Expressions": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.IO/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Overlapped": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit": "4.0.0-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "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.ObjectModel/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23109": { + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23109": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Security.Principal": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23109": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23109", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23109": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Claims": "4.0.0-beta-23109", + "System.Security.Principal": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.CodePages/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.Encoding.CodePages.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-22231": { + "dependencies": { + "System.Runtime": "4.0.0-beta-22231", + "System.Runtime.InteropServices": "4.0.0-beta-22231" + }, + "compile": { + "lib/contract/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/aspnetcore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "EntityFramework.Relational/7.0.0-beta6": { + "serviceable": true, + "sha512": "2CVE3UZjzXDRFYyfVL0lePnK1t2ZyLexNE88SiuUhY4mPC5SOWmDZ7mhLvtXeVJL/7PBpEmDy0qSDZRBpJ/Kiw==", + "files": [ + "EntityFramework.Relational.7.0.0-beta6.nupkg", + "EntityFramework.Relational.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Relational.nuspec", + "lib/dotnet/EntityFramework.Relational.dll", + "lib/dotnet/EntityFramework.Relational.xml", + "lib/net45/EntityFramework.Relational.dll", + "lib/net45/EntityFramework.Relational.xml", + "repo.json" + ] + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "serviceable": true, + "sha512": "69BvxKYVxgO/LK5YTKo9iuK4rt2/ystXVWdHfl3JaZ8DASB+UTacNNDDYeHuo2ZqQCv523AZSReuBGZ5reGBOg==", + "files": [ + "EntityFramework.SqlServer.7.0.0-beta6.nupkg", + "EntityFramework.SqlServer.7.0.0-beta6.nupkg.sha512", + "EntityFramework.SqlServer.nuspec", + "lib/dnxcore50/EntityFramework.SqlServer.dll", + "lib/dnxcore50/EntityFramework.SqlServer.xml", + "lib/net45/EntityFramework.SqlServer.dll", + "lib/net45/EntityFramework.SqlServer.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "serviceable": true, + "sha512": "GkdomN9ySGxL9FqgD8pdxxljGWvIFOyRPKzbLe+XseKDfpP9YNzkX2+oD2TLcwCl/O7bJcX2F7k0Zlf96fMpfw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Razor.dll", + "lib/dnx451/Microsoft.AspNet.Razor.xml", + "lib/dnxcore50/Microsoft.AspNet.Razor.dll", + "lib/dnxcore50/Microsoft.AspNet.Razor.xml", + "lib/net45/Microsoft.AspNet.Razor.dll", + "lib/net45/Microsoft.AspNet.Razor.xml", + "Microsoft.AspNet.Razor.4.0.0-beta6.nupkg", + "Microsoft.AspNet.Razor.4.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Razor.nuspec", + "repo.json" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "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.0.0": { + "sha512": "MhxsY8N9veim57uXqcRCJb7X9xZoWhMDU4/EyIqNkS7qfRsLxrzELSpjp6NjFkISZElvwIV2Ehi3UxyJui/gPw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "sha512": "KZ70r7EF+Dn8qp2p1CiBJGVoIG6el7Q9cLhnXuq+3oLcnMvUk2XzimB36AgO/Qg/liqRzf992WmFWhwqZSaIEg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "MO4Lu8aMS1vL4Omp/gIMl2hr4sdV1l99p6xhAExGnS3MlFEa5JYPDL5mpdeg/osDH+1gAhb11xMJTYP7Ya3cAA==", + "files": [ + "lib/dotnet/Microsoft.CSharp.dll", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg.sha512", + "Microsoft.CSharp.nuspec", + "ref/dotnet/de/Microsoft.CSharp.xml", + "ref/dotnet/es/Microsoft.CSharp.xml", + "ref/dotnet/fr/Microsoft.CSharp.xml", + "ref/dotnet/it/Microsoft.CSharp.xml", + "ref/dotnet/ja/Microsoft.CSharp.xml", + "ref/dotnet/ko/Microsoft.CSharp.xml", + "ref/dotnet/Microsoft.CSharp.dll", + "ref/dotnet/Microsoft.CSharp.xml", + "ref/dotnet/ru/Microsoft.CSharp.xml", + "ref/dotnet/zh-hans/Microsoft.CSharp.xml", + "ref/dotnet/zh-hant/Microsoft.CSharp.xml", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "w4Cwg6jgPd3XFGOgBGU3GVGVAwUcMglSDTlI23M8uI7yhDRSDbxZ2HPbjTEBMoj+IYdkfunZWFdA67tdk8L8Tg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta6": { + "sha512": "+y/7JAz5lC3cmxeNe88Bi80jw6gA2f092y7vk8J6GXOWcUV+I3QoBl0p2Hne5T2YDfZALtzuyVGqsXIaM1X93A==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Roslyn/1.0.0-beta6": { + "serviceable": true, + "sha512": "P15pRq5zhTX6VB3yKJATfHf9/QpLSJZRnof81fj0BlEx0sTZdYVojbd1FSLKaG8aKb0B82TZrwk49UqIsKvSMA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.xml", + "Microsoft.Framework.Runtime.Roslyn.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Roslyn.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Roslyn.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Roslyn.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "gEHCvzynTJl20HUNR0Ag2K5i07oQUk+XIakcagbS6dsz7SQO2YFPmCoxUAp4puqjfsb4XZ8koZHQfLsEDGJd2A==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.xml", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "GsSRwzgrK2WJHUyd83AtKEX+Hv8ecmnwerJzinTXNqddsI48ClaeAyBgUnvRh5e/R8zzfIFqSHD1iEXSOSjAgQ==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23109.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23109.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/de/Microsoft.Win32.Primitives.xml", + "ref/dotnet/es/Microsoft.Win32.Primitives.xml", + "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", + "ref/dotnet/it/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "2/VX+2QEyyIpvGDzuIXX8V0vSl/Llt673DR48nNmeA6BoMuwL4Eu4F1Meh9fPp80nhcjifqVK8g7/UQDn/0PFw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23109.nupkg", + "System.Collections.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "fRXR5y4dg9zPovFpSQZkc6gnyMNlQJVQ8lKqPDPFSIelhqWxv2VyY87s5Vd9ViGwKrFwekDwCQFug9ny8qCHuA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Collections.Concurrent.xml", + "ref/dotnet/es/System.Collections.Concurrent.xml", + "ref/dotnet/fr/System.Collections.Concurrent.xml", + "ref/dotnet/it/System.Collections.Concurrent.xml", + "ref/dotnet/ja/System.Collections.Concurrent.xml", + "ref/dotnet/ko/System.Collections.Concurrent.xml", + "ref/dotnet/ru/System.Collections.Concurrent.xml", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/dotnet/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Z+VGG3YaL4PxuBn/Nbjul1OoaCBzvkylexTwIW6s8arj3c17XkCeJvZ1BIn66lzDpAQYMGZmv97UMT6OboRoVg==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/de/System.Collections.NonGeneric.xml", + "ref/dotnet/es/System.Collections.NonGeneric.xml", + "ref/dotnet/fr/System.Collections.NonGeneric.xml", + "ref/dotnet/it/System.Collections.NonGeneric.xml", + "ref/dotnet/ja/System.Collections.NonGeneric.xml", + "ref/dotnet/ko/System.Collections.NonGeneric.xml", + "ref/dotnet/ru/System.Collections.NonGeneric.xml", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", + "ref/net46/System.Collections.NonGeneric.dll", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "JFzHUvX28tQbud0c9AP+SFeOroBG9x7tgc0OYu0Z5nQotnIiwP5nHXq9DoK3N2y0MoRUt8jy2FwkRMAYgiQuNQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.ComponentModel.xml", + "ref/dotnet/es/System.ComponentModel.xml", + "ref/dotnet/fr/System.ComponentModel.xml", + "ref/dotnet/it/System.ComponentModel.xml", + "ref/dotnet/ja/System.ComponentModel.xml", + "ref/dotnet/ko/System.ComponentModel.xml", + "ref/dotnet/ru/System.ComponentModel.xml", + "ref/dotnet/System.ComponentModel.dll", + "ref/dotnet/System.ComponentModel.xml", + "ref/dotnet/zh-hans/System.ComponentModel.xml", + "ref/dotnet/zh-hant/System.ComponentModel.xml", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.0-beta-23109.nupkg", + "System.ComponentModel.4.0.0-beta-23109.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "tfq+u00KcRXrvtYS4v7Bi4NgfFXt0sx5IgqqgeWCOFtwhDTVWgL3XJN/lanFtANnG7+zVU3+B5mvjH1pblGHxg==", + "files": [ + "lib/dotnet/System.ComponentModel.Annotations.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ComponentModel.Annotations.xml", + "ref/dotnet/es/System.ComponentModel.Annotations.xml", + "ref/dotnet/fr/System.ComponentModel.Annotations.xml", + "ref/dotnet/it/System.ComponentModel.Annotations.xml", + "ref/dotnet/ja/System.ComponentModel.Annotations.xml", + "ref/dotnet/ko/System.ComponentModel.Annotations.xml", + "ref/dotnet/ru/System.ComponentModel.Annotations.xml", + "ref/dotnet/System.ComponentModel.Annotations.dll", + "ref/dotnet/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", + "ref/net46/_._", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg.sha512", + "System.ComponentModel.Annotations.nuspec" + ] + }, + "System.Data.Common/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "oWJT16F9TqEP1dQDNZUSuJ1gH17YyR8wTD+zfz03oflnAUWlyH2QM/px/X10GPZAn9Qz58EYR/maNzJIX9FSOA==", + "files": [ + "lib/dotnet/System.Data.Common.dll", + "lib/net46/System.Data.Common.dll", + "ref/dotnet/de/System.Data.Common.xml", + "ref/dotnet/es/System.Data.Common.xml", + "ref/dotnet/fr/System.Data.Common.xml", + "ref/dotnet/it/System.Data.Common.xml", + "ref/dotnet/ja/System.Data.Common.xml", + "ref/dotnet/ko/System.Data.Common.xml", + "ref/dotnet/ru/System.Data.Common.xml", + "ref/dotnet/System.Data.Common.dll", + "ref/dotnet/System.Data.Common.xml", + "ref/dotnet/zh-hans/System.Data.Common.xml", + "ref/dotnet/zh-hant/System.Data.Common.xml", + "ref/net46/System.Data.Common.dll", + "System.Data.Common.4.0.0-beta-23109.nupkg", + "System.Data.Common.4.0.0-beta-23109.nupkg.sha512", + "System.Data.Common.nuspec" + ] + }, + "System.Data.SqlClient/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "c56D/dcp+BS22hpnZs8zfUBA0PAs9ftJp7IYLY8b1or798Rl+oT5swf/R8bs2rbeG0cE4Dq7ixr0dm5YdANVxQ==", + "files": [ + "lib/DNXCore50/System.Data.SqlClient.dll", + "lib/net46/System.Data.SqlClient.dll", + "ref/dotnet/de/System.Data.SqlClient.xml", + "ref/dotnet/es/System.Data.SqlClient.xml", + "ref/dotnet/fr/System.Data.SqlClient.xml", + "ref/dotnet/it/System.Data.SqlClient.xml", + "ref/dotnet/ja/System.Data.SqlClient.xml", + "ref/dotnet/ko/System.Data.SqlClient.xml", + "ref/dotnet/ru/System.Data.SqlClient.xml", + "ref/dotnet/System.Data.SqlClient.dll", + "ref/dotnet/System.Data.SqlClient.xml", + "ref/dotnet/zh-hans/System.Data.SqlClient.xml", + "ref/dotnet/zh-hant/System.Data.SqlClient.xml", + "ref/net46/System.Data.SqlClient.dll", + "runtime.json", + "System.Data.SqlClient.4.0.0-beta-23109.nupkg", + "System.Data.SqlClient.4.0.0-beta-23109.nupkg.sha512", + "System.Data.SqlClient.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "woJsNwCtAqYac5zp+6Wy40HAp7kYr8zhaFvHl3gECjQf+VGeGYaHgDV1ATVcyMG1h6XvmX0wtmD5Qds51CRJoA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6tFdP3p3SV6DZOagwW5ThfUF+zp5pUIyW4CY2K4B2RxV6HGVyY/8J2EuZGrcEP3wdO5fXnb9MmdOZa5Tn01Hmg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Diagnostics.Tools.xml", + "ref/dotnet/es/System.Diagnostics.Tools.xml", + "ref/dotnet/fr/System.Diagnostics.Tools.xml", + "ref/dotnet/it/System.Diagnostics.Tools.xml", + "ref/dotnet/ja/System.Diagnostics.Tools.xml", + "ref/dotnet/ko/System.Diagnostics.Tools.xml", + "ref/dotnet/ru/System.Diagnostics.Tools.xml", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/dotnet/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "sNauLSBFewFLjULHeplEr7FCmmfPbcc1jfz1Mynjy445bYiP/IW1q9X14a//oV/uQG7p82S9qHyfPxoxmt3pxQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/de/System.Diagnostics.Tracing.xml", + "ref/dotnet/es/System.Diagnostics.Tracing.xml", + "ref/dotnet/fr/System.Diagnostics.Tracing.xml", + "ref/dotnet/it/System.Diagnostics.Tracing.xml", + "ref/dotnet/ja/System.Diagnostics.Tracing.xml", + "ref/dotnet/ko/System.Diagnostics.Tracing.xml", + "ref/dotnet/ru/System.Diagnostics.Tracing.xml", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.0-beta-23109": { + "sha512": "nH2j/mWRcUME1Tz9tFXhf6zWGRVW5a5M+2bMG5GvudHv0SrbwfPGQBqwYCm5n1uQu68K1C59evXEq8BoMdXlcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Dynamic.Runtime.xml", + "ref/dotnet/es/System.Dynamic.Runtime.xml", + "ref/dotnet/fr/System.Dynamic.Runtime.xml", + "ref/dotnet/it/System.Dynamic.Runtime.xml", + "ref/dotnet/ja/System.Dynamic.Runtime.xml", + "ref/dotnet/ko/System.Dynamic.Runtime.xml", + "ref/dotnet/ru/System.Dynamic.Runtime.xml", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.xml", + "ref/dotnet/zh-hans/System.Dynamic.Runtime.xml", + "ref/dotnet/zh-hant/System.Dynamic.Runtime.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Dynamic.Runtime.4.0.0-beta-23109.nupkg", + "System.Dynamic.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23109": { + "sha512": "l4QNrgLmC4KHGLcfriJ2EmsM2j18xefJzCnLU6YqVdBFaYzsJGwqmHyIr4nqw9DBjdWEtzdHLEbvpLeEay0ZWQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23109.nupkg", + "System.Globalization.4.0.10-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.IO/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "DVHSyfJO8mC9CpZFjjuaOWazALkWFnI6b/fqTQCjNe1dp2XasuvTRiV/qIOJB+uyDVex8sH8QMRUDS6ukimyLA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/de/System.IO.xml", + "ref/dotnet/es/System.IO.xml", + "ref/dotnet/fr/System.IO.xml", + "ref/dotnet/it/System.IO.xml", + "ref/dotnet/ja/System.IO.xml", + "ref/dotnet/ko/System.IO.xml", + "ref/dotnet/ru/System.IO.xml", + "ref/dotnet/System.IO.dll", + "ref/dotnet/System.IO.xml", + "ref/dotnet/zh-hans/System.IO.xml", + "ref/dotnet/zh-hant/System.IO.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23109.nupkg", + "System.IO.4.0.10-beta-23109.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "OusDe4B1/Q3BYY4QzNfztnyPPK9a1OGsQVZBg41C1bk8F2S3AOtXCx0GUwAfKbVxxS4dOdIgxWw1JN5m+IlpAA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/de/System.IO.FileSystem.xml", + "ref/dotnet/es/System.IO.FileSystem.xml", + "ref/dotnet/fr/System.IO.FileSystem.xml", + "ref/dotnet/it/System.IO.FileSystem.xml", + "ref/dotnet/ja/System.IO.FileSystem.xml", + "ref/dotnet/ko/System.IO.FileSystem.xml", + "ref/dotnet/ru/System.IO.FileSystem.xml", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.xml", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "1JFc6+hsLnlYgACgluhMi19zFkNruPgWoLDq30z7qMKgs3FZqShvXDZLTQ1Hk+cnenUoUU/8P8yRdmbdQaf4yg==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "cy+sQJW809QnFHIXt5Y/If45u362gwiNqHldnJS70l7VCjyR4Bo3UgZMZl+bowSupWxqXk69cwCQhRUyFu2hVw==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/de/System.Linq.Expressions.xml", + "ref/dotnet/es/System.Linq.Expressions.xml", + "ref/dotnet/fr/System.Linq.Expressions.xml", + "ref/dotnet/it/System.Linq.Expressions.xml", + "ref/dotnet/ja/System.Linq.Expressions.xml", + "ref/dotnet/ko/System.Linq.Expressions.xml", + "ref/dotnet/ru/System.Linq.Expressions.xml", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.xml", + "ref/dotnet/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet/zh-hant/System.Linq.Expressions.xml", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Mu6nIhw5k/zAMigeCh4aqma3kwXLoyPREVD6RxVPhGu2QJjAEeih0GWumoDjtdFp0B5Q6sYeakWDAds7NmzWQg==", + "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.ObjectModel/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "mnrhXE8nT5mX/ndEJ5BsdLCgN6CofKiwQvr9Olsp/s3crY5/lXYM73N2bNSvsFcHD1o0XhaCOn18Vekv6SYTpg==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ObjectModel.xml", + "ref/dotnet/es/System.ObjectModel.xml", + "ref/dotnet/fr/System.ObjectModel.xml", + "ref/dotnet/it/System.ObjectModel.xml", + "ref/dotnet/ja/System.ObjectModel.xml", + "ref/dotnet/ko/System.ObjectModel.xml", + "ref/dotnet/ru/System.ObjectModel.xml", + "ref/dotnet/System.ObjectModel.dll", + "ref/dotnet/System.ObjectModel.xml", + "ref/dotnet/zh-hans/System.ObjectModel.xml", + "ref/dotnet/zh-hant/System.ObjectModel.xml", + "ref/net46/_._", + "System.ObjectModel.4.0.10-beta-23109.nupkg", + "System.ObjectModel.4.0.10-beta-23109.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "y6M7TxwDXBD2in5cCf+KzucZyx7YE7SJMcU24atzYnpwP2xFASUYCeI6NRg5bYcw2Do5HKBz+XdE9WiZrwpnFg==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23109.nupkg", + "System.Private.Uri.4.0.0-beta-23109.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23109": { + "sha512": "aeXO8gjPb46LaP727cXDcCZ2mZoMxguq2UhE25wJoO1Je8Q8D2JFonNk85oVlgXCdEM6XgrtRnsnhvj8PmTBNg==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/de/System.Reflection.xml", + "ref/dotnet/es/System.Reflection.xml", + "ref/dotnet/fr/System.Reflection.xml", + "ref/dotnet/it/System.Reflection.xml", + "ref/dotnet/ja/System.Reflection.xml", + "ref/dotnet/ko/System.Reflection.xml", + "ref/dotnet/ru/System.Reflection.xml", + "ref/dotnet/System.Reflection.dll", + "ref/dotnet/System.Reflection.xml", + "ref/dotnet/zh-hans/System.Reflection.xml", + "ref/dotnet/zh-hant/System.Reflection.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23109.nupkg", + "System.Reflection.4.0.10-beta-23109.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "sha512": "H8QtiSXFHNiQIPZe3PdNJPIjuH9O/A8+/52bw2RIKgV8rMrshmi2LufTvYCb+V5YPBFYWg2Yt8nRISEY4+uV5Q==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/de/System.Reflection.Emit.xml", + "ref/dotnet/es/System.Reflection.Emit.xml", + "ref/dotnet/fr/System.Reflection.Emit.xml", + "ref/dotnet/it/System.Reflection.Emit.xml", + "ref/dotnet/ja/System.Reflection.Emit.xml", + "ref/dotnet/ko/System.Reflection.Emit.xml", + "ref/dotnet/ru/System.Reflection.Emit.xml", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.xml", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "sha512": "tJO27blFXyvYwDLbK7GvgFC94XjeY6MnRitBI4w8LHfEc/gVdRmCC8gzkE8KEmkecnIWIt9VTSJ3p4lGgafKKA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/wp80/_._", + "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/net45/_._", + "ref/wp80/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "sXo3+qJ7TukCF/rDFYKjEog4iVb75dXJztu/lkvhMHgYnviPSbi9zg78FQUFhB6BOvntwnknrgNJhhtl3x9a7A==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Extensions.xml", + "ref/dotnet/es/System.Reflection.Extensions.xml", + "ref/dotnet/fr/System.Reflection.Extensions.xml", + "ref/dotnet/it/System.Reflection.Extensions.xml", + "ref/dotnet/ja/System.Reflection.Extensions.xml", + "ref/dotnet/ko/System.Reflection.Extensions.xml", + "ref/dotnet/ru/System.Reflection.Extensions.xml", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/dotnet/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "R5oBDNgUtSV9KTPCxwHWiTyryX/9mngnPbLWwFOEF5xcNd3Qlu6/3LiauGsIzGtXV8vOpRl9tfyIFy8t4ix4Gw==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Primitives.xml", + "ref/dotnet/es/System.Reflection.Primitives.xml", + "ref/dotnet/fr/System.Reflection.Primitives.xml", + "ref/dotnet/it/System.Reflection.Primitives.xml", + "ref/dotnet/ja/System.Reflection.Primitives.xml", + "ref/dotnet/ko/System.Reflection.Primitives.xml", + "ref/dotnet/ru/System.Reflection.Primitives.xml", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "lTuPMxeoT/Jqb1QtsIuSomLiJpQP3Y4DqqxLPncrMvLrejwdF25QSbhXdx5twgvBDqwSVL8wYtqiOqKe02u7FA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/de/System.Reflection.TypeExtensions.xml", + "ref/dotnet/es/System.Reflection.TypeExtensions.xml", + "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", + "ref/dotnet/it/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "6usAb6nZEPKugl3z5JR/RZrouH5/340n3tM0lhRfxVE/k3B3Sfh/sHSPiAOorrZgGm4cIDDhXTCGJQSWYphu3g==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/de/System.Runtime.xml", + "ref/dotnet/es/System.Runtime.xml", + "ref/dotnet/fr/System.Runtime.xml", + "ref/dotnet/it/System.Runtime.xml", + "ref/dotnet/ja/System.Runtime.xml", + "ref/dotnet/ko/System.Runtime.xml", + "ref/dotnet/ru/System.Runtime.xml", + "ref/dotnet/System.Runtime.dll", + "ref/dotnet/System.Runtime.xml", + "ref/dotnet/zh-hans/System.Runtime.xml", + "ref/dotnet/zh-hant/System.Runtime.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23109.nupkg", + "System.Runtime.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "JkRMtSY5YFGhP9eY7ZFIj40Ha5lGOwSxrk90k0ZAuIFn6qEPNe0NKu/C8laV7Cqy4Lv5IYzkVUGrfOqg3MOG9A==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/de/System.Runtime.Extensions.xml", + "ref/dotnet/es/System.Runtime.Extensions.xml", + "ref/dotnet/fr/System.Runtime.Extensions.xml", + "ref/dotnet/it/System.Runtime.Extensions.xml", + "ref/dotnet/ja/System.Runtime.Extensions.xml", + "ref/dotnet/ko/System.Runtime.Extensions.xml", + "ref/dotnet/ru/System.Runtime.Extensions.xml", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "XfjBv5hxBDVXvgPzBXiMpHprnmd5trdBAG4o7DEi/3GPXIlety4G0sfmlxeiTr7njKr0wF4ERdLIfzPesS5PAw==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "fxRLTR5kbqOZuSeT5ggVBYc6HIEGmEwh+Uw1ijp2qD3yMiMPmxvtI5aP5t0yZHEmwUrB37lGB+oaPpcXLH5Feg==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/de/System.Runtime.InteropServices.xml", + "ref/dotnet/es/System.Runtime.InteropServices.xml", + "ref/dotnet/fr/System.Runtime.InteropServices.xml", + "ref/dotnet/it/System.Runtime.InteropServices.xml", + "ref/dotnet/ja/System.Runtime.InteropServices.xml", + "ref/dotnet/ko/System.Runtime.InteropServices.xml", + "ref/dotnet/ru/System.Runtime.InteropServices.xml", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Security.Claims/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6oI/9RzVy/6AVHRzuSm9oOOm3O/iS+pWDby0YTuepAtW7aT1VZiYbar0Nzi7wUJLIE+EuUWgGUgVQni0inIUSw==", + "files": [ + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/de/System.Security.Claims.xml", + "ref/dotnet/es/System.Security.Claims.xml", + "ref/dotnet/fr/System.Security.Claims.xml", + "ref/dotnet/it/System.Security.Claims.xml", + "ref/dotnet/ja/System.Security.Claims.xml", + "ref/dotnet/ko/System.Security.Claims.xml", + "ref/dotnet/ru/System.Security.Claims.xml", + "ref/dotnet/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.xml", + "ref/dotnet/zh-hans/System.Security.Claims.xml", + "ref/dotnet/zh-hant/System.Security.Claims.xml", + "ref/net46/System.Security.Claims.dll", + "System.Security.Claims.4.0.0-beta-23109.nupkg", + "System.Security.Claims.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Lewf25aZTItYvFz8RtCFdNAniNQ737gkTPU9IObuzbOeX8MMGHRf9Le4AQ2SdkTTTljjhebGybF5KCKZ784DLA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/de/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/es/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/fr/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/it/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/ja/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/ko/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/ru/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Encryption.xml", + "ref/net46/System.Security.Cryptography.Encryption.dll", + "System.Security.Cryptography.Encryption.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "cFQ8ewUVBb/bv2EbH64xNjmyLo1OmWGsrj4dbHDrdm+Huu2yGvsF/sdPTtHacX7cAi5iyJIv7tT3h149rQHlhg==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/de/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/es/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/fr/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/it/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/ja/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/ko/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/ru/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Hashing.xml", + "ref/net46/System.Security.Cryptography.Hashing.dll", + "System.Security.Cryptography.Hashing.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "nwFw1zaKhA82wYjIrAQdB67ap7SnH4OThYrEG6TYgX4UJyMIxG24pegcs8aaWupAUozmLXpDVOmtAkV6oL1LBQ==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/de/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/es/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/fr/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/it/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/ja/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/ko/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/ru/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "eBEb851icqj4elt5iPbiO6cnLflOWr0tRRHEq/ekxr1P2zNkI2TntVWC+lu5MOYgRj92XRNt2H+pCootjKruMw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/de/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/es/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/fr/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/it/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/ja/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/ko/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/ru/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec" + ] + }, + "System.Security.Principal/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "j94G8UrhEtW+RigEzZkayd9fcT9v/J35/V+rGzm6vmRjLE4e12+jwFUqFC9ZowElO4ZqaCoBgxu7uogHRmrKbQ==", + "files": [ + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Security.Principal.xml", + "ref/dotnet/es/System.Security.Principal.xml", + "ref/dotnet/fr/System.Security.Principal.xml", + "ref/dotnet/it/System.Security.Principal.xml", + "ref/dotnet/ja/System.Security.Principal.xml", + "ref/dotnet/ko/System.Security.Principal.xml", + "ref/dotnet/ru/System.Security.Principal.xml", + "ref/dotnet/System.Security.Principal.dll", + "ref/dotnet/System.Security.Principal.xml", + "ref/dotnet/zh-hans/System.Security.Principal.xml", + "ref/dotnet/zh-hant/System.Security.Principal.xml", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Security.Principal.4.0.0-beta-23109.nupkg", + "System.Security.Principal.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "/u7MPH/6bERVU88hsQJFoxva/OnPcS5fUrzj8OWH016zKnUElOVq76GoUdghmN5HCAmRpjqmryvZLt8+b2mrjQ==", + "files": [ + "lib/DNXCore50/System.Security.Principal.Windows.dll", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/dotnet/de/System.Security.Principal.Windows.xml", + "ref/dotnet/es/System.Security.Principal.Windows.xml", + "ref/dotnet/fr/System.Security.Principal.Windows.xml", + "ref/dotnet/it/System.Security.Principal.Windows.xml", + "ref/dotnet/ja/System.Security.Principal.Windows.xml", + "ref/dotnet/ko/System.Security.Principal.Windows.xml", + "ref/dotnet/ru/System.Security.Principal.Windows.xml", + "ref/dotnet/System.Security.Principal.Windows.dll", + "ref/dotnet/System.Security.Principal.Windows.xml", + "ref/dotnet/zh-hans/System.Security.Principal.Windows.xml", + "ref/dotnet/zh-hant/System.Security.Principal.Windows.xml", + "ref/net46/System.Security.Principal.Windows.dll", + "System.Security.Principal.Windows.4.0.0-beta-23109.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Principal.Windows.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "sha512": "oymPt96KPPXO/Scxow+x8cKczVw0KXfExKTXQlwT+j3sS1j/JuV+rZq2sQ54fqOi2R4d9aFPESsoN830sA6VCw==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/de/System.Text.Encoding.xml", + "ref/dotnet/es/System.Text.Encoding.xml", + "ref/dotnet/fr/System.Text.Encoding.xml", + "ref/dotnet/it/System.Text.Encoding.xml", + "ref/dotnet/ja/System.Text.Encoding.xml", + "ref/dotnet/ko/System.Text.Encoding.xml", + "ref/dotnet/ru/System.Text.Encoding.xml", + "ref/dotnet/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "PoB/L0tth9mKUS1ky1LQVd+nniazNmnhbzmPZL+US+06QvQRhZlpZfUR+WN2ssWYpHFiL4Zt30lzf4qEiTBP4w==", + "files": [ + "lib/dotnet/System.Text.Encoding.CodePages.dll", + "ref/dotnet/de/System.Text.Encoding.CodePages.xml", + "ref/dotnet/es/System.Text.Encoding.CodePages.xml", + "ref/dotnet/fr/System.Text.Encoding.CodePages.xml", + "ref/dotnet/it/System.Text.Encoding.CodePages.xml", + "ref/dotnet/ja/System.Text.Encoding.CodePages.xml", + "ref/dotnet/ko/System.Text.Encoding.CodePages.xml", + "ref/dotnet/ru/System.Text.Encoding.CodePages.xml", + "ref/dotnet/System.Text.Encoding.CodePages.dll", + "ref/dotnet/System.Text.Encoding.CodePages.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.CodePages.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.CodePages.xml", + "System.Text.Encoding.CodePages.4.0.0-beta-23109.nupkg", + "System.Text.Encoding.CodePages.4.0.0-beta-23109.nupkg.sha512", + "System.Text.Encoding.CodePages.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "sha512": "F6GZqICZ654MsqVPCL8h+fvDZJmXnu1I1PYY9686yG+lbcZzs9aavqMUjv1Lu5wOdiTKnmn7LADZYzPD6y1p+w==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/de/System.Text.Encoding.Extensions.xml", + "ref/dotnet/es/System.Text.Encoding.Extensions.xml", + "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", + "ref/dotnet/it/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "F+tfzB34KhZnjS3ActdL57CQVD9oYGhAZm8AREL+KvbJTh1Y8/tlyCyI2xoH6KdJzIPcXC50yu4OkHNbpcutEw==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Text.RegularExpressions.xml", + "ref/dotnet/es/System.Text.RegularExpressions.xml", + "ref/dotnet/fr/System.Text.RegularExpressions.xml", + "ref/dotnet/it/System.Text.RegularExpressions.xml", + "ref/dotnet/ja/System.Text.RegularExpressions.xml", + "ref/dotnet/ko/System.Text.RegularExpressions.xml", + "ref/dotnet/ru/System.Text.RegularExpressions.xml", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/dotnet/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "TSViw+K20yh9DmwzZpvuCUc2m2ju1eVAJ10pTw2gB/aP4kkrX2nGf4A9BkwkxupPXFA2OtO9LbbEqdp4YbBnjQ==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/de/System.Threading.xml", + "ref/dotnet/es/System.Threading.xml", + "ref/dotnet/fr/System.Threading.xml", + "ref/dotnet/it/System.Threading.xml", + "ref/dotnet/ja/System.Threading.xml", + "ref/dotnet/ko/System.Threading.xml", + "ref/dotnet/ru/System.Threading.xml", + "ref/dotnet/System.Threading.dll", + "ref/dotnet/System.Threading.xml", + "ref/dotnet/zh-hans/System.Threading.xml", + "ref/dotnet/zh-hant/System.Threading.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23109.nupkg", + "System.Threading.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "IMVmv9x4lBiy+jz31dU7KT/aTDlKZabAEDFAxQOTv//v1RYu5XZXZLIiTZqyVUKxxHgB0PUnuSDl5VxUDKysfQ==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/de/System.Threading.Overlapped.xml", + "ref/dotnet/es/System.Threading.Overlapped.xml", + "ref/dotnet/fr/System.Threading.Overlapped.xml", + "ref/dotnet/it/System.Threading.Overlapped.xml", + "ref/dotnet/ja/System.Threading.Overlapped.xml", + "ref/dotnet/ko/System.Threading.Overlapped.xml", + "ref/dotnet/ru/System.Threading.Overlapped.xml", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "J7lBqLLy1A85KZUgFz0fS8u6BO+pnWun2OAkrNqcUQbgCiKDC9v92u9q6a6AB9znum+GCdzH3cyEftNtIVNd1Q==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/de/System.Threading.Tasks.xml", + "ref/dotnet/es/System.Threading.Tasks.xml", + "ref/dotnet/fr/System.Threading.Tasks.xml", + "ref/dotnet/it/System.Threading.Tasks.xml", + "ref/dotnet/ja/System.Threading.Tasks.xml", + "ref/dotnet/ko/System.Threading.Tasks.xml", + "ref/dotnet/ru/System.Threading.Tasks.xml", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.xml", + "ref/dotnet/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet/zh-hant/System.Threading.Tasks.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23109": { + "sha512": "pOob5Fz4cRJ/bfBs2+ehmS99VGCN5Ei2mf7bl17STagcDGHUZBAzVLz8Kamq0hwQGX2pCFkuUZH+2Ycdts2PSQ==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/de/System.Threading.Thread.xml", + "ref/dotnet/es/System.Threading.Thread.xml", + "ref/dotnet/fr/System.Threading.Thread.xml", + "ref/dotnet/it/System.Threading.Thread.xml", + "ref/dotnet/ja/System.Threading.Thread.xml", + "ref/dotnet/ko/System.Threading.Thread.xml", + "ref/dotnet/ru/System.Threading.Thread.xml", + "ref/dotnet/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.xml", + "ref/dotnet/zh-hans/System.Threading.Thread.xml", + "ref/dotnet/zh-hant/System.Threading.Thread.xml", + "ref/net46/System.Threading.Thread.dll", + "System.Threading.Thread.4.0.0-beta-23109.nupkg", + "System.Threading.Thread.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-22231": { + "sha512": "zYgXCszwAYovpJu6m+BX4xayCtL0sLy1mFIvjIRmur0zPc2Luv1jVVTY4GTTeXO5OSvN5UIjt50l6Nk4jnzsHw==", + "files": [ + "lib/aspnetcore50/System.Threading.ThreadPool.dll", + "lib/contract/System.Threading.ThreadPool.dll", + "License.rtf", + "System.Threading.ThreadPool.4.0.10-beta-22231.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-22231.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.0-beta-23109": { + "sha512": "m0IORsRdO5kQqdA3C1EGLvD3NPaAj+B0FaM0KnAj0Cxg53baGGmYpNwh6mPf4sB8Pl4VBUtVaxlLN18MuyNQKQ==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Threading.Timer.xml", + "ref/dotnet/es/System.Threading.Timer.xml", + "ref/dotnet/fr/System.Threading.Timer.xml", + "ref/dotnet/it/System.Threading.Timer.xml", + "ref/dotnet/ja/System.Threading.Timer.xml", + "ref/dotnet/ko/System.Threading.Timer.xml", + "ref/dotnet/ru/System.Threading.Timer.xml", + "ref/dotnet/System.Threading.Timer.dll", + "ref/dotnet/System.Threading.Timer.xml", + "ref/dotnet/zh-hans/System.Threading.Timer.xml", + "ref/dotnet/zh-hant/System.Threading.Timer.xml", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/win81/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.0-beta-23109.nupkg", + "System.Threading.Timer.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.0-beta-23109": { + "sha512": "cQIEOYonUzE8EfK/T0Klw1AaxB2BrVGVqYZNSkfmqRgHBuwtAQBjngbVjWSD6MSM6uaRxm0UUUBB9l/sUmiuug==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Xml.ReaderWriter.xml", + "ref/dotnet/es/System.Xml.ReaderWriter.xml", + "ref/dotnet/fr/System.Xml.ReaderWriter.xml", + "ref/dotnet/it/System.Xml.ReaderWriter.xml", + "ref/dotnet/ja/System.Xml.ReaderWriter.xml", + "ref/dotnet/ko/System.Xml.ReaderWriter.xml", + "ref/dotnet/ru/System.Xml.ReaderWriter.xml", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/dotnet/System.Xml.ReaderWriter.xml", + "ref/dotnet/zh-hans/System.Xml.ReaderWriter.xml", + "ref/dotnet/zh-hant/System.Xml.ReaderWriter.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Xml.ReaderWriter.4.0.0-beta-23109.nupkg", + "System.Xml.ReaderWriter.4.0.0-beta-23109.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "EntityFramework.Relational.Design >= 7.0.0-beta6", + "EntityFramework.SqlServer >= 7.0.0-beta6" + ], + ".NETFramework,Version=v4.5": [], + "DNXCore,Version=v5.0": [] + } +} \ No newline at end of file diff --git a/src/EntityFramework.SqlServer/project.json b/src/EntityFramework.SqlServer/project.json index 20eef492b3b..e2fbe59bd27 100644 --- a/src/EntityFramework.SqlServer/project.json +++ b/src/EntityFramework.SqlServer/project.json @@ -1,28 +1,28 @@ { - "version": "7.0.0-*", - "description": "Microsoft SQL Server data store for Entity Framework.", - "repository": { - "type": "git", - "url": "git://github.com/aspnet/entityframework" - }, - "compilationOptions": { - "warningsAsErrors": true - }, - "dependencies": { - "EntityFramework.Relational": "7.0.0-*" - }, - "compile": "..\\Shared\\*.cs", - "namedResource": { - "EntityFramework.SqlServer.Strings": "Properties/Strings.resx" - }, - "frameworks": { - "net45": { }, - "dnxcore50": { - "dependencies": { - "System.Data.SqlClient": "4.0.0-*", - "System.Text.Encoding.CodePages": "4.0.0-*", - "System.Threading.Thread": "4.0.0-*" - } + "version": "7.0.0-beta6", + "description": "Microsoft SQL Server data store for Entity Framework.", + "repository": { + "type": "git", + "url": "git://github.com/aspnet/entityframework" + }, + "compilationOptions": { + "warningsAsErrors": true + }, + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6" + }, + "compile": "..\\Shared\\*.cs", + "namedResource": { + "EntityFramework.SqlServer.Strings": "Properties/Strings.resx" + }, + "frameworks": { + "net45": {}, + "dnxcore50": { + "dependencies": { + "System.Data.SqlClient": "4.0.0-beta-23109", + "System.Text.Encoding.CodePages": "4.0.0-beta-23109", + "System.Threading.Thread": "4.0.0-beta-23109" + } + } } - } -} +} \ No newline at end of file diff --git a/src/EntityFramework.SqlServer/project.lock.json b/src/EntityFramework.SqlServer/project.lock.json new file mode 100644 index 00000000000..6a49d14ea33 --- /dev/null +++ b/src/EntityFramework.SqlServer/project.lock.json @@ -0,0 +1,2985 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.5": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.SqlServer.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + } + }, + "DNXCore,Version=v5.0": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Collections.Immutable": "1.1.37-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.ComponentModel.Annotations": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Queryable": "4.0.0-beta-23109", + "System.ObjectModel": "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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6", + "Microsoft.CSharp": "4.0.0-beta-23109", + "System.Data.Common": "4.0.0-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Relational.dll": {} + } + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6", + "System.Data.SqlClient": "4.0.0-beta-23109", + "System.Text.Encoding.CodePages": "4.0.0-beta-23109", + "System.Threading.Thread": "4.0.0-beta-23109" + }, + "compile": { + "lib/dnxcore50/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/dnxcore50/EntityFramework.SqlServer.dll": {} + } + }, + "Ix-Async/1.2.4": { + "compile": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + } + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Dynamic.Runtime": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.10-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.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Linq": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.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.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tracing": "4.0.20-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.Data.Common/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Data.Common.dll": {} + }, + "runtime": { + "lib/dotnet/System.Data.Common.dll": {} + } + }, + "System.Data.SqlClient/4.0.0-beta-23109": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23109", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.0-beta-23109", + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.Data.Common": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "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.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.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Security.Principal.Windows": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.CodePages": "4.0.0-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109", + "System.Threading.Thread": "4.0.0-beta-23109", + "System.Threading.ThreadPool": "4.0.0-beta-23109", + "System.Threading.Timer": "4.0.0-beta-23109", + "System.Xml.ReaderWriter": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Data.SqlClient.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Data.SqlClient.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.0-beta-23109": { + "dependencies": { + "System.Linq.Expressions": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.IO/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Overlapped": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit": "4.0.0-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "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.ObjectModel/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23109": { + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23109": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Security.Principal": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Claims": "4.0.0-beta-23109", + "System.Security.Principal": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.CodePages/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.Encoding.CodePages.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-22231": { + "dependencies": { + "System.Runtime": "4.0.0-beta-22231", + "System.Runtime.InteropServices": "4.0.0-beta-22231" + }, + "compile": { + "lib/contract/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/aspnetcore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "EntityFramework.Relational/7.0.0-beta6": { + "serviceable": true, + "sha512": "2CVE3UZjzXDRFYyfVL0lePnK1t2ZyLexNE88SiuUhY4mPC5SOWmDZ7mhLvtXeVJL/7PBpEmDy0qSDZRBpJ/Kiw==", + "files": [ + "EntityFramework.Relational.7.0.0-beta6.nupkg", + "EntityFramework.Relational.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Relational.nuspec", + "lib/dotnet/EntityFramework.Relational.dll", + "lib/dotnet/EntityFramework.Relational.xml", + "lib/net45/EntityFramework.Relational.dll", + "lib/net45/EntityFramework.Relational.xml", + "repo.json" + ] + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "serviceable": true, + "sha512": "69BvxKYVxgO/LK5YTKo9iuK4rt2/ystXVWdHfl3JaZ8DASB+UTacNNDDYeHuo2ZqQCv523AZSReuBGZ5reGBOg==", + "files": [ + "EntityFramework.SqlServer.7.0.0-beta6.nupkg", + "EntityFramework.SqlServer.7.0.0-beta6.nupkg.sha512", + "EntityFramework.SqlServer.nuspec", + "lib/dnxcore50/EntityFramework.SqlServer.dll", + "lib/dnxcore50/EntityFramework.SqlServer.xml", + "lib/net45/EntityFramework.SqlServer.dll", + "lib/net45/EntityFramework.SqlServer.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "MO4Lu8aMS1vL4Omp/gIMl2hr4sdV1l99p6xhAExGnS3MlFEa5JYPDL5mpdeg/osDH+1gAhb11xMJTYP7Ya3cAA==", + "files": [ + "lib/dotnet/Microsoft.CSharp.dll", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg.sha512", + "Microsoft.CSharp.nuspec", + "ref/dotnet/de/Microsoft.CSharp.xml", + "ref/dotnet/es/Microsoft.CSharp.xml", + "ref/dotnet/fr/Microsoft.CSharp.xml", + "ref/dotnet/it/Microsoft.CSharp.xml", + "ref/dotnet/ja/Microsoft.CSharp.xml", + "ref/dotnet/ko/Microsoft.CSharp.xml", + "ref/dotnet/Microsoft.CSharp.dll", + "ref/dotnet/Microsoft.CSharp.xml", + "ref/dotnet/ru/Microsoft.CSharp.xml", + "ref/dotnet/zh-hans/Microsoft.CSharp.xml", + "ref/dotnet/zh-hant/Microsoft.CSharp.xml", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "GsSRwzgrK2WJHUyd83AtKEX+Hv8ecmnwerJzinTXNqddsI48ClaeAyBgUnvRh5e/R8zzfIFqSHD1iEXSOSjAgQ==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23109.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23109.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/de/Microsoft.Win32.Primitives.xml", + "ref/dotnet/es/Microsoft.Win32.Primitives.xml", + "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", + "ref/dotnet/it/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "2/VX+2QEyyIpvGDzuIXX8V0vSl/Llt673DR48nNmeA6BoMuwL4Eu4F1Meh9fPp80nhcjifqVK8g7/UQDn/0PFw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23109.nupkg", + "System.Collections.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "fRXR5y4dg9zPovFpSQZkc6gnyMNlQJVQ8lKqPDPFSIelhqWxv2VyY87s5Vd9ViGwKrFwekDwCQFug9ny8qCHuA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Collections.Concurrent.xml", + "ref/dotnet/es/System.Collections.Concurrent.xml", + "ref/dotnet/fr/System.Collections.Concurrent.xml", + "ref/dotnet/it/System.Collections.Concurrent.xml", + "ref/dotnet/ja/System.Collections.Concurrent.xml", + "ref/dotnet/ko/System.Collections.Concurrent.xml", + "ref/dotnet/ru/System.Collections.Concurrent.xml", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/dotnet/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Z+VGG3YaL4PxuBn/Nbjul1OoaCBzvkylexTwIW6s8arj3c17XkCeJvZ1BIn66lzDpAQYMGZmv97UMT6OboRoVg==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/de/System.Collections.NonGeneric.xml", + "ref/dotnet/es/System.Collections.NonGeneric.xml", + "ref/dotnet/fr/System.Collections.NonGeneric.xml", + "ref/dotnet/it/System.Collections.NonGeneric.xml", + "ref/dotnet/ja/System.Collections.NonGeneric.xml", + "ref/dotnet/ko/System.Collections.NonGeneric.xml", + "ref/dotnet/ru/System.Collections.NonGeneric.xml", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", + "ref/net46/System.Collections.NonGeneric.dll", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "JFzHUvX28tQbud0c9AP+SFeOroBG9x7tgc0OYu0Z5nQotnIiwP5nHXq9DoK3N2y0MoRUt8jy2FwkRMAYgiQuNQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.ComponentModel.xml", + "ref/dotnet/es/System.ComponentModel.xml", + "ref/dotnet/fr/System.ComponentModel.xml", + "ref/dotnet/it/System.ComponentModel.xml", + "ref/dotnet/ja/System.ComponentModel.xml", + "ref/dotnet/ko/System.ComponentModel.xml", + "ref/dotnet/ru/System.ComponentModel.xml", + "ref/dotnet/System.ComponentModel.dll", + "ref/dotnet/System.ComponentModel.xml", + "ref/dotnet/zh-hans/System.ComponentModel.xml", + "ref/dotnet/zh-hant/System.ComponentModel.xml", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.0-beta-23109.nupkg", + "System.ComponentModel.4.0.0-beta-23109.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "tfq+u00KcRXrvtYS4v7Bi4NgfFXt0sx5IgqqgeWCOFtwhDTVWgL3XJN/lanFtANnG7+zVU3+B5mvjH1pblGHxg==", + "files": [ + "lib/dotnet/System.ComponentModel.Annotations.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ComponentModel.Annotations.xml", + "ref/dotnet/es/System.ComponentModel.Annotations.xml", + "ref/dotnet/fr/System.ComponentModel.Annotations.xml", + "ref/dotnet/it/System.ComponentModel.Annotations.xml", + "ref/dotnet/ja/System.ComponentModel.Annotations.xml", + "ref/dotnet/ko/System.ComponentModel.Annotations.xml", + "ref/dotnet/ru/System.ComponentModel.Annotations.xml", + "ref/dotnet/System.ComponentModel.Annotations.dll", + "ref/dotnet/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", + "ref/net46/_._", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg.sha512", + "System.ComponentModel.Annotations.nuspec" + ] + }, + "System.Data.Common/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "oWJT16F9TqEP1dQDNZUSuJ1gH17YyR8wTD+zfz03oflnAUWlyH2QM/px/X10GPZAn9Qz58EYR/maNzJIX9FSOA==", + "files": [ + "lib/dotnet/System.Data.Common.dll", + "lib/net46/System.Data.Common.dll", + "ref/dotnet/de/System.Data.Common.xml", + "ref/dotnet/es/System.Data.Common.xml", + "ref/dotnet/fr/System.Data.Common.xml", + "ref/dotnet/it/System.Data.Common.xml", + "ref/dotnet/ja/System.Data.Common.xml", + "ref/dotnet/ko/System.Data.Common.xml", + "ref/dotnet/ru/System.Data.Common.xml", + "ref/dotnet/System.Data.Common.dll", + "ref/dotnet/System.Data.Common.xml", + "ref/dotnet/zh-hans/System.Data.Common.xml", + "ref/dotnet/zh-hant/System.Data.Common.xml", + "ref/net46/System.Data.Common.dll", + "System.Data.Common.4.0.0-beta-23109.nupkg", + "System.Data.Common.4.0.0-beta-23109.nupkg.sha512", + "System.Data.Common.nuspec" + ] + }, + "System.Data.SqlClient/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "c56D/dcp+BS22hpnZs8zfUBA0PAs9ftJp7IYLY8b1or798Rl+oT5swf/R8bs2rbeG0cE4Dq7ixr0dm5YdANVxQ==", + "files": [ + "lib/DNXCore50/System.Data.SqlClient.dll", + "lib/net46/System.Data.SqlClient.dll", + "ref/dotnet/de/System.Data.SqlClient.xml", + "ref/dotnet/es/System.Data.SqlClient.xml", + "ref/dotnet/fr/System.Data.SqlClient.xml", + "ref/dotnet/it/System.Data.SqlClient.xml", + "ref/dotnet/ja/System.Data.SqlClient.xml", + "ref/dotnet/ko/System.Data.SqlClient.xml", + "ref/dotnet/ru/System.Data.SqlClient.xml", + "ref/dotnet/System.Data.SqlClient.dll", + "ref/dotnet/System.Data.SqlClient.xml", + "ref/dotnet/zh-hans/System.Data.SqlClient.xml", + "ref/dotnet/zh-hant/System.Data.SqlClient.xml", + "ref/net46/System.Data.SqlClient.dll", + "runtime.json", + "System.Data.SqlClient.4.0.0-beta-23109.nupkg", + "System.Data.SqlClient.4.0.0-beta-23109.nupkg.sha512", + "System.Data.SqlClient.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "woJsNwCtAqYac5zp+6Wy40HAp7kYr8zhaFvHl3gECjQf+VGeGYaHgDV1ATVcyMG1h6XvmX0wtmD5Qds51CRJoA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6tFdP3p3SV6DZOagwW5ThfUF+zp5pUIyW4CY2K4B2RxV6HGVyY/8J2EuZGrcEP3wdO5fXnb9MmdOZa5Tn01Hmg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Diagnostics.Tools.xml", + "ref/dotnet/es/System.Diagnostics.Tools.xml", + "ref/dotnet/fr/System.Diagnostics.Tools.xml", + "ref/dotnet/it/System.Diagnostics.Tools.xml", + "ref/dotnet/ja/System.Diagnostics.Tools.xml", + "ref/dotnet/ko/System.Diagnostics.Tools.xml", + "ref/dotnet/ru/System.Diagnostics.Tools.xml", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/dotnet/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "sNauLSBFewFLjULHeplEr7FCmmfPbcc1jfz1Mynjy445bYiP/IW1q9X14a//oV/uQG7p82S9qHyfPxoxmt3pxQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/de/System.Diagnostics.Tracing.xml", + "ref/dotnet/es/System.Diagnostics.Tracing.xml", + "ref/dotnet/fr/System.Diagnostics.Tracing.xml", + "ref/dotnet/it/System.Diagnostics.Tracing.xml", + "ref/dotnet/ja/System.Diagnostics.Tracing.xml", + "ref/dotnet/ko/System.Diagnostics.Tracing.xml", + "ref/dotnet/ru/System.Diagnostics.Tracing.xml", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.0-beta-23109": { + "sha512": "nH2j/mWRcUME1Tz9tFXhf6zWGRVW5a5M+2bMG5GvudHv0SrbwfPGQBqwYCm5n1uQu68K1C59evXEq8BoMdXlcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Dynamic.Runtime.xml", + "ref/dotnet/es/System.Dynamic.Runtime.xml", + "ref/dotnet/fr/System.Dynamic.Runtime.xml", + "ref/dotnet/it/System.Dynamic.Runtime.xml", + "ref/dotnet/ja/System.Dynamic.Runtime.xml", + "ref/dotnet/ko/System.Dynamic.Runtime.xml", + "ref/dotnet/ru/System.Dynamic.Runtime.xml", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.xml", + "ref/dotnet/zh-hans/System.Dynamic.Runtime.xml", + "ref/dotnet/zh-hant/System.Dynamic.Runtime.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Dynamic.Runtime.4.0.0-beta-23109.nupkg", + "System.Dynamic.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23109": { + "sha512": "l4QNrgLmC4KHGLcfriJ2EmsM2j18xefJzCnLU6YqVdBFaYzsJGwqmHyIr4nqw9DBjdWEtzdHLEbvpLeEay0ZWQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23109.nupkg", + "System.Globalization.4.0.10-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.IO/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "DVHSyfJO8mC9CpZFjjuaOWazALkWFnI6b/fqTQCjNe1dp2XasuvTRiV/qIOJB+uyDVex8sH8QMRUDS6ukimyLA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/de/System.IO.xml", + "ref/dotnet/es/System.IO.xml", + "ref/dotnet/fr/System.IO.xml", + "ref/dotnet/it/System.IO.xml", + "ref/dotnet/ja/System.IO.xml", + "ref/dotnet/ko/System.IO.xml", + "ref/dotnet/ru/System.IO.xml", + "ref/dotnet/System.IO.dll", + "ref/dotnet/System.IO.xml", + "ref/dotnet/zh-hans/System.IO.xml", + "ref/dotnet/zh-hant/System.IO.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23109.nupkg", + "System.IO.4.0.10-beta-23109.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "OusDe4B1/Q3BYY4QzNfztnyPPK9a1OGsQVZBg41C1bk8F2S3AOtXCx0GUwAfKbVxxS4dOdIgxWw1JN5m+IlpAA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/de/System.IO.FileSystem.xml", + "ref/dotnet/es/System.IO.FileSystem.xml", + "ref/dotnet/fr/System.IO.FileSystem.xml", + "ref/dotnet/it/System.IO.FileSystem.xml", + "ref/dotnet/ja/System.IO.FileSystem.xml", + "ref/dotnet/ko/System.IO.FileSystem.xml", + "ref/dotnet/ru/System.IO.FileSystem.xml", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.xml", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "1JFc6+hsLnlYgACgluhMi19zFkNruPgWoLDq30z7qMKgs3FZqShvXDZLTQ1Hk+cnenUoUU/8P8yRdmbdQaf4yg==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "cy+sQJW809QnFHIXt5Y/If45u362gwiNqHldnJS70l7VCjyR4Bo3UgZMZl+bowSupWxqXk69cwCQhRUyFu2hVw==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/de/System.Linq.Expressions.xml", + "ref/dotnet/es/System.Linq.Expressions.xml", + "ref/dotnet/fr/System.Linq.Expressions.xml", + "ref/dotnet/it/System.Linq.Expressions.xml", + "ref/dotnet/ja/System.Linq.Expressions.xml", + "ref/dotnet/ko/System.Linq.Expressions.xml", + "ref/dotnet/ru/System.Linq.Expressions.xml", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.xml", + "ref/dotnet/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet/zh-hant/System.Linq.Expressions.xml", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Mu6nIhw5k/zAMigeCh4aqma3kwXLoyPREVD6RxVPhGu2QJjAEeih0GWumoDjtdFp0B5Q6sYeakWDAds7NmzWQg==", + "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.ObjectModel/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "mnrhXE8nT5mX/ndEJ5BsdLCgN6CofKiwQvr9Olsp/s3crY5/lXYM73N2bNSvsFcHD1o0XhaCOn18Vekv6SYTpg==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ObjectModel.xml", + "ref/dotnet/es/System.ObjectModel.xml", + "ref/dotnet/fr/System.ObjectModel.xml", + "ref/dotnet/it/System.ObjectModel.xml", + "ref/dotnet/ja/System.ObjectModel.xml", + "ref/dotnet/ko/System.ObjectModel.xml", + "ref/dotnet/ru/System.ObjectModel.xml", + "ref/dotnet/System.ObjectModel.dll", + "ref/dotnet/System.ObjectModel.xml", + "ref/dotnet/zh-hans/System.ObjectModel.xml", + "ref/dotnet/zh-hant/System.ObjectModel.xml", + "ref/net46/_._", + "System.ObjectModel.4.0.10-beta-23109.nupkg", + "System.ObjectModel.4.0.10-beta-23109.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "y6M7TxwDXBD2in5cCf+KzucZyx7YE7SJMcU24atzYnpwP2xFASUYCeI6NRg5bYcw2Do5HKBz+XdE9WiZrwpnFg==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23109.nupkg", + "System.Private.Uri.4.0.0-beta-23109.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23109": { + "sha512": "aeXO8gjPb46LaP727cXDcCZ2mZoMxguq2UhE25wJoO1Je8Q8D2JFonNk85oVlgXCdEM6XgrtRnsnhvj8PmTBNg==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/de/System.Reflection.xml", + "ref/dotnet/es/System.Reflection.xml", + "ref/dotnet/fr/System.Reflection.xml", + "ref/dotnet/it/System.Reflection.xml", + "ref/dotnet/ja/System.Reflection.xml", + "ref/dotnet/ko/System.Reflection.xml", + "ref/dotnet/ru/System.Reflection.xml", + "ref/dotnet/System.Reflection.dll", + "ref/dotnet/System.Reflection.xml", + "ref/dotnet/zh-hans/System.Reflection.xml", + "ref/dotnet/zh-hant/System.Reflection.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23109.nupkg", + "System.Reflection.4.0.10-beta-23109.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "sha512": "H8QtiSXFHNiQIPZe3PdNJPIjuH9O/A8+/52bw2RIKgV8rMrshmi2LufTvYCb+V5YPBFYWg2Yt8nRISEY4+uV5Q==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/de/System.Reflection.Emit.xml", + "ref/dotnet/es/System.Reflection.Emit.xml", + "ref/dotnet/fr/System.Reflection.Emit.xml", + "ref/dotnet/it/System.Reflection.Emit.xml", + "ref/dotnet/ja/System.Reflection.Emit.xml", + "ref/dotnet/ko/System.Reflection.Emit.xml", + "ref/dotnet/ru/System.Reflection.Emit.xml", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.xml", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "sha512": "tJO27blFXyvYwDLbK7GvgFC94XjeY6MnRitBI4w8LHfEc/gVdRmCC8gzkE8KEmkecnIWIt9VTSJ3p4lGgafKKA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/wp80/_._", + "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/net45/_._", + "ref/wp80/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "sXo3+qJ7TukCF/rDFYKjEog4iVb75dXJztu/lkvhMHgYnviPSbi9zg78FQUFhB6BOvntwnknrgNJhhtl3x9a7A==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Extensions.xml", + "ref/dotnet/es/System.Reflection.Extensions.xml", + "ref/dotnet/fr/System.Reflection.Extensions.xml", + "ref/dotnet/it/System.Reflection.Extensions.xml", + "ref/dotnet/ja/System.Reflection.Extensions.xml", + "ref/dotnet/ko/System.Reflection.Extensions.xml", + "ref/dotnet/ru/System.Reflection.Extensions.xml", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/dotnet/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "R5oBDNgUtSV9KTPCxwHWiTyryX/9mngnPbLWwFOEF5xcNd3Qlu6/3LiauGsIzGtXV8vOpRl9tfyIFy8t4ix4Gw==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Primitives.xml", + "ref/dotnet/es/System.Reflection.Primitives.xml", + "ref/dotnet/fr/System.Reflection.Primitives.xml", + "ref/dotnet/it/System.Reflection.Primitives.xml", + "ref/dotnet/ja/System.Reflection.Primitives.xml", + "ref/dotnet/ko/System.Reflection.Primitives.xml", + "ref/dotnet/ru/System.Reflection.Primitives.xml", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "lTuPMxeoT/Jqb1QtsIuSomLiJpQP3Y4DqqxLPncrMvLrejwdF25QSbhXdx5twgvBDqwSVL8wYtqiOqKe02u7FA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/de/System.Reflection.TypeExtensions.xml", + "ref/dotnet/es/System.Reflection.TypeExtensions.xml", + "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", + "ref/dotnet/it/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "6usAb6nZEPKugl3z5JR/RZrouH5/340n3tM0lhRfxVE/k3B3Sfh/sHSPiAOorrZgGm4cIDDhXTCGJQSWYphu3g==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/de/System.Runtime.xml", + "ref/dotnet/es/System.Runtime.xml", + "ref/dotnet/fr/System.Runtime.xml", + "ref/dotnet/it/System.Runtime.xml", + "ref/dotnet/ja/System.Runtime.xml", + "ref/dotnet/ko/System.Runtime.xml", + "ref/dotnet/ru/System.Runtime.xml", + "ref/dotnet/System.Runtime.dll", + "ref/dotnet/System.Runtime.xml", + "ref/dotnet/zh-hans/System.Runtime.xml", + "ref/dotnet/zh-hant/System.Runtime.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23109.nupkg", + "System.Runtime.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "JkRMtSY5YFGhP9eY7ZFIj40Ha5lGOwSxrk90k0ZAuIFn6qEPNe0NKu/C8laV7Cqy4Lv5IYzkVUGrfOqg3MOG9A==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/de/System.Runtime.Extensions.xml", + "ref/dotnet/es/System.Runtime.Extensions.xml", + "ref/dotnet/fr/System.Runtime.Extensions.xml", + "ref/dotnet/it/System.Runtime.Extensions.xml", + "ref/dotnet/ja/System.Runtime.Extensions.xml", + "ref/dotnet/ko/System.Runtime.Extensions.xml", + "ref/dotnet/ru/System.Runtime.Extensions.xml", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "XfjBv5hxBDVXvgPzBXiMpHprnmd5trdBAG4o7DEi/3GPXIlety4G0sfmlxeiTr7njKr0wF4ERdLIfzPesS5PAw==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "fxRLTR5kbqOZuSeT5ggVBYc6HIEGmEwh+Uw1ijp2qD3yMiMPmxvtI5aP5t0yZHEmwUrB37lGB+oaPpcXLH5Feg==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/de/System.Runtime.InteropServices.xml", + "ref/dotnet/es/System.Runtime.InteropServices.xml", + "ref/dotnet/fr/System.Runtime.InteropServices.xml", + "ref/dotnet/it/System.Runtime.InteropServices.xml", + "ref/dotnet/ja/System.Runtime.InteropServices.xml", + "ref/dotnet/ko/System.Runtime.InteropServices.xml", + "ref/dotnet/ru/System.Runtime.InteropServices.xml", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Security.Claims/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6oI/9RzVy/6AVHRzuSm9oOOm3O/iS+pWDby0YTuepAtW7aT1VZiYbar0Nzi7wUJLIE+EuUWgGUgVQni0inIUSw==", + "files": [ + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/de/System.Security.Claims.xml", + "ref/dotnet/es/System.Security.Claims.xml", + "ref/dotnet/fr/System.Security.Claims.xml", + "ref/dotnet/it/System.Security.Claims.xml", + "ref/dotnet/ja/System.Security.Claims.xml", + "ref/dotnet/ko/System.Security.Claims.xml", + "ref/dotnet/ru/System.Security.Claims.xml", + "ref/dotnet/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.xml", + "ref/dotnet/zh-hans/System.Security.Claims.xml", + "ref/dotnet/zh-hant/System.Security.Claims.xml", + "ref/net46/System.Security.Claims.dll", + "System.Security.Claims.4.0.0-beta-23109.nupkg", + "System.Security.Claims.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Principal/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "j94G8UrhEtW+RigEzZkayd9fcT9v/J35/V+rGzm6vmRjLE4e12+jwFUqFC9ZowElO4ZqaCoBgxu7uogHRmrKbQ==", + "files": [ + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Security.Principal.xml", + "ref/dotnet/es/System.Security.Principal.xml", + "ref/dotnet/fr/System.Security.Principal.xml", + "ref/dotnet/it/System.Security.Principal.xml", + "ref/dotnet/ja/System.Security.Principal.xml", + "ref/dotnet/ko/System.Security.Principal.xml", + "ref/dotnet/ru/System.Security.Principal.xml", + "ref/dotnet/System.Security.Principal.dll", + "ref/dotnet/System.Security.Principal.xml", + "ref/dotnet/zh-hans/System.Security.Principal.xml", + "ref/dotnet/zh-hant/System.Security.Principal.xml", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Security.Principal.4.0.0-beta-23109.nupkg", + "System.Security.Principal.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "/u7MPH/6bERVU88hsQJFoxva/OnPcS5fUrzj8OWH016zKnUElOVq76GoUdghmN5HCAmRpjqmryvZLt8+b2mrjQ==", + "files": [ + "lib/DNXCore50/System.Security.Principal.Windows.dll", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/dotnet/de/System.Security.Principal.Windows.xml", + "ref/dotnet/es/System.Security.Principal.Windows.xml", + "ref/dotnet/fr/System.Security.Principal.Windows.xml", + "ref/dotnet/it/System.Security.Principal.Windows.xml", + "ref/dotnet/ja/System.Security.Principal.Windows.xml", + "ref/dotnet/ko/System.Security.Principal.Windows.xml", + "ref/dotnet/ru/System.Security.Principal.Windows.xml", + "ref/dotnet/System.Security.Principal.Windows.dll", + "ref/dotnet/System.Security.Principal.Windows.xml", + "ref/dotnet/zh-hans/System.Security.Principal.Windows.xml", + "ref/dotnet/zh-hant/System.Security.Principal.Windows.xml", + "ref/net46/System.Security.Principal.Windows.dll", + "System.Security.Principal.Windows.4.0.0-beta-23109.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Principal.Windows.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "sha512": "oymPt96KPPXO/Scxow+x8cKczVw0KXfExKTXQlwT+j3sS1j/JuV+rZq2sQ54fqOi2R4d9aFPESsoN830sA6VCw==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/de/System.Text.Encoding.xml", + "ref/dotnet/es/System.Text.Encoding.xml", + "ref/dotnet/fr/System.Text.Encoding.xml", + "ref/dotnet/it/System.Text.Encoding.xml", + "ref/dotnet/ja/System.Text.Encoding.xml", + "ref/dotnet/ko/System.Text.Encoding.xml", + "ref/dotnet/ru/System.Text.Encoding.xml", + "ref/dotnet/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "PoB/L0tth9mKUS1ky1LQVd+nniazNmnhbzmPZL+US+06QvQRhZlpZfUR+WN2ssWYpHFiL4Zt30lzf4qEiTBP4w==", + "files": [ + "lib/dotnet/System.Text.Encoding.CodePages.dll", + "ref/dotnet/de/System.Text.Encoding.CodePages.xml", + "ref/dotnet/es/System.Text.Encoding.CodePages.xml", + "ref/dotnet/fr/System.Text.Encoding.CodePages.xml", + "ref/dotnet/it/System.Text.Encoding.CodePages.xml", + "ref/dotnet/ja/System.Text.Encoding.CodePages.xml", + "ref/dotnet/ko/System.Text.Encoding.CodePages.xml", + "ref/dotnet/ru/System.Text.Encoding.CodePages.xml", + "ref/dotnet/System.Text.Encoding.CodePages.dll", + "ref/dotnet/System.Text.Encoding.CodePages.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.CodePages.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.CodePages.xml", + "System.Text.Encoding.CodePages.4.0.0-beta-23109.nupkg", + "System.Text.Encoding.CodePages.4.0.0-beta-23109.nupkg.sha512", + "System.Text.Encoding.CodePages.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "sha512": "F6GZqICZ654MsqVPCL8h+fvDZJmXnu1I1PYY9686yG+lbcZzs9aavqMUjv1Lu5wOdiTKnmn7LADZYzPD6y1p+w==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/de/System.Text.Encoding.Extensions.xml", + "ref/dotnet/es/System.Text.Encoding.Extensions.xml", + "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", + "ref/dotnet/it/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "F+tfzB34KhZnjS3ActdL57CQVD9oYGhAZm8AREL+KvbJTh1Y8/tlyCyI2xoH6KdJzIPcXC50yu4OkHNbpcutEw==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Text.RegularExpressions.xml", + "ref/dotnet/es/System.Text.RegularExpressions.xml", + "ref/dotnet/fr/System.Text.RegularExpressions.xml", + "ref/dotnet/it/System.Text.RegularExpressions.xml", + "ref/dotnet/ja/System.Text.RegularExpressions.xml", + "ref/dotnet/ko/System.Text.RegularExpressions.xml", + "ref/dotnet/ru/System.Text.RegularExpressions.xml", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/dotnet/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "TSViw+K20yh9DmwzZpvuCUc2m2ju1eVAJ10pTw2gB/aP4kkrX2nGf4A9BkwkxupPXFA2OtO9LbbEqdp4YbBnjQ==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/de/System.Threading.xml", + "ref/dotnet/es/System.Threading.xml", + "ref/dotnet/fr/System.Threading.xml", + "ref/dotnet/it/System.Threading.xml", + "ref/dotnet/ja/System.Threading.xml", + "ref/dotnet/ko/System.Threading.xml", + "ref/dotnet/ru/System.Threading.xml", + "ref/dotnet/System.Threading.dll", + "ref/dotnet/System.Threading.xml", + "ref/dotnet/zh-hans/System.Threading.xml", + "ref/dotnet/zh-hant/System.Threading.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23109.nupkg", + "System.Threading.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "IMVmv9x4lBiy+jz31dU7KT/aTDlKZabAEDFAxQOTv//v1RYu5XZXZLIiTZqyVUKxxHgB0PUnuSDl5VxUDKysfQ==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/de/System.Threading.Overlapped.xml", + "ref/dotnet/es/System.Threading.Overlapped.xml", + "ref/dotnet/fr/System.Threading.Overlapped.xml", + "ref/dotnet/it/System.Threading.Overlapped.xml", + "ref/dotnet/ja/System.Threading.Overlapped.xml", + "ref/dotnet/ko/System.Threading.Overlapped.xml", + "ref/dotnet/ru/System.Threading.Overlapped.xml", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "J7lBqLLy1A85KZUgFz0fS8u6BO+pnWun2OAkrNqcUQbgCiKDC9v92u9q6a6AB9znum+GCdzH3cyEftNtIVNd1Q==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/de/System.Threading.Tasks.xml", + "ref/dotnet/es/System.Threading.Tasks.xml", + "ref/dotnet/fr/System.Threading.Tasks.xml", + "ref/dotnet/it/System.Threading.Tasks.xml", + "ref/dotnet/ja/System.Threading.Tasks.xml", + "ref/dotnet/ko/System.Threading.Tasks.xml", + "ref/dotnet/ru/System.Threading.Tasks.xml", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.xml", + "ref/dotnet/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet/zh-hant/System.Threading.Tasks.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23109": { + "sha512": "pOob5Fz4cRJ/bfBs2+ehmS99VGCN5Ei2mf7bl17STagcDGHUZBAzVLz8Kamq0hwQGX2pCFkuUZH+2Ycdts2PSQ==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/de/System.Threading.Thread.xml", + "ref/dotnet/es/System.Threading.Thread.xml", + "ref/dotnet/fr/System.Threading.Thread.xml", + "ref/dotnet/it/System.Threading.Thread.xml", + "ref/dotnet/ja/System.Threading.Thread.xml", + "ref/dotnet/ko/System.Threading.Thread.xml", + "ref/dotnet/ru/System.Threading.Thread.xml", + "ref/dotnet/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.xml", + "ref/dotnet/zh-hans/System.Threading.Thread.xml", + "ref/dotnet/zh-hant/System.Threading.Thread.xml", + "ref/net46/System.Threading.Thread.dll", + "System.Threading.Thread.4.0.0-beta-23109.nupkg", + "System.Threading.Thread.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-22231": { + "sha512": "zYgXCszwAYovpJu6m+BX4xayCtL0sLy1mFIvjIRmur0zPc2Luv1jVVTY4GTTeXO5OSvN5UIjt50l6Nk4jnzsHw==", + "files": [ + "lib/aspnetcore50/System.Threading.ThreadPool.dll", + "lib/contract/System.Threading.ThreadPool.dll", + "License.rtf", + "System.Threading.ThreadPool.4.0.10-beta-22231.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-22231.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.0-beta-23109": { + "sha512": "m0IORsRdO5kQqdA3C1EGLvD3NPaAj+B0FaM0KnAj0Cxg53baGGmYpNwh6mPf4sB8Pl4VBUtVaxlLN18MuyNQKQ==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Threading.Timer.xml", + "ref/dotnet/es/System.Threading.Timer.xml", + "ref/dotnet/fr/System.Threading.Timer.xml", + "ref/dotnet/it/System.Threading.Timer.xml", + "ref/dotnet/ja/System.Threading.Timer.xml", + "ref/dotnet/ko/System.Threading.Timer.xml", + "ref/dotnet/ru/System.Threading.Timer.xml", + "ref/dotnet/System.Threading.Timer.dll", + "ref/dotnet/System.Threading.Timer.xml", + "ref/dotnet/zh-hans/System.Threading.Timer.xml", + "ref/dotnet/zh-hant/System.Threading.Timer.xml", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/win81/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.0-beta-23109.nupkg", + "System.Threading.Timer.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.0-beta-23109": { + "sha512": "cQIEOYonUzE8EfK/T0Klw1AaxB2BrVGVqYZNSkfmqRgHBuwtAQBjngbVjWSD6MSM6uaRxm0UUUBB9l/sUmiuug==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Xml.ReaderWriter.xml", + "ref/dotnet/es/System.Xml.ReaderWriter.xml", + "ref/dotnet/fr/System.Xml.ReaderWriter.xml", + "ref/dotnet/it/System.Xml.ReaderWriter.xml", + "ref/dotnet/ja/System.Xml.ReaderWriter.xml", + "ref/dotnet/ko/System.Xml.ReaderWriter.xml", + "ref/dotnet/ru/System.Xml.ReaderWriter.xml", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/dotnet/System.Xml.ReaderWriter.xml", + "ref/dotnet/zh-hans/System.Xml.ReaderWriter.xml", + "ref/dotnet/zh-hant/System.Xml.ReaderWriter.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Xml.ReaderWriter.4.0.0-beta-23109.nupkg", + "System.Xml.ReaderWriter.4.0.0-beta-23109.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "EntityFramework.Relational >= 7.0.0-beta6" + ], + ".NETFramework,Version=v4.5": [], + "DNXCore,Version=v5.0": [ + "System.Data.SqlClient >= 4.0.0-beta-23109", + "System.Text.Encoding.CodePages >= 4.0.0-beta-23109", + "System.Threading.Thread >= 4.0.0-beta-23109" + ] + } +} \ No newline at end of file diff --git a/src/EntityFramework.Sqlite/project.json b/src/EntityFramework.Sqlite/project.json index e8a20077d83..fd77f38e654 100644 --- a/src/EntityFramework.Sqlite/project.json +++ b/src/EntityFramework.Sqlite/project.json @@ -1,28 +1,28 @@ { - "version": "7.0.0-*", - "description": "SQLite data store for Entity Framework.", - "repository": { - "type": "git", - "url": "git://github.com/aspnet/entityframework" - }, - "compilationOptions": { - "warningsAsErrors": true - }, - "dependencies": { - "EntityFramework.Relational": "7.0.0-*", - "Microsoft.Data.Sqlite": "1.0.0-*" - }, - "compile": "..\\Shared\\*.cs", - "namedResource": { - "EntityFramework.Sqlite.Strings": "Properties/Strings.resx" - }, - "frameworks": { - "net45": { }, - "dotnet": { - "dependencies": { - "System.IO.FileSystem": "4.0.0-*", - "Microsoft.CSharp": "4.0.0-*" - } + "version": "7.0.0-beta6", + "description": "SQLite data store for Entity Framework.", + "repository": { + "type": "git", + "url": "git://github.com/aspnet/entityframework" + }, + "compilationOptions": { + "warningsAsErrors": true + }, + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6", + "Microsoft.Data.Sqlite": "1.0.0-beta6" + }, + "compile": "..\\Shared\\*.cs", + "namedResource": { + "EntityFramework.Sqlite.Strings": "Properties/Strings.resx" + }, + "frameworks": { + "net45": {}, + "dotnet": { + "dependencies": { + "System.IO.FileSystem": "4.0.0-beta-23109", + "Microsoft.CSharp": "4.0.0-beta-23109" + } + } } - } -} +} \ No newline at end of file diff --git a/src/EntityFramework.Sqlite/project.lock.json b/src/EntityFramework.Sqlite/project.lock.json new file mode 100644 index 00000000000..32f25cbcb59 --- /dev/null +++ b/src/EntityFramework.Sqlite/project.lock.json @@ -0,0 +1,2330 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.5": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Data.Sqlite/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data" + ], + "compile": { + "lib/net45/Microsoft.Data.Sqlite.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Data.Sqlite.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + } + }, + ".NETPlatform,Version=v5.0": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Collections.Immutable": "1.1.37-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.ComponentModel.Annotations": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Queryable": "4.0.0-beta-23109", + "System.ObjectModel": "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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6", + "Microsoft.CSharp": "4.0.0-beta-23109", + "System.Data.Common": "4.0.0-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Relational.dll": {} + } + }, + "Ix-Async/1.2.4": { + "compile": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + } + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Dynamic.Runtime": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.10-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.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Data.Sqlite/1.0.0-beta6": { + "dependencies": { + "System.Data.Common": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Data.Sqlite.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Data.Sqlite.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Linq": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.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.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tracing": "4.0.20-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.Data.Common/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Data.Common.dll": {} + }, + "runtime": { + "lib/dotnet/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.0-beta-23109": { + "dependencies": { + "System.Linq.Expressions": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + } + }, + "System.IO/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "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.ObjectModel/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23109": { + "compile": { + "ref/dotnet/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "EntityFramework.Relational/7.0.0-beta6": { + "serviceable": true, + "sha512": "2CVE3UZjzXDRFYyfVL0lePnK1t2ZyLexNE88SiuUhY4mPC5SOWmDZ7mhLvtXeVJL/7PBpEmDy0qSDZRBpJ/Kiw==", + "files": [ + "EntityFramework.Relational.7.0.0-beta6.nupkg", + "EntityFramework.Relational.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Relational.nuspec", + "lib/dotnet/EntityFramework.Relational.dll", + "lib/dotnet/EntityFramework.Relational.xml", + "lib/net45/EntityFramework.Relational.dll", + "lib/net45/EntityFramework.Relational.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "MO4Lu8aMS1vL4Omp/gIMl2hr4sdV1l99p6xhAExGnS3MlFEa5JYPDL5mpdeg/osDH+1gAhb11xMJTYP7Ya3cAA==", + "files": [ + "lib/dotnet/Microsoft.CSharp.dll", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg.sha512", + "Microsoft.CSharp.nuspec", + "ref/dotnet/de/Microsoft.CSharp.xml", + "ref/dotnet/es/Microsoft.CSharp.xml", + "ref/dotnet/fr/Microsoft.CSharp.xml", + "ref/dotnet/it/Microsoft.CSharp.xml", + "ref/dotnet/ja/Microsoft.CSharp.xml", + "ref/dotnet/ko/Microsoft.CSharp.xml", + "ref/dotnet/Microsoft.CSharp.dll", + "ref/dotnet/Microsoft.CSharp.xml", + "ref/dotnet/ru/Microsoft.CSharp.xml", + "ref/dotnet/zh-hans/Microsoft.CSharp.xml", + "ref/dotnet/zh-hant/Microsoft.CSharp.xml", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._" + ] + }, + "Microsoft.Data.Sqlite/1.0.0-beta6": { + "serviceable": true, + "sha512": "7yyqsIahqnM+5/9To3vhoYFttNlvDea9ASAayxqN0DxzpMv9Sguty22Qj5yM2DPlY1AGLCGxl0B/Jayp/7ePNQ==", + "files": [ + "lib/dnx451/Microsoft.Data.Sqlite.dll", + "lib/dnx451/Microsoft.Data.Sqlite.xml", + "lib/dnxcore50/Microsoft.Data.Sqlite.dll", + "lib/dnxcore50/Microsoft.Data.Sqlite.xml", + "lib/dotnet/Microsoft.Data.Sqlite.dll", + "lib/dotnet/Microsoft.Data.Sqlite.xml", + "lib/net45/Microsoft.Data.Sqlite.dll", + "lib/net45/Microsoft.Data.Sqlite.xml", + "Microsoft.Data.Sqlite.1.0.0-beta6.nupkg", + "Microsoft.Data.Sqlite.1.0.0-beta6.nupkg.sha512", + "Microsoft.Data.Sqlite.nuspec", + "runtimes/win/native/x86/sqlite3.dll", + "runtimes/win10-arm/native/sqlite3.dll", + "runtimes/win10-x64/native/sqlite3.dll", + "runtimes/win10-x86/native/sqlite3.dll", + "runtimes/win-x86/native/sqlite3.dll" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "2/VX+2QEyyIpvGDzuIXX8V0vSl/Llt673DR48nNmeA6BoMuwL4Eu4F1Meh9fPp80nhcjifqVK8g7/UQDn/0PFw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23109.nupkg", + "System.Collections.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "fRXR5y4dg9zPovFpSQZkc6gnyMNlQJVQ8lKqPDPFSIelhqWxv2VyY87s5Vd9ViGwKrFwekDwCQFug9ny8qCHuA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Collections.Concurrent.xml", + "ref/dotnet/es/System.Collections.Concurrent.xml", + "ref/dotnet/fr/System.Collections.Concurrent.xml", + "ref/dotnet/it/System.Collections.Concurrent.xml", + "ref/dotnet/ja/System.Collections.Concurrent.xml", + "ref/dotnet/ko/System.Collections.Concurrent.xml", + "ref/dotnet/ru/System.Collections.Concurrent.xml", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/dotnet/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Z+VGG3YaL4PxuBn/Nbjul1OoaCBzvkylexTwIW6s8arj3c17XkCeJvZ1BIn66lzDpAQYMGZmv97UMT6OboRoVg==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/de/System.Collections.NonGeneric.xml", + "ref/dotnet/es/System.Collections.NonGeneric.xml", + "ref/dotnet/fr/System.Collections.NonGeneric.xml", + "ref/dotnet/it/System.Collections.NonGeneric.xml", + "ref/dotnet/ja/System.Collections.NonGeneric.xml", + "ref/dotnet/ko/System.Collections.NonGeneric.xml", + "ref/dotnet/ru/System.Collections.NonGeneric.xml", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", + "ref/net46/System.Collections.NonGeneric.dll", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "JFzHUvX28tQbud0c9AP+SFeOroBG9x7tgc0OYu0Z5nQotnIiwP5nHXq9DoK3N2y0MoRUt8jy2FwkRMAYgiQuNQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.ComponentModel.xml", + "ref/dotnet/es/System.ComponentModel.xml", + "ref/dotnet/fr/System.ComponentModel.xml", + "ref/dotnet/it/System.ComponentModel.xml", + "ref/dotnet/ja/System.ComponentModel.xml", + "ref/dotnet/ko/System.ComponentModel.xml", + "ref/dotnet/ru/System.ComponentModel.xml", + "ref/dotnet/System.ComponentModel.dll", + "ref/dotnet/System.ComponentModel.xml", + "ref/dotnet/zh-hans/System.ComponentModel.xml", + "ref/dotnet/zh-hant/System.ComponentModel.xml", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.0-beta-23109.nupkg", + "System.ComponentModel.4.0.0-beta-23109.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "tfq+u00KcRXrvtYS4v7Bi4NgfFXt0sx5IgqqgeWCOFtwhDTVWgL3XJN/lanFtANnG7+zVU3+B5mvjH1pblGHxg==", + "files": [ + "lib/dotnet/System.ComponentModel.Annotations.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ComponentModel.Annotations.xml", + "ref/dotnet/es/System.ComponentModel.Annotations.xml", + "ref/dotnet/fr/System.ComponentModel.Annotations.xml", + "ref/dotnet/it/System.ComponentModel.Annotations.xml", + "ref/dotnet/ja/System.ComponentModel.Annotations.xml", + "ref/dotnet/ko/System.ComponentModel.Annotations.xml", + "ref/dotnet/ru/System.ComponentModel.Annotations.xml", + "ref/dotnet/System.ComponentModel.Annotations.dll", + "ref/dotnet/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", + "ref/net46/_._", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg.sha512", + "System.ComponentModel.Annotations.nuspec" + ] + }, + "System.Data.Common/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "oWJT16F9TqEP1dQDNZUSuJ1gH17YyR8wTD+zfz03oflnAUWlyH2QM/px/X10GPZAn9Qz58EYR/maNzJIX9FSOA==", + "files": [ + "lib/dotnet/System.Data.Common.dll", + "lib/net46/System.Data.Common.dll", + "ref/dotnet/de/System.Data.Common.xml", + "ref/dotnet/es/System.Data.Common.xml", + "ref/dotnet/fr/System.Data.Common.xml", + "ref/dotnet/it/System.Data.Common.xml", + "ref/dotnet/ja/System.Data.Common.xml", + "ref/dotnet/ko/System.Data.Common.xml", + "ref/dotnet/ru/System.Data.Common.xml", + "ref/dotnet/System.Data.Common.dll", + "ref/dotnet/System.Data.Common.xml", + "ref/dotnet/zh-hans/System.Data.Common.xml", + "ref/dotnet/zh-hant/System.Data.Common.xml", + "ref/net46/System.Data.Common.dll", + "System.Data.Common.4.0.0-beta-23109.nupkg", + "System.Data.Common.4.0.0-beta-23109.nupkg.sha512", + "System.Data.Common.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "woJsNwCtAqYac5zp+6Wy40HAp7kYr8zhaFvHl3gECjQf+VGeGYaHgDV1ATVcyMG1h6XvmX0wtmD5Qds51CRJoA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6tFdP3p3SV6DZOagwW5ThfUF+zp5pUIyW4CY2K4B2RxV6HGVyY/8J2EuZGrcEP3wdO5fXnb9MmdOZa5Tn01Hmg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Diagnostics.Tools.xml", + "ref/dotnet/es/System.Diagnostics.Tools.xml", + "ref/dotnet/fr/System.Diagnostics.Tools.xml", + "ref/dotnet/it/System.Diagnostics.Tools.xml", + "ref/dotnet/ja/System.Diagnostics.Tools.xml", + "ref/dotnet/ko/System.Diagnostics.Tools.xml", + "ref/dotnet/ru/System.Diagnostics.Tools.xml", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/dotnet/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "sNauLSBFewFLjULHeplEr7FCmmfPbcc1jfz1Mynjy445bYiP/IW1q9X14a//oV/uQG7p82S9qHyfPxoxmt3pxQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/de/System.Diagnostics.Tracing.xml", + "ref/dotnet/es/System.Diagnostics.Tracing.xml", + "ref/dotnet/fr/System.Diagnostics.Tracing.xml", + "ref/dotnet/it/System.Diagnostics.Tracing.xml", + "ref/dotnet/ja/System.Diagnostics.Tracing.xml", + "ref/dotnet/ko/System.Diagnostics.Tracing.xml", + "ref/dotnet/ru/System.Diagnostics.Tracing.xml", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.0-beta-23109": { + "sha512": "nH2j/mWRcUME1Tz9tFXhf6zWGRVW5a5M+2bMG5GvudHv0SrbwfPGQBqwYCm5n1uQu68K1C59evXEq8BoMdXlcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Dynamic.Runtime.xml", + "ref/dotnet/es/System.Dynamic.Runtime.xml", + "ref/dotnet/fr/System.Dynamic.Runtime.xml", + "ref/dotnet/it/System.Dynamic.Runtime.xml", + "ref/dotnet/ja/System.Dynamic.Runtime.xml", + "ref/dotnet/ko/System.Dynamic.Runtime.xml", + "ref/dotnet/ru/System.Dynamic.Runtime.xml", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.xml", + "ref/dotnet/zh-hans/System.Dynamic.Runtime.xml", + "ref/dotnet/zh-hant/System.Dynamic.Runtime.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Dynamic.Runtime.4.0.0-beta-23109.nupkg", + "System.Dynamic.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23109": { + "sha512": "l4QNrgLmC4KHGLcfriJ2EmsM2j18xefJzCnLU6YqVdBFaYzsJGwqmHyIr4nqw9DBjdWEtzdHLEbvpLeEay0ZWQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23109.nupkg", + "System.Globalization.4.0.10-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.IO/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "DVHSyfJO8mC9CpZFjjuaOWazALkWFnI6b/fqTQCjNe1dp2XasuvTRiV/qIOJB+uyDVex8sH8QMRUDS6ukimyLA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/de/System.IO.xml", + "ref/dotnet/es/System.IO.xml", + "ref/dotnet/fr/System.IO.xml", + "ref/dotnet/it/System.IO.xml", + "ref/dotnet/ja/System.IO.xml", + "ref/dotnet/ko/System.IO.xml", + "ref/dotnet/ru/System.IO.xml", + "ref/dotnet/System.IO.dll", + "ref/dotnet/System.IO.xml", + "ref/dotnet/zh-hans/System.IO.xml", + "ref/dotnet/zh-hant/System.IO.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23109.nupkg", + "System.IO.4.0.10-beta-23109.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "OusDe4B1/Q3BYY4QzNfztnyPPK9a1OGsQVZBg41C1bk8F2S3AOtXCx0GUwAfKbVxxS4dOdIgxWw1JN5m+IlpAA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/de/System.IO.FileSystem.xml", + "ref/dotnet/es/System.IO.FileSystem.xml", + "ref/dotnet/fr/System.IO.FileSystem.xml", + "ref/dotnet/it/System.IO.FileSystem.xml", + "ref/dotnet/ja/System.IO.FileSystem.xml", + "ref/dotnet/ko/System.IO.FileSystem.xml", + "ref/dotnet/ru/System.IO.FileSystem.xml", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.xml", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "1JFc6+hsLnlYgACgluhMi19zFkNruPgWoLDq30z7qMKgs3FZqShvXDZLTQ1Hk+cnenUoUU/8P8yRdmbdQaf4yg==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "cy+sQJW809QnFHIXt5Y/If45u362gwiNqHldnJS70l7VCjyR4Bo3UgZMZl+bowSupWxqXk69cwCQhRUyFu2hVw==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/de/System.Linq.Expressions.xml", + "ref/dotnet/es/System.Linq.Expressions.xml", + "ref/dotnet/fr/System.Linq.Expressions.xml", + "ref/dotnet/it/System.Linq.Expressions.xml", + "ref/dotnet/ja/System.Linq.Expressions.xml", + "ref/dotnet/ko/System.Linq.Expressions.xml", + "ref/dotnet/ru/System.Linq.Expressions.xml", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.xml", + "ref/dotnet/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet/zh-hant/System.Linq.Expressions.xml", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Mu6nIhw5k/zAMigeCh4aqma3kwXLoyPREVD6RxVPhGu2QJjAEeih0GWumoDjtdFp0B5Q6sYeakWDAds7NmzWQg==", + "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.ObjectModel/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "mnrhXE8nT5mX/ndEJ5BsdLCgN6CofKiwQvr9Olsp/s3crY5/lXYM73N2bNSvsFcHD1o0XhaCOn18Vekv6SYTpg==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ObjectModel.xml", + "ref/dotnet/es/System.ObjectModel.xml", + "ref/dotnet/fr/System.ObjectModel.xml", + "ref/dotnet/it/System.ObjectModel.xml", + "ref/dotnet/ja/System.ObjectModel.xml", + "ref/dotnet/ko/System.ObjectModel.xml", + "ref/dotnet/ru/System.ObjectModel.xml", + "ref/dotnet/System.ObjectModel.dll", + "ref/dotnet/System.ObjectModel.xml", + "ref/dotnet/zh-hans/System.ObjectModel.xml", + "ref/dotnet/zh-hant/System.ObjectModel.xml", + "ref/net46/_._", + "System.ObjectModel.4.0.10-beta-23109.nupkg", + "System.ObjectModel.4.0.10-beta-23109.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23109": { + "sha512": "aeXO8gjPb46LaP727cXDcCZ2mZoMxguq2UhE25wJoO1Je8Q8D2JFonNk85oVlgXCdEM6XgrtRnsnhvj8PmTBNg==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/de/System.Reflection.xml", + "ref/dotnet/es/System.Reflection.xml", + "ref/dotnet/fr/System.Reflection.xml", + "ref/dotnet/it/System.Reflection.xml", + "ref/dotnet/ja/System.Reflection.xml", + "ref/dotnet/ko/System.Reflection.xml", + "ref/dotnet/ru/System.Reflection.xml", + "ref/dotnet/System.Reflection.dll", + "ref/dotnet/System.Reflection.xml", + "ref/dotnet/zh-hans/System.Reflection.xml", + "ref/dotnet/zh-hant/System.Reflection.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23109.nupkg", + "System.Reflection.4.0.10-beta-23109.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "sXo3+qJ7TukCF/rDFYKjEog4iVb75dXJztu/lkvhMHgYnviPSbi9zg78FQUFhB6BOvntwnknrgNJhhtl3x9a7A==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Extensions.xml", + "ref/dotnet/es/System.Reflection.Extensions.xml", + "ref/dotnet/fr/System.Reflection.Extensions.xml", + "ref/dotnet/it/System.Reflection.Extensions.xml", + "ref/dotnet/ja/System.Reflection.Extensions.xml", + "ref/dotnet/ko/System.Reflection.Extensions.xml", + "ref/dotnet/ru/System.Reflection.Extensions.xml", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/dotnet/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "R5oBDNgUtSV9KTPCxwHWiTyryX/9mngnPbLWwFOEF5xcNd3Qlu6/3LiauGsIzGtXV8vOpRl9tfyIFy8t4ix4Gw==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Primitives.xml", + "ref/dotnet/es/System.Reflection.Primitives.xml", + "ref/dotnet/fr/System.Reflection.Primitives.xml", + "ref/dotnet/it/System.Reflection.Primitives.xml", + "ref/dotnet/ja/System.Reflection.Primitives.xml", + "ref/dotnet/ko/System.Reflection.Primitives.xml", + "ref/dotnet/ru/System.Reflection.Primitives.xml", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "lTuPMxeoT/Jqb1QtsIuSomLiJpQP3Y4DqqxLPncrMvLrejwdF25QSbhXdx5twgvBDqwSVL8wYtqiOqKe02u7FA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/de/System.Reflection.TypeExtensions.xml", + "ref/dotnet/es/System.Reflection.TypeExtensions.xml", + "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", + "ref/dotnet/it/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "6usAb6nZEPKugl3z5JR/RZrouH5/340n3tM0lhRfxVE/k3B3Sfh/sHSPiAOorrZgGm4cIDDhXTCGJQSWYphu3g==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/de/System.Runtime.xml", + "ref/dotnet/es/System.Runtime.xml", + "ref/dotnet/fr/System.Runtime.xml", + "ref/dotnet/it/System.Runtime.xml", + "ref/dotnet/ja/System.Runtime.xml", + "ref/dotnet/ko/System.Runtime.xml", + "ref/dotnet/ru/System.Runtime.xml", + "ref/dotnet/System.Runtime.dll", + "ref/dotnet/System.Runtime.xml", + "ref/dotnet/zh-hans/System.Runtime.xml", + "ref/dotnet/zh-hant/System.Runtime.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23109.nupkg", + "System.Runtime.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "JkRMtSY5YFGhP9eY7ZFIj40Ha5lGOwSxrk90k0ZAuIFn6qEPNe0NKu/C8laV7Cqy4Lv5IYzkVUGrfOqg3MOG9A==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/de/System.Runtime.Extensions.xml", + "ref/dotnet/es/System.Runtime.Extensions.xml", + "ref/dotnet/fr/System.Runtime.Extensions.xml", + "ref/dotnet/it/System.Runtime.Extensions.xml", + "ref/dotnet/ja/System.Runtime.Extensions.xml", + "ref/dotnet/ko/System.Runtime.Extensions.xml", + "ref/dotnet/ru/System.Runtime.Extensions.xml", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "XfjBv5hxBDVXvgPzBXiMpHprnmd5trdBAG4o7DEi/3GPXIlety4G0sfmlxeiTr7njKr0wF4ERdLIfzPesS5PAw==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "fxRLTR5kbqOZuSeT5ggVBYc6HIEGmEwh+Uw1ijp2qD3yMiMPmxvtI5aP5t0yZHEmwUrB37lGB+oaPpcXLH5Feg==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/de/System.Runtime.InteropServices.xml", + "ref/dotnet/es/System.Runtime.InteropServices.xml", + "ref/dotnet/fr/System.Runtime.InteropServices.xml", + "ref/dotnet/it/System.Runtime.InteropServices.xml", + "ref/dotnet/ja/System.Runtime.InteropServices.xml", + "ref/dotnet/ko/System.Runtime.InteropServices.xml", + "ref/dotnet/ru/System.Runtime.InteropServices.xml", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "sha512": "oymPt96KPPXO/Scxow+x8cKczVw0KXfExKTXQlwT+j3sS1j/JuV+rZq2sQ54fqOi2R4d9aFPESsoN830sA6VCw==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/de/System.Text.Encoding.xml", + "ref/dotnet/es/System.Text.Encoding.xml", + "ref/dotnet/fr/System.Text.Encoding.xml", + "ref/dotnet/it/System.Text.Encoding.xml", + "ref/dotnet/ja/System.Text.Encoding.xml", + "ref/dotnet/ko/System.Text.Encoding.xml", + "ref/dotnet/ru/System.Text.Encoding.xml", + "ref/dotnet/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "F+tfzB34KhZnjS3ActdL57CQVD9oYGhAZm8AREL+KvbJTh1Y8/tlyCyI2xoH6KdJzIPcXC50yu4OkHNbpcutEw==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Text.RegularExpressions.xml", + "ref/dotnet/es/System.Text.RegularExpressions.xml", + "ref/dotnet/fr/System.Text.RegularExpressions.xml", + "ref/dotnet/it/System.Text.RegularExpressions.xml", + "ref/dotnet/ja/System.Text.RegularExpressions.xml", + "ref/dotnet/ko/System.Text.RegularExpressions.xml", + "ref/dotnet/ru/System.Text.RegularExpressions.xml", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/dotnet/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "TSViw+K20yh9DmwzZpvuCUc2m2ju1eVAJ10pTw2gB/aP4kkrX2nGf4A9BkwkxupPXFA2OtO9LbbEqdp4YbBnjQ==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/de/System.Threading.xml", + "ref/dotnet/es/System.Threading.xml", + "ref/dotnet/fr/System.Threading.xml", + "ref/dotnet/it/System.Threading.xml", + "ref/dotnet/ja/System.Threading.xml", + "ref/dotnet/ko/System.Threading.xml", + "ref/dotnet/ru/System.Threading.xml", + "ref/dotnet/System.Threading.dll", + "ref/dotnet/System.Threading.xml", + "ref/dotnet/zh-hans/System.Threading.xml", + "ref/dotnet/zh-hant/System.Threading.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23109.nupkg", + "System.Threading.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "J7lBqLLy1A85KZUgFz0fS8u6BO+pnWun2OAkrNqcUQbgCiKDC9v92u9q6a6AB9znum+GCdzH3cyEftNtIVNd1Q==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/de/System.Threading.Tasks.xml", + "ref/dotnet/es/System.Threading.Tasks.xml", + "ref/dotnet/fr/System.Threading.Tasks.xml", + "ref/dotnet/it/System.Threading.Tasks.xml", + "ref/dotnet/ja/System.Threading.Tasks.xml", + "ref/dotnet/ko/System.Threading.Tasks.xml", + "ref/dotnet/ru/System.Threading.Tasks.xml", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.xml", + "ref/dotnet/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet/zh-hant/System.Threading.Tasks.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "EntityFramework.Relational >= 7.0.0-beta6", + "Microsoft.Data.Sqlite >= 1.0.0-beta6" + ], + ".NETFramework,Version=v4.5": [], + ".NETPlatform,Version=v5.0": [ + "System.IO.FileSystem >= 4.0.0-beta-23109", + "Microsoft.CSharp >= 4.0.0-beta-23109" + ] + } +} \ No newline at end of file diff --git a/test/EntityFramework.Commands.FunctionalTests/project.json b/test/EntityFramework.Commands.FunctionalTests/project.json index a6575e14d3e..8dd44f834b5 100644 --- a/test/EntityFramework.Commands.FunctionalTests/project.json +++ b/test/EntityFramework.Commands.FunctionalTests/project.json @@ -1,22 +1,22 @@ { - "dependencies": { - "EntityFramework.Commands": "7.0.0-*", - "EntityFramework.Core.FunctionalTests": "7.0.0-*", - "EntityFramework.SqlServer": "7.0.0-*", - "Microsoft.Framework.Runtime.Roslyn": "1.0.0-*", - "xunit.assert": "2.1.0-*", - "xunit.extensibility.execution": "2.1.0-*" - }, - "compile": "..\\..\\src\\EntityFramework.Commands\\tools\\Handlers.cs", - "commands": { - "test": "xunit.runner.dnx" - }, - "frameworks": { - "net46": { }, - "dnx451": { - "dependencies": { - "xunit.runner.dnx": "2.1.0-*" - } + "dependencies": { + "EntityFramework.Commands": "7.0.0-beta6", + "EntityFramework.Core.FunctionalTests": "7.0.0-beta6", + "EntityFramework.SqlServer": "7.0.0-beta6", + "Microsoft.Framework.Runtime.Roslyn": "1.0.0-beta6", + "xunit.assert": "2.1.0-*", + "xunit.extensibility.execution": "2.1.0-*" + }, + "compile": "..\\..\\src\\EntityFramework.Commands\\tools\\Handlers.cs", + "commands": { + "test": "xunit.runner.dnx" + }, + "frameworks": { + "net46": {}, + "dnx451": { + "dependencies": { + "xunit.runner.dnx": "2.1.0-*" + } + } } - } -} +} \ No newline at end of file diff --git a/test/EntityFramework.Commands.FunctionalTests/project.lock.json b/test/EntityFramework.Commands.FunctionalTests/project.lock.json new file mode 100644 index 00000000000..f917246689a --- /dev/null +++ b/test/EntityFramework.Commands.FunctionalTests/project.lock.json @@ -0,0 +1,2594 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.6": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.SqlServer.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.AspNet.Razor.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.AspNet.Razor.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn/1.0.0-beta6": {}, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/net45/xunit.execution.desktop.dll": {} + }, + "runtime": { + "lib/net45/xunit.execution.desktop.dll": {} + } + } + }, + "DNX,Version=v4.5.1": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.ComponentModel.DataAnnotations", + "System.Core", + "System.Diagnostics.Debug", + "System.Diagnostics.Tools", + "System.Globalization", + "System.Linq", + "System.Linq.Expressions", + "System.Linq.Queryable", + "System.ObjectModel", + "System.Reflection", + "System.Reflection.Extensions", + "System.Resources.ResourceManager", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading" + ], + "compile": { + "lib/dnx451/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dnx451/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.SqlServer.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta6", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Http": "1.0.0-beta6", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta6", + "Microsoft.Framework.Configuration": "1.0.0-beta6", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta6", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta6", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta6", + "Microsoft.Net.Http.Headers": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta6", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6", + "Microsoft.Net.Http.Headers": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Razor.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Razor.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "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.CommandLineUtils.Sources/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Roslyn.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.Text.Encoding", + "System.Threading.Tasks" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.0.0", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnx451/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.ObjectModel", + "System.Reflection", + "System.Runtime", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "serviceable": true, + "sha512": "u4CXBQEmftJJD7U500i79xS2MwPyptOZLFqBAAwHVp7RuuAB0k2u9iFvdA2kgQZNhzkyooUTcS/+n4EPJalpaw==", + "files": [ + "EntityFramework.InMemory.7.0.0-beta6.nupkg", + "EntityFramework.InMemory.7.0.0-beta6.nupkg.sha512", + "EntityFramework.InMemory.nuspec", + "lib/dotnet/EntityFramework.InMemory.dll", + "lib/dotnet/EntityFramework.InMemory.xml", + "lib/net45/EntityFramework.InMemory.dll", + "lib/net45/EntityFramework.InMemory.xml", + "repo.json" + ] + }, + "EntityFramework.Relational/7.0.0-beta6": { + "serviceable": true, + "sha512": "2CVE3UZjzXDRFYyfVL0lePnK1t2ZyLexNE88SiuUhY4mPC5SOWmDZ7mhLvtXeVJL/7PBpEmDy0qSDZRBpJ/Kiw==", + "files": [ + "EntityFramework.Relational.7.0.0-beta6.nupkg", + "EntityFramework.Relational.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Relational.nuspec", + "lib/dotnet/EntityFramework.Relational.dll", + "lib/dotnet/EntityFramework.Relational.xml", + "lib/net45/EntityFramework.Relational.dll", + "lib/net45/EntityFramework.Relational.xml", + "repo.json" + ] + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "serviceable": true, + "sha512": "69BvxKYVxgO/LK5YTKo9iuK4rt2/ystXVWdHfl3JaZ8DASB+UTacNNDDYeHuo2ZqQCv523AZSReuBGZ5reGBOg==", + "files": [ + "EntityFramework.SqlServer.7.0.0-beta6.nupkg", + "EntityFramework.SqlServer.7.0.0-beta6.nupkg.sha512", + "EntityFramework.SqlServer.nuspec", + "lib/dnxcore50/EntityFramework.SqlServer.dll", + "lib/dnxcore50/EntityFramework.SqlServer.xml", + "lib/net45/EntityFramework.SqlServer.dll", + "lib/net45/EntityFramework.SqlServer.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "6SdDa7Fx/38scBkaOGySzkSMQhk58ERdzouVyxJ9FhhXph2MEMgSuqNACCgTOX6+zFl6ZUwJG0DphQ+iYv2jrw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll", + "lib/dnx451/Microsoft.AspNet.FeatureModel.xml", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.xml", + "Microsoft.AspNet.FeatureModel.1.0.0-beta6.nupkg", + "Microsoft.AspNet.FeatureModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.FeatureModel.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "KocyYqntJkcGv4//VyaolXixf/XRInce9xtvbgb7n3+UtKFDU/q0CvSV/8OoLhIoYxTvC61bQcyoCOg6AlSfTg==", + "files": [ + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.xml", + "lib/net45/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/net45/Microsoft.AspNet.FileProviders.Abstractions.xml", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta6": { + "serviceable": true, + "sha512": "jQR2r1ZMD80IG++gPq0YElidsvZUiauH6KImIXVM/TD3NGYNeksm97XbKV2r5hUGrTBYfqItmvWRuTCjW6io1Q==", + "files": [ + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.xml", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.xml", + "lib/net45/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/net45/Microsoft.AspNet.FileProviders.Physical.xml", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta6.nupkg", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Physical.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting/1.0.0-beta6": { + "serviceable": true, + "sha512": "q9MmbmxtnXdtWoJreTESNY/fNq2I2KSLD6XPg3vLnFK2qWvCBvNq29qVi67ft2bGLhjpxQLO0NYah4d1yhzpag==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Hosting.dll", + "lib/dnx451/Microsoft.AspNet.Hosting.xml", + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll", + "lib/dnxcore50/Microsoft.AspNet.Hosting.xml", + "Microsoft.AspNet.Hosting.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Hosting.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Hosting.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "gAqZ7jxzQroxKtbVU0Azwp05jt9DqdSYBnc7touWEms3vgS8AX16NU+l4OAPXKlAyKHsmy8P1JNM9zNbPD/kOA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.xml", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Hosting.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta6": { + "sha512": "iXOxv5XEBy/Hpq6ncoZ08qbrf55xiM1aZWyjiP9oASRqIAuHi9d5zh3ehsLKaiUQCfsfFozkPBoSwv7pRg/ZSQ==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.xml", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Hosting.Server.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http/1.0.0-beta6": { + "serviceable": true, + "sha512": "67oPgXxtKkenyJ6cQv1w5SFX1Iy9E5kGJ/nFLZb8y0NFq0q40VU+TSTaNksyAN/7NCLSdpXdZqLRIplkc/VdUw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.dll", + "lib/dnx451/Microsoft.AspNet.Http.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.xml", + "Microsoft.AspNet.Http.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "yb6WdoTelIHfgNuKzHp5uu4qHB7CyXAs+41PFyskNTkWn4TwCXzoCnpJV08X3n2GdjqMCzeb2U2FFafmeZxAkQ==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.xml", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta6": { + "serviceable": true, + "sha512": "Ad/hoYInYZLVJ0ch0jXCA4SXLo2AykwSrlr5c1l/9V2YCC4WHWwqFEMuS+3vIRMECHWbHuQJBz2HEcdPWrGoyw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll", + "lib/dnx451/Microsoft.AspNet.Http.Extensions.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.xml", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta6": { + "serviceable": true, + "sha512": "x9m0cW55Y5oFBCgD4Yqwfyu14kw0AkNm2UFgrdCpTy6h7GBaV2nc5sSx6SgoP4fwThco5gac29GpH8IBXOUeYA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.Features.dll", + "lib/dnx451/Microsoft.AspNet.Http.Features.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.Features.xml", + "Microsoft.AspNet.Http.Features.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "serviceable": true, + "sha512": "GkdomN9ySGxL9FqgD8pdxxljGWvIFOyRPKzbLe+XseKDfpP9YNzkX2+oD2TLcwCl/O7bJcX2F7k0Zlf96fMpfw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Razor.dll", + "lib/dnx451/Microsoft.AspNet.Razor.xml", + "lib/dnxcore50/Microsoft.AspNet.Razor.dll", + "lib/dnxcore50/Microsoft.AspNet.Razor.xml", + "lib/net45/Microsoft.AspNet.Razor.dll", + "lib/net45/Microsoft.AspNet.Razor.xml", + "Microsoft.AspNet.Razor.4.0.0-beta6.nupkg", + "Microsoft.AspNet.Razor.4.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Razor.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta6": { + "serviceable": true, + "sha512": "bLN5Nk0K9DB5trMtXUIrvNMxm+VKVPKcUHfM7mGBaKbBSARVvd5KIJTt+8Z9UF1IjjItd4/bV6gRTbo1Fo3/lw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll", + "lib/dnx451/Microsoft.AspNet.WebUtilities.xml", + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll", + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.xml", + "Microsoft.AspNet.WebUtilities.1.0.0-beta6.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec", + "repo.json" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "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.0.0": { + "sha512": "MhxsY8N9veim57uXqcRCJb7X9xZoWhMDU4/EyIqNkS7qfRsLxrzELSpjp6NjFkISZElvwIV2Ehi3UxyJui/gPw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "sha512": "KZ70r7EF+Dn8qp2p1CiBJGVoIG6el7Q9cLhnXuq+3oLcnMvUk2XzimB36AgO/Qg/liqRzf992WmFWhwqZSaIEg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta6": { + "sha512": "SoI/xicmO2Nutc3y1Wxg2GIR18M5IDqYjUR5plULxb8XCMDeJ8oYKAicpEeHuc/GNUHiICmac0U4li50DTVqBA==", + "files": [ + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.xml", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.xml", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta6.nupkg", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.CommandLineUtils.Sources.nuspec", + "shared/AnsiConsole.cs", + "shared/CommandArgument.cs", + "shared/CommandLineApplication.cs", + "shared/CommandOption.cs", + "shared/CommandOptionType.cs" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta6": { + "serviceable": true, + "sha512": "9DX3AnuzuNl4QZLP/U/zkW03cASmOKJafcAXf1c/DUTJ7nRq9jUyVk9myJYd7+t0nmXXS1majXAHG3oQ/RGfTw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll", + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.xml", + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.dll", + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.xml", + "lib/net45/Microsoft.Framework.Configuration.CommandLine.dll", + "lib/net45/Microsoft.Framework.Configuration.CommandLine.xml", + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.CommandLine.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6": { + "serviceable": true, + "sha512": "wUYZglLlkxL6xpbOHv6TqeJeT3GwpOxNRw3gkWOpM7OVrhAORm1pWnQ4qA+kWs5RDXSEntv47dK95MIypfIWKQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "lib/net45/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/net45/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.EnvironmentVariables.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta6": { + "serviceable": true, + "sha512": "czas9Cge4+tptJ3TCA8TSFZBuXS7CAXvEJu6ssD467uZ2QHZF/1EF4aUnJs9BJ5cTZ8+/baROjXL1jVS+QVDuA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Ini.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Ini.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Ini.xml", + "lib/net45/Microsoft.Framework.Configuration.Ini.dll", + "lib/net45/Microsoft.Framework.Configuration.Ini.xml", + "Microsoft.Framework.Configuration.Ini.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Ini.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Ini.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "w4Cwg6jgPd3XFGOgBGU3GVGVAwUcMglSDTlI23M8uI7yhDRSDbxZ2HPbjTEBMoj+IYdkfunZWFdA67tdk8L8Tg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta6": { + "sha512": "+y/7JAz5lC3cmxeNe88Bi80jw6gA2f092y7vk8J6GXOWcUV+I3QoBl0p2Hne5T2YDfZALtzuyVGqsXIaM1X93A==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Roslyn/1.0.0-beta6": { + "serviceable": true, + "sha512": "P15pRq5zhTX6VB3yKJATfHf9/QpLSJZRnof81fj0BlEx0sTZdYVojbd1FSLKaG8aKb0B82TZrwk49UqIsKvSMA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.xml", + "Microsoft.Framework.Runtime.Roslyn.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Roslyn.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Roslyn.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Roslyn.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "gEHCvzynTJl20HUNR0Ag2K5i07oQUk+XIakcagbS6dsz7SQO2YFPmCoxUAp4puqjfsb4XZ8koZHQfLsEDGJd2A==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.xml", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta6": { + "serviceable": true, + "sha512": "OvCNyGPZq645VdMzHZ8vLdlYIdl7KlZfVrCu+30DfwSCGV36ByJkUPHer3wU688jWFPx2S1OO7f82fJENYwz8Q==", + "files": [ + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll", + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.xml", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.xml", + "lib/net45/Microsoft.Framework.WebEncoders.Core.dll", + "lib/net45/Microsoft.Framework.WebEncoders.Core.xml", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta6.nupkg", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.WebEncoders.Core.nuspec", + "repo.json" + ] + }, + "Microsoft.Net.Http.Headers/1.0.0-beta6": { + "serviceable": true, + "sha512": "PeBHRiu9gSlP31Z1V3WEmIEb+1YJDdNdQY7xsSA98d3GnZqi+7ZERXVNcDDYMI16QViA/+Gq10HtYti8GwDHtQ==", + "files": [ + "lib/dnx451/Microsoft.Net.Http.Headers.dll", + "lib/dnx451/Microsoft.Net.Http.Headers.xml", + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll", + "lib/dnxcore50/Microsoft.Net.Http.Headers.xml", + "lib/net45/Microsoft.Net.Http.Headers.dll", + "lib/net45/Microsoft.Net.Http.Headers.xml", + "Microsoft.Net.Http.Headers.1.0.0-beta6.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-beta6.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec", + "repo.json" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "xunit.abstractions/2.0.0": { + "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0.nupkg", + "xunit.abstractions.2.0.0.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.1.0-beta3-build3029": { + "sha512": "AMS7Fv77DayXVRCBMmVEDwOXPcbxk8dCBA/iACsve+6+UQqopMtNyAynyIcXPFRK/peeitUKID4ChOXWisJmUw==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.1.0-beta3-build3029.nupkg", + "xunit.assert.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "sha512": "lsPro5U3NLasHI/RwqjKzXiRlh9N0IOlR3cluwXYVtihXbGtySeSnU/Fh5MTcWYxh+MVpoNop5zDD0/A2nrHsA==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "sha512": "WuUYamK4RHrHxihvNuX7NkryMhQrpH1+ziJ/mPIQbm18zevSgre8BwUuVZvmLZa8uVob3xS4dvAah2+HCgLiXg==", + "files": [ + "lib/dnx451/xunit.execution.dnx.dll", + "lib/dnx451/xunit.execution.dnx.pdb", + "lib/dnx451/xunit.execution.dnx.xml", + "lib/dnxcore50/xunit.execution.dnx.dll", + "lib/dnxcore50/xunit.execution.dnx.pdb", + "lib/dnxcore50/xunit.execution.dnx.xml", + "lib/monoandroid/xunit.execution.MonoAndroid.dll", + "lib/monoandroid/xunit.execution.MonoAndroid.pdb", + "lib/monoandroid/xunit.execution.MonoAndroid.xml", + "lib/monotouch/xunit.execution.MonoTouch.dll", + "lib/monotouch/xunit.execution.MonoTouch.pdb", + "lib/monotouch/xunit.execution.MonoTouch.xml", + "lib/net45/xunit.execution.desktop.dll", + "lib/net45/xunit.execution.desktop.pdb", + "lib/net45/xunit.execution.desktop.xml", + "lib/portable-wpa81+win81/xunit.execution.universal.dll", + "lib/portable-wpa81+win81/xunit.execution.universal.pdb", + "lib/portable-wpa81+win81/xunit.execution.universal.pri", + "lib/portable-wpa81+win81/xunit.execution.universal.xml", + "lib/wp8/xunit.execution.wp8.dll", + "lib/wp8/xunit.execution.wp8.pdb", + "lib/wp8/xunit.execution.wp8.xml", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.xml", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "sha512": "R6cvKy3mb8QjMxiTHqljsgwf424jYLbU07Ao0NcNHcRMT2OR+a2ldE6WdECiDMseYz/vuIaFQ6ebYRKEfMI/1A==", + "files": [ + "app/project.json", + "app/xunit", + "app/xunit.cmd", + "lib/dnx451/xunit.runner.dnx.dll", + "lib/dnx451/xunit.runner.dnx.xml", + "lib/dnxcore50/xunit.runner.dnx.dll", + "lib/dnxcore50/xunit.runner.dnx.xml", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg.sha512", + "xunit.runner.dnx.nuspec" + ] + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "sha512": "o+hiJTewV+4cA2GoHgbNC/FATjKxo2Z6PPeIdIfc7qysvYtu33POYUdo5XAqlRD9BQ7ojc8t/NOyZg/Qd9kjAg==", + "files": [ + "lib/dnx451/xunit.runner.reporters.dnx.dll", + "lib/dnxcore50/xunit.runner.reporters.dnx.dll", + "lib/net45/xunit.runner.reporters.desktop.dll", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.reporters.nuspec" + ] + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "sha512": "cm5lVNYtypOLgu6Vnd30UWPVNrcILzWmSul7tFrW/xT+ZjPYSES7kvYc80rKAUWXQl/awglhc5IMtAbHJi4abg==", + "files": [ + "lib/dnx451/xunit.runner.utility.dnx.dll", + "lib/dnx451/xunit.runner.utility.dnx.pdb", + "lib/dnx451/xunit.runner.utility.dnx.xml", + "lib/dnxcore50/xunit.runner.utility.dnx.dll", + "lib/dnxcore50/xunit.runner.utility.dnx.pdb", + "lib/dnxcore50/xunit.runner.utility.dnx.xml", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.dll", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.pdb", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.xml", + "lib/monotouch/xunit.runner.utility.MonoTouch.dll", + "lib/monotouch/xunit.runner.utility.MonoTouch.pdb", + "lib/monotouch/xunit.runner.utility.MonoTouch.xml", + "lib/net35/xunit.runner.utility.desktop.dll", + "lib/net35/xunit.runner.utility.desktop.pdb", + "lib/net35/xunit.runner.utility.desktop.xml", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.dll", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pdb", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pri", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.xml", + "lib/wp8/xunit.runner.utility.wp8.dll", + "lib/wp8/xunit.runner.utility.wp8.pdb", + "lib/wp8/xunit.runner.utility.wp8.xml", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.xml", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "EntityFramework.Commands >= 7.0.0-beta6", + "EntityFramework.Core.FunctionalTests >= 7.0.0-beta6", + "EntityFramework.SqlServer >= 7.0.0-beta6", + "Microsoft.Framework.Runtime.Roslyn >= 1.0.0-beta6", + "xunit.assert >= 2.1.0-*", + "xunit.extensibility.execution >= 2.1.0-*" + ], + ".NETFramework,Version=v4.6": [], + "DNX,Version=v4.5.1": [ + "xunit.runner.dnx >= 2.1.0-*" + ] + } +} \ No newline at end of file diff --git a/test/EntityFramework.Commands.Tests/project.json b/test/EntityFramework.Commands.Tests/project.json index 1f8f960c5d2..0a92c6aa3c7 100644 --- a/test/EntityFramework.Commands.Tests/project.json +++ b/test/EntityFramework.Commands.Tests/project.json @@ -1,15 +1,15 @@ { - "dependencies": { - "Microsoft.Framework.Runtime.Roslyn": "1.0.0-*", - "EntityFramework.Commands": "7.0.0-*", - "EntityFramework.Relational.Tests": "1.0.0" - }, - "compile": "..\\..\\src\\EntityFramework.Commands\\tools\\Handlers.cs", - "commands": { - "test": "xunit.runner.dnx" - }, - "frameworks": { - "net46": { }, - "dnx451": { } - } -} + "dependencies": { + "Microsoft.Framework.Runtime.Roslyn": "1.0.0-beta6", + "EntityFramework.Commands": "7.0.0-beta6", + "EntityFramework.Relational.Tests": "1.0.0" + }, + "compile": "..\\..\\src\\EntityFramework.Commands\\tools\\Handlers.cs", + "commands": { + "test": "xunit.runner.dnx" + }, + "frameworks": { + "net46": {}, + "dnx451": {} + } +} \ No newline at end of file diff --git a/test/EntityFramework.Commands.Tests/project.lock.json b/test/EntityFramework.Commands.Tests/project.lock.json new file mode 100644 index 00000000000..d5f17991819 --- /dev/null +++ b/test/EntityFramework.Commands.Tests/project.lock.json @@ -0,0 +1,2571 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.6": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.AspNet.Razor.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.AspNet.Razor.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn/1.0.0-beta6": {}, + "Moq/4.2.1312.1622": { + "compile": { + "lib/net40/Moq.dll": {} + }, + "runtime": { + "lib/net40/Moq.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/net45/xunit.execution.desktop.dll": {} + }, + "runtime": { + "lib/net45/xunit.execution.desktop.dll": {} + } + } + }, + "DNX,Version=v4.5.1": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.ComponentModel.DataAnnotations", + "System.Core", + "System.Diagnostics.Debug", + "System.Diagnostics.Tools", + "System.Globalization", + "System.Linq", + "System.Linq.Expressions", + "System.Linq.Queryable", + "System.ObjectModel", + "System.Reflection", + "System.Reflection.Extensions", + "System.Resources.ResourceManager", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading" + ], + "compile": { + "lib/dnx451/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dnx451/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta6", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Http": "1.0.0-beta6", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta6", + "Microsoft.Framework.Configuration": "1.0.0-beta6", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta6", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta6", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta6", + "Microsoft.Net.Http.Headers": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta6", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6", + "Microsoft.Net.Http.Headers": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Razor.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Razor.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "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.CommandLineUtils.Sources/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Roslyn.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.Text.Encoding", + "System.Threading.Tasks" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.0.0", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Moq/4.2.1312.1622": { + "compile": { + "lib/net40/Moq.dll": {} + }, + "runtime": { + "lib/net40/Moq.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnx451/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.ObjectModel", + "System.Reflection", + "System.Runtime", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "serviceable": true, + "sha512": "u4CXBQEmftJJD7U500i79xS2MwPyptOZLFqBAAwHVp7RuuAB0k2u9iFvdA2kgQZNhzkyooUTcS/+n4EPJalpaw==", + "files": [ + "EntityFramework.InMemory.7.0.0-beta6.nupkg", + "EntityFramework.InMemory.7.0.0-beta6.nupkg.sha512", + "EntityFramework.InMemory.nuspec", + "lib/dotnet/EntityFramework.InMemory.dll", + "lib/dotnet/EntityFramework.InMemory.xml", + "lib/net45/EntityFramework.InMemory.dll", + "lib/net45/EntityFramework.InMemory.xml", + "repo.json" + ] + }, + "EntityFramework.Relational/7.0.0-beta6": { + "serviceable": true, + "sha512": "2CVE3UZjzXDRFYyfVL0lePnK1t2ZyLexNE88SiuUhY4mPC5SOWmDZ7mhLvtXeVJL/7PBpEmDy0qSDZRBpJ/Kiw==", + "files": [ + "EntityFramework.Relational.7.0.0-beta6.nupkg", + "EntityFramework.Relational.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Relational.nuspec", + "lib/dotnet/EntityFramework.Relational.dll", + "lib/dotnet/EntityFramework.Relational.xml", + "lib/net45/EntityFramework.Relational.dll", + "lib/net45/EntityFramework.Relational.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "6SdDa7Fx/38scBkaOGySzkSMQhk58ERdzouVyxJ9FhhXph2MEMgSuqNACCgTOX6+zFl6ZUwJG0DphQ+iYv2jrw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll", + "lib/dnx451/Microsoft.AspNet.FeatureModel.xml", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.xml", + "Microsoft.AspNet.FeatureModel.1.0.0-beta6.nupkg", + "Microsoft.AspNet.FeatureModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.FeatureModel.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "KocyYqntJkcGv4//VyaolXixf/XRInce9xtvbgb7n3+UtKFDU/q0CvSV/8OoLhIoYxTvC61bQcyoCOg6AlSfTg==", + "files": [ + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.xml", + "lib/net45/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/net45/Microsoft.AspNet.FileProviders.Abstractions.xml", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta6": { + "serviceable": true, + "sha512": "jQR2r1ZMD80IG++gPq0YElidsvZUiauH6KImIXVM/TD3NGYNeksm97XbKV2r5hUGrTBYfqItmvWRuTCjW6io1Q==", + "files": [ + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.xml", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.xml", + "lib/net45/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/net45/Microsoft.AspNet.FileProviders.Physical.xml", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta6.nupkg", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Physical.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting/1.0.0-beta6": { + "serviceable": true, + "sha512": "q9MmbmxtnXdtWoJreTESNY/fNq2I2KSLD6XPg3vLnFK2qWvCBvNq29qVi67ft2bGLhjpxQLO0NYah4d1yhzpag==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Hosting.dll", + "lib/dnx451/Microsoft.AspNet.Hosting.xml", + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll", + "lib/dnxcore50/Microsoft.AspNet.Hosting.xml", + "Microsoft.AspNet.Hosting.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Hosting.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Hosting.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "gAqZ7jxzQroxKtbVU0Azwp05jt9DqdSYBnc7touWEms3vgS8AX16NU+l4OAPXKlAyKHsmy8P1JNM9zNbPD/kOA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.xml", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Hosting.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta6": { + "sha512": "iXOxv5XEBy/Hpq6ncoZ08qbrf55xiM1aZWyjiP9oASRqIAuHi9d5zh3ehsLKaiUQCfsfFozkPBoSwv7pRg/ZSQ==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.xml", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Hosting.Server.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http/1.0.0-beta6": { + "serviceable": true, + "sha512": "67oPgXxtKkenyJ6cQv1w5SFX1Iy9E5kGJ/nFLZb8y0NFq0q40VU+TSTaNksyAN/7NCLSdpXdZqLRIplkc/VdUw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.dll", + "lib/dnx451/Microsoft.AspNet.Http.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.xml", + "Microsoft.AspNet.Http.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "yb6WdoTelIHfgNuKzHp5uu4qHB7CyXAs+41PFyskNTkWn4TwCXzoCnpJV08X3n2GdjqMCzeb2U2FFafmeZxAkQ==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.xml", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta6": { + "serviceable": true, + "sha512": "Ad/hoYInYZLVJ0ch0jXCA4SXLo2AykwSrlr5c1l/9V2YCC4WHWwqFEMuS+3vIRMECHWbHuQJBz2HEcdPWrGoyw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll", + "lib/dnx451/Microsoft.AspNet.Http.Extensions.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.xml", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta6": { + "serviceable": true, + "sha512": "x9m0cW55Y5oFBCgD4Yqwfyu14kw0AkNm2UFgrdCpTy6h7GBaV2nc5sSx6SgoP4fwThco5gac29GpH8IBXOUeYA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.Features.dll", + "lib/dnx451/Microsoft.AspNet.Http.Features.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.Features.xml", + "Microsoft.AspNet.Http.Features.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "serviceable": true, + "sha512": "GkdomN9ySGxL9FqgD8pdxxljGWvIFOyRPKzbLe+XseKDfpP9YNzkX2+oD2TLcwCl/O7bJcX2F7k0Zlf96fMpfw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Razor.dll", + "lib/dnx451/Microsoft.AspNet.Razor.xml", + "lib/dnxcore50/Microsoft.AspNet.Razor.dll", + "lib/dnxcore50/Microsoft.AspNet.Razor.xml", + "lib/net45/Microsoft.AspNet.Razor.dll", + "lib/net45/Microsoft.AspNet.Razor.xml", + "Microsoft.AspNet.Razor.4.0.0-beta6.nupkg", + "Microsoft.AspNet.Razor.4.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Razor.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta6": { + "serviceable": true, + "sha512": "bLN5Nk0K9DB5trMtXUIrvNMxm+VKVPKcUHfM7mGBaKbBSARVvd5KIJTt+8Z9UF1IjjItd4/bV6gRTbo1Fo3/lw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll", + "lib/dnx451/Microsoft.AspNet.WebUtilities.xml", + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll", + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.xml", + "Microsoft.AspNet.WebUtilities.1.0.0-beta6.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec", + "repo.json" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "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.0.0": { + "sha512": "MhxsY8N9veim57uXqcRCJb7X9xZoWhMDU4/EyIqNkS7qfRsLxrzELSpjp6NjFkISZElvwIV2Ehi3UxyJui/gPw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "sha512": "KZ70r7EF+Dn8qp2p1CiBJGVoIG6el7Q9cLhnXuq+3oLcnMvUk2XzimB36AgO/Qg/liqRzf992WmFWhwqZSaIEg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta6": { + "sha512": "SoI/xicmO2Nutc3y1Wxg2GIR18M5IDqYjUR5plULxb8XCMDeJ8oYKAicpEeHuc/GNUHiICmac0U4li50DTVqBA==", + "files": [ + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.xml", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.xml", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta6.nupkg", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.CommandLineUtils.Sources.nuspec", + "shared/AnsiConsole.cs", + "shared/CommandArgument.cs", + "shared/CommandLineApplication.cs", + "shared/CommandOption.cs", + "shared/CommandOptionType.cs" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta6": { + "serviceable": true, + "sha512": "9DX3AnuzuNl4QZLP/U/zkW03cASmOKJafcAXf1c/DUTJ7nRq9jUyVk9myJYd7+t0nmXXS1majXAHG3oQ/RGfTw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll", + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.xml", + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.dll", + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.xml", + "lib/net45/Microsoft.Framework.Configuration.CommandLine.dll", + "lib/net45/Microsoft.Framework.Configuration.CommandLine.xml", + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.CommandLine.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6": { + "serviceable": true, + "sha512": "wUYZglLlkxL6xpbOHv6TqeJeT3GwpOxNRw3gkWOpM7OVrhAORm1pWnQ4qA+kWs5RDXSEntv47dK95MIypfIWKQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "lib/net45/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/net45/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.EnvironmentVariables.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta6": { + "serviceable": true, + "sha512": "czas9Cge4+tptJ3TCA8TSFZBuXS7CAXvEJu6ssD467uZ2QHZF/1EF4aUnJs9BJ5cTZ8+/baROjXL1jVS+QVDuA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Ini.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Ini.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Ini.xml", + "lib/net45/Microsoft.Framework.Configuration.Ini.dll", + "lib/net45/Microsoft.Framework.Configuration.Ini.xml", + "Microsoft.Framework.Configuration.Ini.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Ini.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Ini.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "w4Cwg6jgPd3XFGOgBGU3GVGVAwUcMglSDTlI23M8uI7yhDRSDbxZ2HPbjTEBMoj+IYdkfunZWFdA67tdk8L8Tg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta6": { + "sha512": "+y/7JAz5lC3cmxeNe88Bi80jw6gA2f092y7vk8J6GXOWcUV+I3QoBl0p2Hne5T2YDfZALtzuyVGqsXIaM1X93A==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Roslyn/1.0.0-beta6": { + "serviceable": true, + "sha512": "P15pRq5zhTX6VB3yKJATfHf9/QpLSJZRnof81fj0BlEx0sTZdYVojbd1FSLKaG8aKb0B82TZrwk49UqIsKvSMA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.xml", + "Microsoft.Framework.Runtime.Roslyn.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Roslyn.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Roslyn.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Roslyn.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "gEHCvzynTJl20HUNR0Ag2K5i07oQUk+XIakcagbS6dsz7SQO2YFPmCoxUAp4puqjfsb4XZ8koZHQfLsEDGJd2A==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.xml", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta6": { + "serviceable": true, + "sha512": "OvCNyGPZq645VdMzHZ8vLdlYIdl7KlZfVrCu+30DfwSCGV36ByJkUPHer3wU688jWFPx2S1OO7f82fJENYwz8Q==", + "files": [ + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll", + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.xml", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.xml", + "lib/net45/Microsoft.Framework.WebEncoders.Core.dll", + "lib/net45/Microsoft.Framework.WebEncoders.Core.xml", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta6.nupkg", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.WebEncoders.Core.nuspec", + "repo.json" + ] + }, + "Microsoft.Net.Http.Headers/1.0.0-beta6": { + "serviceable": true, + "sha512": "PeBHRiu9gSlP31Z1V3WEmIEb+1YJDdNdQY7xsSA98d3GnZqi+7ZERXVNcDDYMI16QViA/+Gq10HtYti8GwDHtQ==", + "files": [ + "lib/dnx451/Microsoft.Net.Http.Headers.dll", + "lib/dnx451/Microsoft.Net.Http.Headers.xml", + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll", + "lib/dnxcore50/Microsoft.Net.Http.Headers.xml", + "lib/net45/Microsoft.Net.Http.Headers.dll", + "lib/net45/Microsoft.Net.Http.Headers.xml", + "Microsoft.Net.Http.Headers.1.0.0-beta6.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-beta6.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec", + "repo.json" + ] + }, + "Moq/4.2.1312.1622": { + "sha512": "mPAjm1Kv9jX745D3hEYDBycRT0T8gnAJE2dutbfP9meyHiRrCgQarHajEvKh5SMKM1D3RcHGr/Pg3JJEtKhu9Q==", + "files": [ + "lib/net35/Moq.dll", + "lib/net35/Moq.xml", + "lib/net40/Moq.dll", + "lib/net40/Moq.xml", + "lib/sl4/Moq.Silverlight.dll", + "lib/sl4/Moq.Silverlight.xml", + "Moq.4.2.1312.1622.nupkg", + "Moq.4.2.1312.1622.nupkg.sha512", + "Moq.nuspec" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "xunit.abstractions/2.0.0": { + "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0.nupkg", + "xunit.abstractions.2.0.0.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.1.0-beta3-build3029": { + "sha512": "AMS7Fv77DayXVRCBMmVEDwOXPcbxk8dCBA/iACsve+6+UQqopMtNyAynyIcXPFRK/peeitUKID4ChOXWisJmUw==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.1.0-beta3-build3029.nupkg", + "xunit.assert.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "sha512": "lsPro5U3NLasHI/RwqjKzXiRlh9N0IOlR3cluwXYVtihXbGtySeSnU/Fh5MTcWYxh+MVpoNop5zDD0/A2nrHsA==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "sha512": "WuUYamK4RHrHxihvNuX7NkryMhQrpH1+ziJ/mPIQbm18zevSgre8BwUuVZvmLZa8uVob3xS4dvAah2+HCgLiXg==", + "files": [ + "lib/dnx451/xunit.execution.dnx.dll", + "lib/dnx451/xunit.execution.dnx.pdb", + "lib/dnx451/xunit.execution.dnx.xml", + "lib/dnxcore50/xunit.execution.dnx.dll", + "lib/dnxcore50/xunit.execution.dnx.pdb", + "lib/dnxcore50/xunit.execution.dnx.xml", + "lib/monoandroid/xunit.execution.MonoAndroid.dll", + "lib/monoandroid/xunit.execution.MonoAndroid.pdb", + "lib/monoandroid/xunit.execution.MonoAndroid.xml", + "lib/monotouch/xunit.execution.MonoTouch.dll", + "lib/monotouch/xunit.execution.MonoTouch.pdb", + "lib/monotouch/xunit.execution.MonoTouch.xml", + "lib/net45/xunit.execution.desktop.dll", + "lib/net45/xunit.execution.desktop.pdb", + "lib/net45/xunit.execution.desktop.xml", + "lib/portable-wpa81+win81/xunit.execution.universal.dll", + "lib/portable-wpa81+win81/xunit.execution.universal.pdb", + "lib/portable-wpa81+win81/xunit.execution.universal.pri", + "lib/portable-wpa81+win81/xunit.execution.universal.xml", + "lib/wp8/xunit.execution.wp8.dll", + "lib/wp8/xunit.execution.wp8.pdb", + "lib/wp8/xunit.execution.wp8.xml", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.xml", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "sha512": "R6cvKy3mb8QjMxiTHqljsgwf424jYLbU07Ao0NcNHcRMT2OR+a2ldE6WdECiDMseYz/vuIaFQ6ebYRKEfMI/1A==", + "files": [ + "app/project.json", + "app/xunit", + "app/xunit.cmd", + "lib/dnx451/xunit.runner.dnx.dll", + "lib/dnx451/xunit.runner.dnx.xml", + "lib/dnxcore50/xunit.runner.dnx.dll", + "lib/dnxcore50/xunit.runner.dnx.xml", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg.sha512", + "xunit.runner.dnx.nuspec" + ] + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "sha512": "o+hiJTewV+4cA2GoHgbNC/FATjKxo2Z6PPeIdIfc7qysvYtu33POYUdo5XAqlRD9BQ7ojc8t/NOyZg/Qd9kjAg==", + "files": [ + "lib/dnx451/xunit.runner.reporters.dnx.dll", + "lib/dnxcore50/xunit.runner.reporters.dnx.dll", + "lib/net45/xunit.runner.reporters.desktop.dll", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.reporters.nuspec" + ] + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "sha512": "cm5lVNYtypOLgu6Vnd30UWPVNrcILzWmSul7tFrW/xT+ZjPYSES7kvYc80rKAUWXQl/awglhc5IMtAbHJi4abg==", + "files": [ + "lib/dnx451/xunit.runner.utility.dnx.dll", + "lib/dnx451/xunit.runner.utility.dnx.pdb", + "lib/dnx451/xunit.runner.utility.dnx.xml", + "lib/dnxcore50/xunit.runner.utility.dnx.dll", + "lib/dnxcore50/xunit.runner.utility.dnx.pdb", + "lib/dnxcore50/xunit.runner.utility.dnx.xml", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.dll", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.pdb", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.xml", + "lib/monotouch/xunit.runner.utility.MonoTouch.dll", + "lib/monotouch/xunit.runner.utility.MonoTouch.pdb", + "lib/monotouch/xunit.runner.utility.MonoTouch.xml", + "lib/net35/xunit.runner.utility.desktop.dll", + "lib/net35/xunit.runner.utility.desktop.pdb", + "lib/net35/xunit.runner.utility.desktop.xml", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.dll", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pdb", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pri", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.xml", + "lib/wp8/xunit.runner.utility.wp8.dll", + "lib/wp8/xunit.runner.utility.wp8.pdb", + "lib/wp8/xunit.runner.utility.wp8.xml", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.xml", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.Framework.Runtime.Roslyn >= 1.0.0-beta6", + "EntityFramework.Commands >= 7.0.0-beta6", + "EntityFramework.Relational.Tests >= 1.0.0" + ], + ".NETFramework,Version=v4.6": [], + "DNX,Version=v4.5.1": [] + } +} \ No newline at end of file diff --git a/test/EntityFramework.Core.FunctionalTests/project.json b/test/EntityFramework.Core.FunctionalTests/project.json index d065c3ba4a7..ea783889794 100644 --- a/test/EntityFramework.Core.FunctionalTests/project.json +++ b/test/EntityFramework.Core.FunctionalTests/project.json @@ -1,34 +1,37 @@ { - "version": "7.0.0-*", - "description": "Reusable EntityFramework.Core functional tests for provider writers.", - "dependencies": { - "EntityFramework.InMemory": "7.0.0-*", - "xunit.assert": "2.1.0-*", - "xunit.extensibility.execution": "2.1.0-*" - }, - "commands": { - "test": "xunit.runner.dnx" - }, - "frameworks": { - "net46": { - "frameworkAssemblies": { - "System.Threading.Tasks": { "version": "4.0.0.0", "type": "build" }, - "WindowsBase": "4.0.0.0" - } + "version": "7.0.0-beta6", + "description": "Reusable EntityFramework.Core functional tests for provider writers.", + "dependencies": { + "EntityFramework.InMemory": "7.0.0-beta6", + "xunit.assert": "2.1.0-*", + "xunit.extensibility.execution": "2.1.0-*" }, - "dnx451": { - "dependencies": { - "xunit.runner.dnx": "2.1.0-*" - }, - "frameworkAssemblies": { - "WindowsBase": "4.0.0.0" - } + "commands": { + "test": "xunit.runner.dnx" }, - "dnxcore50": { - "dependencies": { - "Microsoft.CSharp": "4.0.0-beta-*", - "xunit.runner.dnx": "2.1.0-*" - } + "frameworks": { + "net46": { + "frameworkAssemblies": { + "System.Threading.Tasks": { + "version": "4.0.0.0", + "type": "build" + }, + "WindowsBase": "4.0.0.0" + } + }, + "dnx451": { + "dependencies": { + "xunit.runner.dnx": "2.1.0-*" + }, + "frameworkAssemblies": { + "WindowsBase": "4.0.0.0" + } + }, + "dnxcore50": { + "dependencies": { + "Microsoft.CSharp": "4.0.0-beta-23109", + "xunit.runner.dnx": "2.1.0-*" + } + } } - } -} +} \ No newline at end of file diff --git a/test/EntityFramework.Core.FunctionalTests/project.lock.json b/test/EntityFramework.Core.FunctionalTests/project.lock.json new file mode 100644 index 00000000000..fc19c532a37 --- /dev/null +++ b/test/EntityFramework.Core.FunctionalTests/project.lock.json @@ -0,0 +1,4629 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.6": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/net45/xunit.execution.desktop.dll": {} + }, + "runtime": { + "lib/net45/xunit.execution.desktop.dll": {} + } + } + }, + "DNX,Version=v4.5.1": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.ComponentModel.DataAnnotations", + "System.Core", + "System.Diagnostics.Debug", + "System.Diagnostics.Tools", + "System.Globalization", + "System.Linq", + "System.Linq.Expressions", + "System.Linq.Queryable", + "System.ObjectModel", + "System.Reflection", + "System.Reflection.Extensions", + "System.Resources.ResourceManager", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading" + ], + "compile": { + "lib/dnx451/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dnx451/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "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.CommandLineUtils.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnx451/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.ObjectModel", + "System.Reflection", + "System.Runtime", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Collections.Immutable": "1.1.37-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.ComponentModel.Annotations": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Queryable": "4.0.0-beta-23109", + "System.ObjectModel": "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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "compile": { + "lib/dotnet/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.InMemory.dll": {} + } + }, + "Ix-Async/1.2.4": { + "compile": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + } + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Dynamic.Runtime": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.10-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.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Linq": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.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.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Dynamic.Runtime": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Resources.ReaderWriter": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Threading.Timer": "4.0.0-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019", + "System.Xml.XmlSerializer": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.AppContext": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Loader": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Process": "4.0.0-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.Sockets": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + } + }, + "System.AppContext/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tracing": "4.0.20-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Overlapped": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit": "4.0.0-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "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.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23109": { + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ReaderWriter.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ReaderWriter.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23109": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Xml.ReaderWriter": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XmlDocument": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnxcore50/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.0-beta-23019", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnxcore50/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Net.Http": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnxcore50/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnxcore50/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.utility.dnx.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "serviceable": true, + "sha512": "u4CXBQEmftJJD7U500i79xS2MwPyptOZLFqBAAwHVp7RuuAB0k2u9iFvdA2kgQZNhzkyooUTcS/+n4EPJalpaw==", + "files": [ + "EntityFramework.InMemory.7.0.0-beta6.nupkg", + "EntityFramework.InMemory.7.0.0-beta6.nupkg.sha512", + "EntityFramework.InMemory.nuspec", + "lib/dotnet/EntityFramework.InMemory.dll", + "lib/dotnet/EntityFramework.InMemory.xml", + "lib/net45/EntityFramework.InMemory.dll", + "lib/net45/EntityFramework.InMemory.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "MO4Lu8aMS1vL4Omp/gIMl2hr4sdV1l99p6xhAExGnS3MlFEa5JYPDL5mpdeg/osDH+1gAhb11xMJTYP7Ya3cAA==", + "files": [ + "lib/dotnet/Microsoft.CSharp.dll", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg.sha512", + "Microsoft.CSharp.nuspec", + "ref/dotnet/de/Microsoft.CSharp.xml", + "ref/dotnet/es/Microsoft.CSharp.xml", + "ref/dotnet/fr/Microsoft.CSharp.xml", + "ref/dotnet/it/Microsoft.CSharp.xml", + "ref/dotnet/ja/Microsoft.CSharp.xml", + "ref/dotnet/ko/Microsoft.CSharp.xml", + "ref/dotnet/Microsoft.CSharp.dll", + "ref/dotnet/Microsoft.CSharp.xml", + "ref/dotnet/ru/Microsoft.CSharp.xml", + "ref/dotnet/zh-hans/Microsoft.CSharp.xml", + "ref/dotnet/zh-hant/Microsoft.CSharp.xml", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta5": { + "sha512": "sZIlSWm9r2CFDI5JB21lKwa8Hq7DZPBYx3LcBnuxZnhSh2AwrhrS88YUZSMP6QCV+PHMwj0udTdnS1eZ2DbM7w==", + "files": [ + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.xml", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.xml", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.CommandLineUtils.Sources.nuspec", + "shared/AnsiConsole.cs", + "shared/CommandArgument.cs", + "shared/CommandLineApplication.cs", + "shared/CommandOption.cs", + "shared/CommandOptionType.cs" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.AppContext/4.0.0-beta-23019": { + "sha512": "dtYrJWnRhdNNbuTQf8ZhL9FhR+zef7ExSEHwqCF7e3YTPcL3XhUF7SD4Ij2rF3DJNMWT/r/8dgAs/9mNmOD66w==", + "files": [ + "lib/DNXCore50/System.AppContext.dll", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "ref/dotnet/System.AppContext.dll", + "ref/net46/System.AppContext.dll", + "System.AppContext.4.0.0-beta-23019.nupkg", + "System.AppContext.4.0.0-beta-23019.nupkg.sha512", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "2/VX+2QEyyIpvGDzuIXX8V0vSl/Llt673DR48nNmeA6BoMuwL4Eu4F1Meh9fPp80nhcjifqVK8g7/UQDn/0PFw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23109.nupkg", + "System.Collections.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "fRXR5y4dg9zPovFpSQZkc6gnyMNlQJVQ8lKqPDPFSIelhqWxv2VyY87s5Vd9ViGwKrFwekDwCQFug9ny8qCHuA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Collections.Concurrent.xml", + "ref/dotnet/es/System.Collections.Concurrent.xml", + "ref/dotnet/fr/System.Collections.Concurrent.xml", + "ref/dotnet/it/System.Collections.Concurrent.xml", + "ref/dotnet/ja/System.Collections.Concurrent.xml", + "ref/dotnet/ko/System.Collections.Concurrent.xml", + "ref/dotnet/ru/System.Collections.Concurrent.xml", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/dotnet/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "sha512": "ijnoxLU+SrSf1AItfZOwtnzyx7yEi+WJtKa3d2X93Xf5YHlRsL4RwMZ10M9gLE8E+Rpi3ZJM5wAXi6OFSprDtw==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/net46/System.Collections.NonGeneric.dll", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "JFzHUvX28tQbud0c9AP+SFeOroBG9x7tgc0OYu0Z5nQotnIiwP5nHXq9DoK3N2y0MoRUt8jy2FwkRMAYgiQuNQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.ComponentModel.xml", + "ref/dotnet/es/System.ComponentModel.xml", + "ref/dotnet/fr/System.ComponentModel.xml", + "ref/dotnet/it/System.ComponentModel.xml", + "ref/dotnet/ja/System.ComponentModel.xml", + "ref/dotnet/ko/System.ComponentModel.xml", + "ref/dotnet/ru/System.ComponentModel.xml", + "ref/dotnet/System.ComponentModel.dll", + "ref/dotnet/System.ComponentModel.xml", + "ref/dotnet/zh-hans/System.ComponentModel.xml", + "ref/dotnet/zh-hant/System.ComponentModel.xml", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.0-beta-23109.nupkg", + "System.ComponentModel.4.0.0-beta-23109.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "tfq+u00KcRXrvtYS4v7Bi4NgfFXt0sx5IgqqgeWCOFtwhDTVWgL3XJN/lanFtANnG7+zVU3+B5mvjH1pblGHxg==", + "files": [ + "lib/dotnet/System.ComponentModel.Annotations.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ComponentModel.Annotations.xml", + "ref/dotnet/es/System.ComponentModel.Annotations.xml", + "ref/dotnet/fr/System.ComponentModel.Annotations.xml", + "ref/dotnet/it/System.ComponentModel.Annotations.xml", + "ref/dotnet/ja/System.ComponentModel.Annotations.xml", + "ref/dotnet/ko/System.ComponentModel.Annotations.xml", + "ref/dotnet/ru/System.ComponentModel.Annotations.xml", + "ref/dotnet/System.ComponentModel.Annotations.dll", + "ref/dotnet/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", + "ref/net46/_._", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg.sha512", + "System.ComponentModel.Annotations.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "woJsNwCtAqYac5zp+6Wy40HAp7kYr8zhaFvHl3gECjQf+VGeGYaHgDV1ATVcyMG1h6XvmX0wtmD5Qds51CRJoA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "sha512": "1vuXv89pElI0JeDhnXokMyy9VkLpkDFa+oU3selb5uhHfzVswH1etFBumZ0VKKvTOAnm8AS/3ZDXAVlRjywq3A==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Process.dll", + "lib/net46/System.Diagnostics.Process.dll", + "ref/dotnet/System.Diagnostics.Process.dll", + "ref/net46/System.Diagnostics.Process.dll", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Process.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6tFdP3p3SV6DZOagwW5ThfUF+zp5pUIyW4CY2K4B2RxV6HGVyY/8J2EuZGrcEP3wdO5fXnb9MmdOZa5Tn01Hmg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Diagnostics.Tools.xml", + "ref/dotnet/es/System.Diagnostics.Tools.xml", + "ref/dotnet/fr/System.Diagnostics.Tools.xml", + "ref/dotnet/it/System.Diagnostics.Tools.xml", + "ref/dotnet/ja/System.Diagnostics.Tools.xml", + "ref/dotnet/ko/System.Diagnostics.Tools.xml", + "ref/dotnet/ru/System.Diagnostics.Tools.xml", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/dotnet/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "sha512": "MZxMo9Skg9oZrJYwGpRfeOfrTfHxmTPWhj8XIXdIryfArzwG1FjZgzOrkWWcON0PdV9OywZYGly09nUCs/JdhA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.TraceSource.dll", + "lib/net46/System.Diagnostics.TraceSource.dll", + "ref/dotnet/System.Diagnostics.TraceSource.dll", + "ref/net46/System.Diagnostics.TraceSource.dll", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.TraceSource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "sNauLSBFewFLjULHeplEr7FCmmfPbcc1jfz1Mynjy445bYiP/IW1q9X14a//oV/uQG7p82S9qHyfPxoxmt3pxQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/de/System.Diagnostics.Tracing.xml", + "ref/dotnet/es/System.Diagnostics.Tracing.xml", + "ref/dotnet/fr/System.Diagnostics.Tracing.xml", + "ref/dotnet/it/System.Diagnostics.Tracing.xml", + "ref/dotnet/ja/System.Diagnostics.Tracing.xml", + "ref/dotnet/ko/System.Diagnostics.Tracing.xml", + "ref/dotnet/ru/System.Diagnostics.Tracing.xml", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "sha512": "yhXko8+R8fy0RERn6xQltYEhChBNyGEQgntwjHqNBc3x1M7wvg+Ye72Bh1QVQfnMIXZ0tG8XSrQs8hJe8KjYjg==", + "files": [ + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23109": { + "sha512": "l4QNrgLmC4KHGLcfriJ2EmsM2j18xefJzCnLU6YqVdBFaYzsJGwqmHyIr4nqw9DBjdWEtzdHLEbvpLeEay0ZWQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23109.nupkg", + "System.Globalization.4.0.10-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.IO/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "DVHSyfJO8mC9CpZFjjuaOWazALkWFnI6b/fqTQCjNe1dp2XasuvTRiV/qIOJB+uyDVex8sH8QMRUDS6ukimyLA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/de/System.IO.xml", + "ref/dotnet/es/System.IO.xml", + "ref/dotnet/fr/System.IO.xml", + "ref/dotnet/it/System.IO.xml", + "ref/dotnet/ja/System.IO.xml", + "ref/dotnet/ko/System.IO.xml", + "ref/dotnet/ru/System.IO.xml", + "ref/dotnet/System.IO.dll", + "ref/dotnet/System.IO.xml", + "ref/dotnet/zh-hans/System.IO.xml", + "ref/dotnet/zh-hant/System.IO.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23109.nupkg", + "System.IO.4.0.10-beta-23109.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._", + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "OusDe4B1/Q3BYY4QzNfztnyPPK9a1OGsQVZBg41C1bk8F2S3AOtXCx0GUwAfKbVxxS4dOdIgxWw1JN5m+IlpAA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/de/System.IO.FileSystem.xml", + "ref/dotnet/es/System.IO.FileSystem.xml", + "ref/dotnet/fr/System.IO.FileSystem.xml", + "ref/dotnet/it/System.IO.FileSystem.xml", + "ref/dotnet/ja/System.IO.FileSystem.xml", + "ref/dotnet/ko/System.IO.FileSystem.xml", + "ref/dotnet/ru/System.IO.FileSystem.xml", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.xml", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "1JFc6+hsLnlYgACgluhMi19zFkNruPgWoLDq30z7qMKgs3FZqShvXDZLTQ1Hk+cnenUoUU/8P8yRdmbdQaf4yg==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "sha512": "+xsD0H46/EB88848d9cHel2WVbUWlM/Y/k+tuY5lp2jXSwV8zMJ6F3TjMqeUZwWtUUavw+AN7D0a4ZoGVs/Rcw==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "cy+sQJW809QnFHIXt5Y/If45u362gwiNqHldnJS70l7VCjyR4Bo3UgZMZl+bowSupWxqXk69cwCQhRUyFu2hVw==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/de/System.Linq.Expressions.xml", + "ref/dotnet/es/System.Linq.Expressions.xml", + "ref/dotnet/fr/System.Linq.Expressions.xml", + "ref/dotnet/it/System.Linq.Expressions.xml", + "ref/dotnet/ja/System.Linq.Expressions.xml", + "ref/dotnet/ko/System.Linq.Expressions.xml", + "ref/dotnet/ru/System.Linq.Expressions.xml", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.xml", + "ref/dotnet/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet/zh-hant/System.Linq.Expressions.xml", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Mu6nIhw5k/zAMigeCh4aqma3kwXLoyPREVD6RxVPhGu2QJjAEeih0GWumoDjtdFp0B5Q6sYeakWDAds7NmzWQg==", + "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.0-beta-23019": { + "sha512": "8mt4X1eIjTMrKVINJuzuFYf7C4GrYFC+tlvc2zH5HtxKPpbFZamMUdJ19ORxZ9ds053aqQASdiha7eH86PN+eg==", + "files": [ + "lib/DNXCore50/System.Net.Http.dll", + "lib/net45/_._", + "lib/netcore50/System.Net.Http.dll", + "lib/win8/_._", + "ref/dotnet/System.Net.Http.dll", + "ref/net45/_._", + "ref/netcore50/System.Net.Http.dll", + "ref/win8/_._", + "System.Net.Http.4.0.0-beta-23019.nupkg", + "System.Net.Http.4.0.0-beta-23019.nupkg.sha512", + "System.Net.Http.nuspec" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._", + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "sha512": "4NWuSdsFSf21iJkd+NQaE2OwtNaKGdXIbBbQmfE43evHl6fUII38wwNnooWtF0avCEyU6BOdUTiwoZAUZyQwcA==", + "files": [ + "lib/DNXCore50/System.Net.Sockets.dll", + "ref/dotnet/System.Net.Sockets.dll", + "System.Net.Sockets.4.0.10-beta-23019.nupkg", + "System.Net.Sockets.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Sockets.nuspec" + ] + }, + "System.ObjectModel/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "mnrhXE8nT5mX/ndEJ5BsdLCgN6CofKiwQvr9Olsp/s3crY5/lXYM73N2bNSvsFcHD1o0XhaCOn18Vekv6SYTpg==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ObjectModel.xml", + "ref/dotnet/es/System.ObjectModel.xml", + "ref/dotnet/fr/System.ObjectModel.xml", + "ref/dotnet/it/System.ObjectModel.xml", + "ref/dotnet/ja/System.ObjectModel.xml", + "ref/dotnet/ko/System.ObjectModel.xml", + "ref/dotnet/ru/System.ObjectModel.xml", + "ref/dotnet/System.ObjectModel.dll", + "ref/dotnet/System.ObjectModel.xml", + "ref/dotnet/zh-hans/System.ObjectModel.xml", + "ref/dotnet/zh-hant/System.ObjectModel.xml", + "ref/net46/_._", + "System.ObjectModel.4.0.10-beta-23109.nupkg", + "System.ObjectModel.4.0.10-beta-23109.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "y6M7TxwDXBD2in5cCf+KzucZyx7YE7SJMcU24atzYnpwP2xFASUYCeI6NRg5bYcw2Do5HKBz+XdE9WiZrwpnFg==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23109.nupkg", + "System.Private.Uri.4.0.0-beta-23109.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23109": { + "sha512": "aeXO8gjPb46LaP727cXDcCZ2mZoMxguq2UhE25wJoO1Je8Q8D2JFonNk85oVlgXCdEM6XgrtRnsnhvj8PmTBNg==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/de/System.Reflection.xml", + "ref/dotnet/es/System.Reflection.xml", + "ref/dotnet/fr/System.Reflection.xml", + "ref/dotnet/it/System.Reflection.xml", + "ref/dotnet/ja/System.Reflection.xml", + "ref/dotnet/ko/System.Reflection.xml", + "ref/dotnet/ru/System.Reflection.xml", + "ref/dotnet/System.Reflection.dll", + "ref/dotnet/System.Reflection.xml", + "ref/dotnet/zh-hans/System.Reflection.xml", + "ref/dotnet/zh-hant/System.Reflection.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23109.nupkg", + "System.Reflection.4.0.10-beta-23109.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "sha512": "H8QtiSXFHNiQIPZe3PdNJPIjuH9O/A8+/52bw2RIKgV8rMrshmi2LufTvYCb+V5YPBFYWg2Yt8nRISEY4+uV5Q==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/de/System.Reflection.Emit.xml", + "ref/dotnet/es/System.Reflection.Emit.xml", + "ref/dotnet/fr/System.Reflection.Emit.xml", + "ref/dotnet/it/System.Reflection.Emit.xml", + "ref/dotnet/ja/System.Reflection.Emit.xml", + "ref/dotnet/ko/System.Reflection.Emit.xml", + "ref/dotnet/ru/System.Reflection.Emit.xml", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.xml", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "sha512": "tJO27blFXyvYwDLbK7GvgFC94XjeY6MnRitBI4w8LHfEc/gVdRmCC8gzkE8KEmkecnIWIt9VTSJ3p4lGgafKKA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/wp80/_._", + "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/net45/_._", + "ref/wp80/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "sXo3+qJ7TukCF/rDFYKjEog4iVb75dXJztu/lkvhMHgYnviPSbi9zg78FQUFhB6BOvntwnknrgNJhhtl3x9a7A==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Extensions.xml", + "ref/dotnet/es/System.Reflection.Extensions.xml", + "ref/dotnet/fr/System.Reflection.Extensions.xml", + "ref/dotnet/it/System.Reflection.Extensions.xml", + "ref/dotnet/ja/System.Reflection.Extensions.xml", + "ref/dotnet/ko/System.Reflection.Extensions.xml", + "ref/dotnet/ru/System.Reflection.Extensions.xml", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/dotnet/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "R5oBDNgUtSV9KTPCxwHWiTyryX/9mngnPbLWwFOEF5xcNd3Qlu6/3LiauGsIzGtXV8vOpRl9tfyIFy8t4ix4Gw==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Primitives.xml", + "ref/dotnet/es/System.Reflection.Primitives.xml", + "ref/dotnet/fr/System.Reflection.Primitives.xml", + "ref/dotnet/it/System.Reflection.Primitives.xml", + "ref/dotnet/ja/System.Reflection.Primitives.xml", + "ref/dotnet/ko/System.Reflection.Primitives.xml", + "ref/dotnet/ru/System.Reflection.Primitives.xml", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "lTuPMxeoT/Jqb1QtsIuSomLiJpQP3Y4DqqxLPncrMvLrejwdF25QSbhXdx5twgvBDqwSVL8wYtqiOqKe02u7FA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/de/System.Reflection.TypeExtensions.xml", + "ref/dotnet/es/System.Reflection.TypeExtensions.xml", + "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", + "ref/dotnet/it/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "sha512": "9J0+T+ChJ9rlYTcrJiTOLfTJHuHuenol1eOJgiF8yJK1rDozU2Wnex5kXus5Z8/SerMSCUofUOx4c2WYX/tNow==", + "files": [ + "lib/DNXCore50/System.Resources.ReaderWriter.dll", + "lib/net46/System.Resources.ReaderWriter.dll", + "ref/dotnet/System.Resources.ReaderWriter.dll", + "ref/net46/System.Resources.ReaderWriter.dll", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ReaderWriter.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "6usAb6nZEPKugl3z5JR/RZrouH5/340n3tM0lhRfxVE/k3B3Sfh/sHSPiAOorrZgGm4cIDDhXTCGJQSWYphu3g==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/de/System.Runtime.xml", + "ref/dotnet/es/System.Runtime.xml", + "ref/dotnet/fr/System.Runtime.xml", + "ref/dotnet/it/System.Runtime.xml", + "ref/dotnet/ja/System.Runtime.xml", + "ref/dotnet/ko/System.Runtime.xml", + "ref/dotnet/ru/System.Runtime.xml", + "ref/dotnet/System.Runtime.dll", + "ref/dotnet/System.Runtime.xml", + "ref/dotnet/zh-hans/System.Runtime.xml", + "ref/dotnet/zh-hant/System.Runtime.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23109.nupkg", + "System.Runtime.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "JkRMtSY5YFGhP9eY7ZFIj40Ha5lGOwSxrk90k0ZAuIFn6qEPNe0NKu/C8laV7Cqy4Lv5IYzkVUGrfOqg3MOG9A==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/de/System.Runtime.Extensions.xml", + "ref/dotnet/es/System.Runtime.Extensions.xml", + "ref/dotnet/fr/System.Runtime.Extensions.xml", + "ref/dotnet/it/System.Runtime.Extensions.xml", + "ref/dotnet/ja/System.Runtime.Extensions.xml", + "ref/dotnet/ko/System.Runtime.Extensions.xml", + "ref/dotnet/ru/System.Runtime.Extensions.xml", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "XfjBv5hxBDVXvgPzBXiMpHprnmd5trdBAG4o7DEi/3GPXIlety4G0sfmlxeiTr7njKr0wF4ERdLIfzPesS5PAw==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "fxRLTR5kbqOZuSeT5ggVBYc6HIEGmEwh+Uw1ijp2qD3yMiMPmxvtI5aP5t0yZHEmwUrB37lGB+oaPpcXLH5Feg==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/de/System.Runtime.InteropServices.xml", + "ref/dotnet/es/System.Runtime.InteropServices.xml", + "ref/dotnet/fr/System.Runtime.InteropServices.xml", + "ref/dotnet/it/System.Runtime.InteropServices.xml", + "ref/dotnet/ja/System.Runtime.InteropServices.xml", + "ref/dotnet/ko/System.Runtime.InteropServices.xml", + "ref/dotnet/ru/System.Runtime.InteropServices.xml", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "sha512": "YuxWBHBbvN5ILjno2DBjgW2NXQscfJFvIfQEOGHwChM5Q9//EO0LZfErH7fTk1n0IVcorDu/HTnkqr2NuK/t5w==", + "files": [ + "lib/DNXCore50/System.Runtime.Loader.dll", + "ref/dotnet/System.Runtime.Loader.dll", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Loader.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Security.Claims/4.0.0-beta-23019": { + "sha512": "kKseHxGh5pWjM43MZWtub/ZyBWUV3RHNSJuUtTzapeQD2qND6pGGNekMXcxmEZOxrKwFEBAeTlcgmWo/2e6/SQ==", + "files": [ + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll", + "System.Security.Claims.4.0.0-beta-23019.nupkg", + "System.Security.Claims.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.0-beta-23019": { + "sha512": "2zkK0eJOfso/Jo+77NVXDoJRggzL0jM0ayeXz+vD8pK9pIRnhpWJVbaGmT7MPBWW9KbPwtbJyXejpUS2rBflUQ==", + "files": [ + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._", + "System.Security.Principal.4.0.0-beta-23019.nupkg", + "System.Security.Principal.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "sha512": "FYvKKTbncuJCMnc1TmccsJlGSjIQrUJPymt2R3o5uSV1plyGD9V3san/rpq2IO4kDbHjGrQjEtZlbehwUucB5Q==", + "files": [ + "lib/DNXCore50/System.Security.Principal.Windows.dll", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/dotnet/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.Windows.nuspec" + ] + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll", + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "sha512": "oymPt96KPPXO/Scxow+x8cKczVw0KXfExKTXQlwT+j3sS1j/JuV+rZq2sQ54fqOi2R4d9aFPESsoN830sA6VCw==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/de/System.Text.Encoding.xml", + "ref/dotnet/es/System.Text.Encoding.xml", + "ref/dotnet/fr/System.Text.Encoding.xml", + "ref/dotnet/it/System.Text.Encoding.xml", + "ref/dotnet/ja/System.Text.Encoding.xml", + "ref/dotnet/ko/System.Text.Encoding.xml", + "ref/dotnet/ru/System.Text.Encoding.xml", + "ref/dotnet/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "sha512": "F6GZqICZ654MsqVPCL8h+fvDZJmXnu1I1PYY9686yG+lbcZzs9aavqMUjv1Lu5wOdiTKnmn7LADZYzPD6y1p+w==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/de/System.Text.Encoding.Extensions.xml", + "ref/dotnet/es/System.Text.Encoding.Extensions.xml", + "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", + "ref/dotnet/it/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "F+tfzB34KhZnjS3ActdL57CQVD9oYGhAZm8AREL+KvbJTh1Y8/tlyCyI2xoH6KdJzIPcXC50yu4OkHNbpcutEw==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Text.RegularExpressions.xml", + "ref/dotnet/es/System.Text.RegularExpressions.xml", + "ref/dotnet/fr/System.Text.RegularExpressions.xml", + "ref/dotnet/it/System.Text.RegularExpressions.xml", + "ref/dotnet/ja/System.Text.RegularExpressions.xml", + "ref/dotnet/ko/System.Text.RegularExpressions.xml", + "ref/dotnet/ru/System.Text.RegularExpressions.xml", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/dotnet/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "TSViw+K20yh9DmwzZpvuCUc2m2ju1eVAJ10pTw2gB/aP4kkrX2nGf4A9BkwkxupPXFA2OtO9LbbEqdp4YbBnjQ==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/de/System.Threading.xml", + "ref/dotnet/es/System.Threading.xml", + "ref/dotnet/fr/System.Threading.xml", + "ref/dotnet/it/System.Threading.xml", + "ref/dotnet/ja/System.Threading.xml", + "ref/dotnet/ko/System.Threading.xml", + "ref/dotnet/ru/System.Threading.xml", + "ref/dotnet/System.Threading.dll", + "ref/dotnet/System.Threading.xml", + "ref/dotnet/zh-hans/System.Threading.xml", + "ref/dotnet/zh-hant/System.Threading.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23109.nupkg", + "System.Threading.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "IMVmv9x4lBiy+jz31dU7KT/aTDlKZabAEDFAxQOTv//v1RYu5XZXZLIiTZqyVUKxxHgB0PUnuSDl5VxUDKysfQ==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/de/System.Threading.Overlapped.xml", + "ref/dotnet/es/System.Threading.Overlapped.xml", + "ref/dotnet/fr/System.Threading.Overlapped.xml", + "ref/dotnet/it/System.Threading.Overlapped.xml", + "ref/dotnet/ja/System.Threading.Overlapped.xml", + "ref/dotnet/ko/System.Threading.Overlapped.xml", + "ref/dotnet/ru/System.Threading.Overlapped.xml", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "J7lBqLLy1A85KZUgFz0fS8u6BO+pnWun2OAkrNqcUQbgCiKDC9v92u9q6a6AB9znum+GCdzH3cyEftNtIVNd1Q==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/de/System.Threading.Tasks.xml", + "ref/dotnet/es/System.Threading.Tasks.xml", + "ref/dotnet/fr/System.Threading.Tasks.xml", + "ref/dotnet/it/System.Threading.Tasks.xml", + "ref/dotnet/ja/System.Threading.Tasks.xml", + "ref/dotnet/ko/System.Threading.Tasks.xml", + "ref/dotnet/ru/System.Threading.Tasks.xml", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.xml", + "ref/dotnet/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet/zh-hant/System.Threading.Tasks.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "sha512": "ECx+zZlXCfhkpZ0PUVrzp5UB6zRdzi94LsQhm7DtUS/uB17I3sYh0RsnMu/5jTULByQ1Ju4K/JTbM28InXO/PQ==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.dll", + "ref/net46/System.Threading.Thread.dll", + "System.Threading.Thread.4.0.0-beta-23019.nupkg", + "System.Threading.Thread.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "sha512": "nGA/Vt5zC8zGQ8r9mSdRTWzVMXh1YgJH9XH8x5OQZVLh0hn6CSC32RrmUrmKLpxKd64B9mbKoubeLUqXlf/m8g==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "ref/dotnet/System.Threading.Timer.dll", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/win81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.0-beta-23019.nupkg", + "System.Threading.Timer.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.0-beta-23019": { + "sha512": "YsRwtb9uO6N8ndtnHPVi0oXSd7MkIVWiRdIHGzyBQ2qwMrQedBRW7u6P1LWo9DDcloOhwqmS6/HinClygHhbNg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "License.rtf", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/win8/_._", + "System.Xml.XDocument.4.0.0-beta-23019.nupkg", + "System.Xml.XDocument.4.0.0-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "sha512": "b1SOLM9FhBCL4gW3OP5b/HV1JVb1hfsF4D4wBxyUIZMXcP3kbm4F+bYvOB0cSeJ1F8oVnCCGivSk1/aSEQ86XQ==", + "files": [ + "lib/dotnet/System.Xml.XmlDocument.dll", + "lib/net46/System.Xml.XmlDocument.dll", + "ref/dotnet/System.Xml.XmlDocument.dll", + "ref/net46/System.Xml.XmlDocument.dll", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg.sha512", + "System.Xml.XmlDocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "sha512": "BqXNr12cUj02qymL4Nhowcsfz840wLSMPfU0T8i0JGPPIx38txMwUA2pnrYWsYmDmyIgw7GGUhrjXz6WJpjgwg==", + "files": [ + "lib/DNXCore50/System.Xml.XmlSerializer.dll", + "lib/net46/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "ref/dotnet/System.Xml.XmlSerializer.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XmlSerializer.nuspec" + ] + }, + "xunit.abstractions/2.0.0": { + "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0.nupkg", + "xunit.abstractions.2.0.0.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.1.0-beta3-build3029": { + "sha512": "AMS7Fv77DayXVRCBMmVEDwOXPcbxk8dCBA/iACsve+6+UQqopMtNyAynyIcXPFRK/peeitUKID4ChOXWisJmUw==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.1.0-beta3-build3029.nupkg", + "xunit.assert.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "sha512": "lsPro5U3NLasHI/RwqjKzXiRlh9N0IOlR3cluwXYVtihXbGtySeSnU/Fh5MTcWYxh+MVpoNop5zDD0/A2nrHsA==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "sha512": "WuUYamK4RHrHxihvNuX7NkryMhQrpH1+ziJ/mPIQbm18zevSgre8BwUuVZvmLZa8uVob3xS4dvAah2+HCgLiXg==", + "files": [ + "lib/dnx451/xunit.execution.dnx.dll", + "lib/dnx451/xunit.execution.dnx.pdb", + "lib/dnx451/xunit.execution.dnx.xml", + "lib/dnxcore50/xunit.execution.dnx.dll", + "lib/dnxcore50/xunit.execution.dnx.pdb", + "lib/dnxcore50/xunit.execution.dnx.xml", + "lib/monoandroid/xunit.execution.MonoAndroid.dll", + "lib/monoandroid/xunit.execution.MonoAndroid.pdb", + "lib/monoandroid/xunit.execution.MonoAndroid.xml", + "lib/monotouch/xunit.execution.MonoTouch.dll", + "lib/monotouch/xunit.execution.MonoTouch.pdb", + "lib/monotouch/xunit.execution.MonoTouch.xml", + "lib/net45/xunit.execution.desktop.dll", + "lib/net45/xunit.execution.desktop.pdb", + "lib/net45/xunit.execution.desktop.xml", + "lib/portable-wpa81+win81/xunit.execution.universal.dll", + "lib/portable-wpa81+win81/xunit.execution.universal.pdb", + "lib/portable-wpa81+win81/xunit.execution.universal.pri", + "lib/portable-wpa81+win81/xunit.execution.universal.xml", + "lib/wp8/xunit.execution.wp8.dll", + "lib/wp8/xunit.execution.wp8.pdb", + "lib/wp8/xunit.execution.wp8.xml", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.xml", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "sha512": "R6cvKy3mb8QjMxiTHqljsgwf424jYLbU07Ao0NcNHcRMT2OR+a2ldE6WdECiDMseYz/vuIaFQ6ebYRKEfMI/1A==", + "files": [ + "app/project.json", + "app/xunit", + "app/xunit.cmd", + "lib/dnx451/xunit.runner.dnx.dll", + "lib/dnx451/xunit.runner.dnx.xml", + "lib/dnxcore50/xunit.runner.dnx.dll", + "lib/dnxcore50/xunit.runner.dnx.xml", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg.sha512", + "xunit.runner.dnx.nuspec" + ] + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "sha512": "o+hiJTewV+4cA2GoHgbNC/FATjKxo2Z6PPeIdIfc7qysvYtu33POYUdo5XAqlRD9BQ7ojc8t/NOyZg/Qd9kjAg==", + "files": [ + "lib/dnx451/xunit.runner.reporters.dnx.dll", + "lib/dnxcore50/xunit.runner.reporters.dnx.dll", + "lib/net45/xunit.runner.reporters.desktop.dll", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.reporters.nuspec" + ] + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "sha512": "cm5lVNYtypOLgu6Vnd30UWPVNrcILzWmSul7tFrW/xT+ZjPYSES7kvYc80rKAUWXQl/awglhc5IMtAbHJi4abg==", + "files": [ + "lib/dnx451/xunit.runner.utility.dnx.dll", + "lib/dnx451/xunit.runner.utility.dnx.pdb", + "lib/dnx451/xunit.runner.utility.dnx.xml", + "lib/dnxcore50/xunit.runner.utility.dnx.dll", + "lib/dnxcore50/xunit.runner.utility.dnx.pdb", + "lib/dnxcore50/xunit.runner.utility.dnx.xml", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.dll", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.pdb", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.xml", + "lib/monotouch/xunit.runner.utility.MonoTouch.dll", + "lib/monotouch/xunit.runner.utility.MonoTouch.pdb", + "lib/monotouch/xunit.runner.utility.MonoTouch.xml", + "lib/net35/xunit.runner.utility.desktop.dll", + "lib/net35/xunit.runner.utility.desktop.pdb", + "lib/net35/xunit.runner.utility.desktop.xml", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.dll", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pdb", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pri", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.xml", + "lib/wp8/xunit.runner.utility.wp8.dll", + "lib/wp8/xunit.runner.utility.wp8.pdb", + "lib/wp8/xunit.runner.utility.wp8.xml", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.xml", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "EntityFramework.InMemory >= 7.0.0-beta6", + "xunit.assert >= 2.1.0-*", + "xunit.extensibility.execution >= 2.1.0-*" + ], + ".NETFramework,Version=v4.6": [ + "fx/System.Threading.Tasks >= 4.0.0.0", + "fx/WindowsBase >= 4.0.0.0" + ], + "DNX,Version=v4.5.1": [ + "xunit.runner.dnx >= 2.1.0-*", + "fx/WindowsBase >= 4.0.0.0" + ], + "DNXCore,Version=v5.0": [ + "Microsoft.CSharp >= 4.0.0-beta-23109", + "xunit.runner.dnx >= 2.1.0-*" + ] + } +} \ No newline at end of file diff --git a/test/EntityFramework.Core.Tests/project.json b/test/EntityFramework.Core.Tests/project.json index ff2257c7035..73656cf4212 100644 --- a/test/EntityFramework.Core.Tests/project.json +++ b/test/EntityFramework.Core.Tests/project.json @@ -1,20 +1,20 @@ { - "dependencies": { - "EntityFramework.Core.FunctionalTests": "7.0.0-*", - "EntityFramework.InMemory": "7.0.0-*", - "Moq": "4.2.1312.1622", - "xunit.assert": "2.1.0-*", - "xunit.extensibility.execution": "2.1.0-*" - }, - "commands": { - "test": "xunit.runner.dnx" - }, - "frameworks": { - "net46": { }, - "dnx451": { - "dependencies": { - "xunit.runner.dnx": "2.1.0-*" - } + "dependencies": { + "EntityFramework.Core.FunctionalTests": "7.0.0-beta6", + "EntityFramework.InMemory": "7.0.0-beta6", + "Moq": "4.2.1312.1622", + "xunit.assert": "2.1.0-*", + "xunit.extensibility.execution": "2.1.0-*" + }, + "commands": { + "test": "xunit.runner.dnx" + }, + "frameworks": { + "net46": {}, + "dnx451": { + "dependencies": { + "xunit.runner.dnx": "2.1.0-*" + } + } } - } -} +} \ No newline at end of file diff --git a/test/EntityFramework.Core.Tests/project.lock.json b/test/EntityFramework.Core.Tests/project.lock.json new file mode 100644 index 00000000000..cc8f4746793 --- /dev/null +++ b/test/EntityFramework.Core.Tests/project.lock.json @@ -0,0 +1,1761 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.6": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Moq/4.2.1312.1622": { + "compile": { + "lib/net40/Moq.dll": {} + }, + "runtime": { + "lib/net40/Moq.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/net45/xunit.execution.desktop.dll": {} + }, + "runtime": { + "lib/net45/xunit.execution.desktop.dll": {} + } + } + }, + "DNX,Version=v4.5.1": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.ComponentModel.DataAnnotations", + "System.Core", + "System.Diagnostics.Debug", + "System.Diagnostics.Tools", + "System.Globalization", + "System.Linq", + "System.Linq.Expressions", + "System.Linq.Queryable", + "System.ObjectModel", + "System.Reflection", + "System.Reflection.Extensions", + "System.Resources.ResourceManager", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading" + ], + "compile": { + "lib/dnx451/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dnx451/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "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.CommandLineUtils.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Moq/4.2.1312.1622": { + "compile": { + "lib/net40/Moq.dll": {} + }, + "runtime": { + "lib/net40/Moq.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnx451/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.ObjectModel", + "System.Reflection", + "System.Runtime", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "serviceable": true, + "sha512": "u4CXBQEmftJJD7U500i79xS2MwPyptOZLFqBAAwHVp7RuuAB0k2u9iFvdA2kgQZNhzkyooUTcS/+n4EPJalpaw==", + "files": [ + "EntityFramework.InMemory.7.0.0-beta6.nupkg", + "EntityFramework.InMemory.7.0.0-beta6.nupkg.sha512", + "EntityFramework.InMemory.nuspec", + "lib/dotnet/EntityFramework.InMemory.dll", + "lib/dotnet/EntityFramework.InMemory.xml", + "lib/net45/EntityFramework.InMemory.dll", + "lib/net45/EntityFramework.InMemory.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta5": { + "sha512": "sZIlSWm9r2CFDI5JB21lKwa8Hq7DZPBYx3LcBnuxZnhSh2AwrhrS88YUZSMP6QCV+PHMwj0udTdnS1eZ2DbM7w==", + "files": [ + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.xml", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.xml", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.CommandLineUtils.Sources.nuspec", + "shared/AnsiConsole.cs", + "shared/CommandArgument.cs", + "shared/CommandLineApplication.cs", + "shared/CommandOption.cs", + "shared/CommandOptionType.cs" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Moq/4.2.1312.1622": { + "sha512": "mPAjm1Kv9jX745D3hEYDBycRT0T8gnAJE2dutbfP9meyHiRrCgQarHajEvKh5SMKM1D3RcHGr/Pg3JJEtKhu9Q==", + "files": [ + "lib/net35/Moq.dll", + "lib/net35/Moq.xml", + "lib/net40/Moq.dll", + "lib/net40/Moq.xml", + "lib/sl4/Moq.Silverlight.dll", + "lib/sl4/Moq.Silverlight.xml", + "Moq.4.2.1312.1622.nupkg", + "Moq.4.2.1312.1622.nupkg.sha512", + "Moq.nuspec" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "xunit.abstractions/2.0.0": { + "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0.nupkg", + "xunit.abstractions.2.0.0.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.1.0-beta3-build3029": { + "sha512": "AMS7Fv77DayXVRCBMmVEDwOXPcbxk8dCBA/iACsve+6+UQqopMtNyAynyIcXPFRK/peeitUKID4ChOXWisJmUw==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.1.0-beta3-build3029.nupkg", + "xunit.assert.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "sha512": "lsPro5U3NLasHI/RwqjKzXiRlh9N0IOlR3cluwXYVtihXbGtySeSnU/Fh5MTcWYxh+MVpoNop5zDD0/A2nrHsA==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "sha512": "WuUYamK4RHrHxihvNuX7NkryMhQrpH1+ziJ/mPIQbm18zevSgre8BwUuVZvmLZa8uVob3xS4dvAah2+HCgLiXg==", + "files": [ + "lib/dnx451/xunit.execution.dnx.dll", + "lib/dnx451/xunit.execution.dnx.pdb", + "lib/dnx451/xunit.execution.dnx.xml", + "lib/dnxcore50/xunit.execution.dnx.dll", + "lib/dnxcore50/xunit.execution.dnx.pdb", + "lib/dnxcore50/xunit.execution.dnx.xml", + "lib/monoandroid/xunit.execution.MonoAndroid.dll", + "lib/monoandroid/xunit.execution.MonoAndroid.pdb", + "lib/monoandroid/xunit.execution.MonoAndroid.xml", + "lib/monotouch/xunit.execution.MonoTouch.dll", + "lib/monotouch/xunit.execution.MonoTouch.pdb", + "lib/monotouch/xunit.execution.MonoTouch.xml", + "lib/net45/xunit.execution.desktop.dll", + "lib/net45/xunit.execution.desktop.pdb", + "lib/net45/xunit.execution.desktop.xml", + "lib/portable-wpa81+win81/xunit.execution.universal.dll", + "lib/portable-wpa81+win81/xunit.execution.universal.pdb", + "lib/portable-wpa81+win81/xunit.execution.universal.pri", + "lib/portable-wpa81+win81/xunit.execution.universal.xml", + "lib/wp8/xunit.execution.wp8.dll", + "lib/wp8/xunit.execution.wp8.pdb", + "lib/wp8/xunit.execution.wp8.xml", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.xml", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "sha512": "R6cvKy3mb8QjMxiTHqljsgwf424jYLbU07Ao0NcNHcRMT2OR+a2ldE6WdECiDMseYz/vuIaFQ6ebYRKEfMI/1A==", + "files": [ + "app/project.json", + "app/xunit", + "app/xunit.cmd", + "lib/dnx451/xunit.runner.dnx.dll", + "lib/dnx451/xunit.runner.dnx.xml", + "lib/dnxcore50/xunit.runner.dnx.dll", + "lib/dnxcore50/xunit.runner.dnx.xml", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg.sha512", + "xunit.runner.dnx.nuspec" + ] + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "sha512": "o+hiJTewV+4cA2GoHgbNC/FATjKxo2Z6PPeIdIfc7qysvYtu33POYUdo5XAqlRD9BQ7ojc8t/NOyZg/Qd9kjAg==", + "files": [ + "lib/dnx451/xunit.runner.reporters.dnx.dll", + "lib/dnxcore50/xunit.runner.reporters.dnx.dll", + "lib/net45/xunit.runner.reporters.desktop.dll", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.reporters.nuspec" + ] + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "sha512": "cm5lVNYtypOLgu6Vnd30UWPVNrcILzWmSul7tFrW/xT+ZjPYSES7kvYc80rKAUWXQl/awglhc5IMtAbHJi4abg==", + "files": [ + "lib/dnx451/xunit.runner.utility.dnx.dll", + "lib/dnx451/xunit.runner.utility.dnx.pdb", + "lib/dnx451/xunit.runner.utility.dnx.xml", + "lib/dnxcore50/xunit.runner.utility.dnx.dll", + "lib/dnxcore50/xunit.runner.utility.dnx.pdb", + "lib/dnxcore50/xunit.runner.utility.dnx.xml", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.dll", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.pdb", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.xml", + "lib/monotouch/xunit.runner.utility.MonoTouch.dll", + "lib/monotouch/xunit.runner.utility.MonoTouch.pdb", + "lib/monotouch/xunit.runner.utility.MonoTouch.xml", + "lib/net35/xunit.runner.utility.desktop.dll", + "lib/net35/xunit.runner.utility.desktop.pdb", + "lib/net35/xunit.runner.utility.desktop.xml", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.dll", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pdb", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pri", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.xml", + "lib/wp8/xunit.runner.utility.wp8.dll", + "lib/wp8/xunit.runner.utility.wp8.pdb", + "lib/wp8/xunit.runner.utility.wp8.xml", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.xml", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "EntityFramework.Core.FunctionalTests >= 7.0.0-beta6", + "EntityFramework.InMemory >= 7.0.0-beta6", + "Moq >= 4.2.1312.1622", + "xunit.assert >= 2.1.0-*", + "xunit.extensibility.execution >= 2.1.0-*" + ], + ".NETFramework,Version=v4.6": [], + "DNX,Version=v4.5.1": [ + "xunit.runner.dnx >= 2.1.0-*" + ] + } +} \ No newline at end of file diff --git a/test/EntityFramework.CrossStore.FunctionalTests/project.json b/test/EntityFramework.CrossStore.FunctionalTests/project.json index 9abdab7d64a..930b86ef484 100644 --- a/test/EntityFramework.CrossStore.FunctionalTests/project.json +++ b/test/EntityFramework.CrossStore.FunctionalTests/project.json @@ -1,14 +1,14 @@ { - "dependencies": { - "EntityFramework.InMemory.FunctionalTests": "1.0.0", - "EntityFramework.Sqlite.FunctionalTests": "1.0.0", - "EntityFramework.SqlServer.FunctionalTests": "1.0.0" - }, - "commands": { - "test": "xunit.runner.dnx" - }, - "frameworks": { - "net46": { }, - "dnx451": { } - } -} + "dependencies": { + "EntityFramework.InMemory.FunctionalTests": "1.0.0", + "EntityFramework.Sqlite.FunctionalTests": "1.0.0", + "EntityFramework.SqlServer.FunctionalTests": "1.0.0" + }, + "commands": { + "test": "xunit.runner.dnx" + }, + "frameworks": { + "net46": {}, + "dnx451": {} + } +} \ No newline at end of file diff --git a/test/EntityFramework.CrossStore.FunctionalTests/project.lock.json b/test/EntityFramework.CrossStore.FunctionalTests/project.lock.json new file mode 100644 index 00000000000..5692cc716c9 --- /dev/null +++ b/test/EntityFramework.CrossStore.FunctionalTests/project.lock.json @@ -0,0 +1,1883 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.6": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.SqlServer.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Data.Sqlite/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data" + ], + "compile": { + "lib/net45/Microsoft.Data.Sqlite.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Data.Sqlite.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/net45/xunit.execution.desktop.dll": {} + }, + "runtime": { + "lib/net45/xunit.execution.desktop.dll": {} + } + } + }, + "DNX,Version=v4.5.1": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.ComponentModel.DataAnnotations", + "System.Core", + "System.Diagnostics.Debug", + "System.Diagnostics.Tools", + "System.Globalization", + "System.Linq", + "System.Linq.Expressions", + "System.Linq.Queryable", + "System.ObjectModel", + "System.Reflection", + "System.Reflection.Extensions", + "System.Resources.ResourceManager", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading" + ], + "compile": { + "lib/dnx451/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dnx451/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.SqlServer.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Data.Sqlite/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data" + ], + "compile": { + "lib/dnx451/Microsoft.Data.Sqlite.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Data.Sqlite.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "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.CommandLineUtils.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnx451/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.ObjectModel", + "System.Reflection", + "System.Runtime", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "serviceable": true, + "sha512": "u4CXBQEmftJJD7U500i79xS2MwPyptOZLFqBAAwHVp7RuuAB0k2u9iFvdA2kgQZNhzkyooUTcS/+n4EPJalpaw==", + "files": [ + "EntityFramework.InMemory.7.0.0-beta6.nupkg", + "EntityFramework.InMemory.7.0.0-beta6.nupkg.sha512", + "EntityFramework.InMemory.nuspec", + "lib/dotnet/EntityFramework.InMemory.dll", + "lib/dotnet/EntityFramework.InMemory.xml", + "lib/net45/EntityFramework.InMemory.dll", + "lib/net45/EntityFramework.InMemory.xml", + "repo.json" + ] + }, + "EntityFramework.Relational/7.0.0-beta6": { + "serviceable": true, + "sha512": "2CVE3UZjzXDRFYyfVL0lePnK1t2ZyLexNE88SiuUhY4mPC5SOWmDZ7mhLvtXeVJL/7PBpEmDy0qSDZRBpJ/Kiw==", + "files": [ + "EntityFramework.Relational.7.0.0-beta6.nupkg", + "EntityFramework.Relational.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Relational.nuspec", + "lib/dotnet/EntityFramework.Relational.dll", + "lib/dotnet/EntityFramework.Relational.xml", + "lib/net45/EntityFramework.Relational.dll", + "lib/net45/EntityFramework.Relational.xml", + "repo.json" + ] + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "serviceable": true, + "sha512": "69BvxKYVxgO/LK5YTKo9iuK4rt2/ystXVWdHfl3JaZ8DASB+UTacNNDDYeHuo2ZqQCv523AZSReuBGZ5reGBOg==", + "files": [ + "EntityFramework.SqlServer.7.0.0-beta6.nupkg", + "EntityFramework.SqlServer.7.0.0-beta6.nupkg.sha512", + "EntityFramework.SqlServer.nuspec", + "lib/dnxcore50/EntityFramework.SqlServer.dll", + "lib/dnxcore50/EntityFramework.SqlServer.xml", + "lib/net45/EntityFramework.SqlServer.dll", + "lib/net45/EntityFramework.SqlServer.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.Data.Sqlite/1.0.0-beta6": { + "serviceable": true, + "sha512": "7yyqsIahqnM+5/9To3vhoYFttNlvDea9ASAayxqN0DxzpMv9Sguty22Qj5yM2DPlY1AGLCGxl0B/Jayp/7ePNQ==", + "files": [ + "lib/dnx451/Microsoft.Data.Sqlite.dll", + "lib/dnx451/Microsoft.Data.Sqlite.xml", + "lib/dnxcore50/Microsoft.Data.Sqlite.dll", + "lib/dnxcore50/Microsoft.Data.Sqlite.xml", + "lib/dotnet/Microsoft.Data.Sqlite.dll", + "lib/dotnet/Microsoft.Data.Sqlite.xml", + "lib/net45/Microsoft.Data.Sqlite.dll", + "lib/net45/Microsoft.Data.Sqlite.xml", + "Microsoft.Data.Sqlite.1.0.0-beta6.nupkg", + "Microsoft.Data.Sqlite.1.0.0-beta6.nupkg.sha512", + "Microsoft.Data.Sqlite.nuspec", + "runtimes/win/native/x86/sqlite3.dll", + "runtimes/win10-arm/native/sqlite3.dll", + "runtimes/win10-x64/native/sqlite3.dll", + "runtimes/win10-x86/native/sqlite3.dll", + "runtimes/win-x86/native/sqlite3.dll" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta5": { + "sha512": "sZIlSWm9r2CFDI5JB21lKwa8Hq7DZPBYx3LcBnuxZnhSh2AwrhrS88YUZSMP6QCV+PHMwj0udTdnS1eZ2DbM7w==", + "files": [ + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.xml", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.xml", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.CommandLineUtils.Sources.nuspec", + "shared/AnsiConsole.cs", + "shared/CommandArgument.cs", + "shared/CommandLineApplication.cs", + "shared/CommandOption.cs", + "shared/CommandOptionType.cs" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "w4Cwg6jgPd3XFGOgBGU3GVGVAwUcMglSDTlI23M8uI7yhDRSDbxZ2HPbjTEBMoj+IYdkfunZWFdA67tdk8L8Tg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "xunit.abstractions/2.0.0": { + "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0.nupkg", + "xunit.abstractions.2.0.0.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.1.0-beta3-build3029": { + "sha512": "AMS7Fv77DayXVRCBMmVEDwOXPcbxk8dCBA/iACsve+6+UQqopMtNyAynyIcXPFRK/peeitUKID4ChOXWisJmUw==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.1.0-beta3-build3029.nupkg", + "xunit.assert.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "sha512": "lsPro5U3NLasHI/RwqjKzXiRlh9N0IOlR3cluwXYVtihXbGtySeSnU/Fh5MTcWYxh+MVpoNop5zDD0/A2nrHsA==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "sha512": "WuUYamK4RHrHxihvNuX7NkryMhQrpH1+ziJ/mPIQbm18zevSgre8BwUuVZvmLZa8uVob3xS4dvAah2+HCgLiXg==", + "files": [ + "lib/dnx451/xunit.execution.dnx.dll", + "lib/dnx451/xunit.execution.dnx.pdb", + "lib/dnx451/xunit.execution.dnx.xml", + "lib/dnxcore50/xunit.execution.dnx.dll", + "lib/dnxcore50/xunit.execution.dnx.pdb", + "lib/dnxcore50/xunit.execution.dnx.xml", + "lib/monoandroid/xunit.execution.MonoAndroid.dll", + "lib/monoandroid/xunit.execution.MonoAndroid.pdb", + "lib/monoandroid/xunit.execution.MonoAndroid.xml", + "lib/monotouch/xunit.execution.MonoTouch.dll", + "lib/monotouch/xunit.execution.MonoTouch.pdb", + "lib/monotouch/xunit.execution.MonoTouch.xml", + "lib/net45/xunit.execution.desktop.dll", + "lib/net45/xunit.execution.desktop.pdb", + "lib/net45/xunit.execution.desktop.xml", + "lib/portable-wpa81+win81/xunit.execution.universal.dll", + "lib/portable-wpa81+win81/xunit.execution.universal.pdb", + "lib/portable-wpa81+win81/xunit.execution.universal.pri", + "lib/portable-wpa81+win81/xunit.execution.universal.xml", + "lib/wp8/xunit.execution.wp8.dll", + "lib/wp8/xunit.execution.wp8.pdb", + "lib/wp8/xunit.execution.wp8.xml", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.xml", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "sha512": "R6cvKy3mb8QjMxiTHqljsgwf424jYLbU07Ao0NcNHcRMT2OR+a2ldE6WdECiDMseYz/vuIaFQ6ebYRKEfMI/1A==", + "files": [ + "app/project.json", + "app/xunit", + "app/xunit.cmd", + "lib/dnx451/xunit.runner.dnx.dll", + "lib/dnx451/xunit.runner.dnx.xml", + "lib/dnxcore50/xunit.runner.dnx.dll", + "lib/dnxcore50/xunit.runner.dnx.xml", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg.sha512", + "xunit.runner.dnx.nuspec" + ] + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "sha512": "o+hiJTewV+4cA2GoHgbNC/FATjKxo2Z6PPeIdIfc7qysvYtu33POYUdo5XAqlRD9BQ7ojc8t/NOyZg/Qd9kjAg==", + "files": [ + "lib/dnx451/xunit.runner.reporters.dnx.dll", + "lib/dnxcore50/xunit.runner.reporters.dnx.dll", + "lib/net45/xunit.runner.reporters.desktop.dll", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.reporters.nuspec" + ] + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "sha512": "cm5lVNYtypOLgu6Vnd30UWPVNrcILzWmSul7tFrW/xT+ZjPYSES7kvYc80rKAUWXQl/awglhc5IMtAbHJi4abg==", + "files": [ + "lib/dnx451/xunit.runner.utility.dnx.dll", + "lib/dnx451/xunit.runner.utility.dnx.pdb", + "lib/dnx451/xunit.runner.utility.dnx.xml", + "lib/dnxcore50/xunit.runner.utility.dnx.dll", + "lib/dnxcore50/xunit.runner.utility.dnx.pdb", + "lib/dnxcore50/xunit.runner.utility.dnx.xml", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.dll", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.pdb", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.xml", + "lib/monotouch/xunit.runner.utility.MonoTouch.dll", + "lib/monotouch/xunit.runner.utility.MonoTouch.pdb", + "lib/monotouch/xunit.runner.utility.MonoTouch.xml", + "lib/net35/xunit.runner.utility.desktop.dll", + "lib/net35/xunit.runner.utility.desktop.pdb", + "lib/net35/xunit.runner.utility.desktop.xml", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.dll", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pdb", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pri", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.xml", + "lib/wp8/xunit.runner.utility.wp8.dll", + "lib/wp8/xunit.runner.utility.wp8.pdb", + "lib/wp8/xunit.runner.utility.wp8.xml", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.xml", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "EntityFramework.InMemory.FunctionalTests >= 1.0.0", + "EntityFramework.Sqlite.FunctionalTests >= 1.0.0", + "EntityFramework.SqlServer.FunctionalTests >= 1.0.0" + ], + ".NETFramework,Version=v4.6": [], + "DNX,Version=v4.5.1": [] + } +} \ No newline at end of file diff --git a/test/EntityFramework.InMemory.FunctionalTests/project.json b/test/EntityFramework.InMemory.FunctionalTests/project.json index 5a8106d687b..13c1f8d65ff 100644 --- a/test/EntityFramework.InMemory.FunctionalTests/project.json +++ b/test/EntityFramework.InMemory.FunctionalTests/project.json @@ -1,13 +1,13 @@ { - "dependencies": { - "EntityFramework.Core.FunctionalTests": "7.0.0-*" - }, - "commands": { - "test": "xunit.runner.dnx" - }, - "frameworks": { - "net46": { }, - "dnx451": { }, - "dnxcore50": { } - } -} + "dependencies": { + "EntityFramework.Core.FunctionalTests": "7.0.0-beta6" + }, + "commands": { + "test": "xunit.runner.dnx" + }, + "frameworks": { + "net46": {}, + "dnx451": {}, + "dnxcore50": {} + } +} \ No newline at end of file diff --git a/test/EntityFramework.InMemory.FunctionalTests/project.lock.json b/test/EntityFramework.InMemory.FunctionalTests/project.lock.json new file mode 100644 index 00000000000..f6be49f4e77 --- /dev/null +++ b/test/EntityFramework.InMemory.FunctionalTests/project.lock.json @@ -0,0 +1,4618 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.6": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/net45/xunit.execution.desktop.dll": {} + }, + "runtime": { + "lib/net45/xunit.execution.desktop.dll": {} + } + } + }, + "DNX,Version=v4.5.1": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.ComponentModel.DataAnnotations", + "System.Core", + "System.Diagnostics.Debug", + "System.Diagnostics.Tools", + "System.Globalization", + "System.Linq", + "System.Linq.Expressions", + "System.Linq.Queryable", + "System.ObjectModel", + "System.Reflection", + "System.Reflection.Extensions", + "System.Resources.ResourceManager", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading" + ], + "compile": { + "lib/dnx451/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dnx451/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "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.CommandLineUtils.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnx451/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.ObjectModel", + "System.Reflection", + "System.Runtime", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Collections.Immutable": "1.1.37-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.ComponentModel.Annotations": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Queryable": "4.0.0-beta-23109", + "System.ObjectModel": "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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "compile": { + "lib/dotnet/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.InMemory.dll": {} + } + }, + "Ix-Async/1.2.4": { + "compile": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + } + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Dynamic.Runtime": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.10-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.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Linq": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.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.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Dynamic.Runtime": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Resources.ReaderWriter": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Threading.Timer": "4.0.0-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019", + "System.Xml.XmlSerializer": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.AppContext": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Loader": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Process": "4.0.0-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.Sockets": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + } + }, + "System.AppContext/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tracing": "4.0.20-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Overlapped": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit": "4.0.0-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "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.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23109": { + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ReaderWriter.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ReaderWriter.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23109": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Xml.ReaderWriter": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XmlDocument": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnxcore50/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.0-beta-23019", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnxcore50/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Net.Http": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnxcore50/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnxcore50/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.utility.dnx.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "serviceable": true, + "sha512": "u4CXBQEmftJJD7U500i79xS2MwPyptOZLFqBAAwHVp7RuuAB0k2u9iFvdA2kgQZNhzkyooUTcS/+n4EPJalpaw==", + "files": [ + "EntityFramework.InMemory.7.0.0-beta6.nupkg", + "EntityFramework.InMemory.7.0.0-beta6.nupkg.sha512", + "EntityFramework.InMemory.nuspec", + "lib/dotnet/EntityFramework.InMemory.dll", + "lib/dotnet/EntityFramework.InMemory.xml", + "lib/net45/EntityFramework.InMemory.dll", + "lib/net45/EntityFramework.InMemory.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "MO4Lu8aMS1vL4Omp/gIMl2hr4sdV1l99p6xhAExGnS3MlFEa5JYPDL5mpdeg/osDH+1gAhb11xMJTYP7Ya3cAA==", + "files": [ + "lib/dotnet/Microsoft.CSharp.dll", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg.sha512", + "Microsoft.CSharp.nuspec", + "ref/dotnet/de/Microsoft.CSharp.xml", + "ref/dotnet/es/Microsoft.CSharp.xml", + "ref/dotnet/fr/Microsoft.CSharp.xml", + "ref/dotnet/it/Microsoft.CSharp.xml", + "ref/dotnet/ja/Microsoft.CSharp.xml", + "ref/dotnet/ko/Microsoft.CSharp.xml", + "ref/dotnet/Microsoft.CSharp.dll", + "ref/dotnet/Microsoft.CSharp.xml", + "ref/dotnet/ru/Microsoft.CSharp.xml", + "ref/dotnet/zh-hans/Microsoft.CSharp.xml", + "ref/dotnet/zh-hant/Microsoft.CSharp.xml", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta5": { + "sha512": "sZIlSWm9r2CFDI5JB21lKwa8Hq7DZPBYx3LcBnuxZnhSh2AwrhrS88YUZSMP6QCV+PHMwj0udTdnS1eZ2DbM7w==", + "files": [ + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.xml", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.xml", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.CommandLineUtils.Sources.nuspec", + "shared/AnsiConsole.cs", + "shared/CommandArgument.cs", + "shared/CommandLineApplication.cs", + "shared/CommandOption.cs", + "shared/CommandOptionType.cs" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.AppContext/4.0.0-beta-23019": { + "sha512": "dtYrJWnRhdNNbuTQf8ZhL9FhR+zef7ExSEHwqCF7e3YTPcL3XhUF7SD4Ij2rF3DJNMWT/r/8dgAs/9mNmOD66w==", + "files": [ + "lib/DNXCore50/System.AppContext.dll", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "ref/dotnet/System.AppContext.dll", + "ref/net46/System.AppContext.dll", + "System.AppContext.4.0.0-beta-23019.nupkg", + "System.AppContext.4.0.0-beta-23019.nupkg.sha512", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "2/VX+2QEyyIpvGDzuIXX8V0vSl/Llt673DR48nNmeA6BoMuwL4Eu4F1Meh9fPp80nhcjifqVK8g7/UQDn/0PFw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23109.nupkg", + "System.Collections.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "fRXR5y4dg9zPovFpSQZkc6gnyMNlQJVQ8lKqPDPFSIelhqWxv2VyY87s5Vd9ViGwKrFwekDwCQFug9ny8qCHuA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Collections.Concurrent.xml", + "ref/dotnet/es/System.Collections.Concurrent.xml", + "ref/dotnet/fr/System.Collections.Concurrent.xml", + "ref/dotnet/it/System.Collections.Concurrent.xml", + "ref/dotnet/ja/System.Collections.Concurrent.xml", + "ref/dotnet/ko/System.Collections.Concurrent.xml", + "ref/dotnet/ru/System.Collections.Concurrent.xml", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/dotnet/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23019": { + "sha512": "ijnoxLU+SrSf1AItfZOwtnzyx7yEi+WJtKa3d2X93Xf5YHlRsL4RwMZ10M9gLE8E+Rpi3ZJM5wAXi6OFSprDtw==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/net46/System.Collections.NonGeneric.dll", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23019.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "JFzHUvX28tQbud0c9AP+SFeOroBG9x7tgc0OYu0Z5nQotnIiwP5nHXq9DoK3N2y0MoRUt8jy2FwkRMAYgiQuNQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.ComponentModel.xml", + "ref/dotnet/es/System.ComponentModel.xml", + "ref/dotnet/fr/System.ComponentModel.xml", + "ref/dotnet/it/System.ComponentModel.xml", + "ref/dotnet/ja/System.ComponentModel.xml", + "ref/dotnet/ko/System.ComponentModel.xml", + "ref/dotnet/ru/System.ComponentModel.xml", + "ref/dotnet/System.ComponentModel.dll", + "ref/dotnet/System.ComponentModel.xml", + "ref/dotnet/zh-hans/System.ComponentModel.xml", + "ref/dotnet/zh-hant/System.ComponentModel.xml", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.0-beta-23109.nupkg", + "System.ComponentModel.4.0.0-beta-23109.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "tfq+u00KcRXrvtYS4v7Bi4NgfFXt0sx5IgqqgeWCOFtwhDTVWgL3XJN/lanFtANnG7+zVU3+B5mvjH1pblGHxg==", + "files": [ + "lib/dotnet/System.ComponentModel.Annotations.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ComponentModel.Annotations.xml", + "ref/dotnet/es/System.ComponentModel.Annotations.xml", + "ref/dotnet/fr/System.ComponentModel.Annotations.xml", + "ref/dotnet/it/System.ComponentModel.Annotations.xml", + "ref/dotnet/ja/System.ComponentModel.Annotations.xml", + "ref/dotnet/ko/System.ComponentModel.Annotations.xml", + "ref/dotnet/ru/System.ComponentModel.Annotations.xml", + "ref/dotnet/System.ComponentModel.Annotations.dll", + "ref/dotnet/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", + "ref/net46/_._", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg.sha512", + "System.ComponentModel.Annotations.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "woJsNwCtAqYac5zp+6Wy40HAp7kYr8zhaFvHl3gECjQf+VGeGYaHgDV1ATVcyMG1h6XvmX0wtmD5Qds51CRJoA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "sha512": "1vuXv89pElI0JeDhnXokMyy9VkLpkDFa+oU3selb5uhHfzVswH1etFBumZ0VKKvTOAnm8AS/3ZDXAVlRjywq3A==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Process.dll", + "lib/net46/System.Diagnostics.Process.dll", + "ref/dotnet/System.Diagnostics.Process.dll", + "ref/net46/System.Diagnostics.Process.dll", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Process.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6tFdP3p3SV6DZOagwW5ThfUF+zp5pUIyW4CY2K4B2RxV6HGVyY/8J2EuZGrcEP3wdO5fXnb9MmdOZa5Tn01Hmg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Diagnostics.Tools.xml", + "ref/dotnet/es/System.Diagnostics.Tools.xml", + "ref/dotnet/fr/System.Diagnostics.Tools.xml", + "ref/dotnet/it/System.Diagnostics.Tools.xml", + "ref/dotnet/ja/System.Diagnostics.Tools.xml", + "ref/dotnet/ko/System.Diagnostics.Tools.xml", + "ref/dotnet/ru/System.Diagnostics.Tools.xml", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/dotnet/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "sha512": "MZxMo9Skg9oZrJYwGpRfeOfrTfHxmTPWhj8XIXdIryfArzwG1FjZgzOrkWWcON0PdV9OywZYGly09nUCs/JdhA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.TraceSource.dll", + "lib/net46/System.Diagnostics.TraceSource.dll", + "ref/dotnet/System.Diagnostics.TraceSource.dll", + "ref/net46/System.Diagnostics.TraceSource.dll", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.TraceSource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "sNauLSBFewFLjULHeplEr7FCmmfPbcc1jfz1Mynjy445bYiP/IW1q9X14a//oV/uQG7p82S9qHyfPxoxmt3pxQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/de/System.Diagnostics.Tracing.xml", + "ref/dotnet/es/System.Diagnostics.Tracing.xml", + "ref/dotnet/fr/System.Diagnostics.Tracing.xml", + "ref/dotnet/it/System.Diagnostics.Tracing.xml", + "ref/dotnet/ja/System.Diagnostics.Tracing.xml", + "ref/dotnet/ko/System.Diagnostics.Tracing.xml", + "ref/dotnet/ru/System.Diagnostics.Tracing.xml", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "sha512": "yhXko8+R8fy0RERn6xQltYEhChBNyGEQgntwjHqNBc3x1M7wvg+Ye72Bh1QVQfnMIXZ0tG8XSrQs8hJe8KjYjg==", + "files": [ + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23109": { + "sha512": "l4QNrgLmC4KHGLcfriJ2EmsM2j18xefJzCnLU6YqVdBFaYzsJGwqmHyIr4nqw9DBjdWEtzdHLEbvpLeEay0ZWQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23109.nupkg", + "System.Globalization.4.0.10-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.IO/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "DVHSyfJO8mC9CpZFjjuaOWazALkWFnI6b/fqTQCjNe1dp2XasuvTRiV/qIOJB+uyDVex8sH8QMRUDS6ukimyLA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/de/System.IO.xml", + "ref/dotnet/es/System.IO.xml", + "ref/dotnet/fr/System.IO.xml", + "ref/dotnet/it/System.IO.xml", + "ref/dotnet/ja/System.IO.xml", + "ref/dotnet/ko/System.IO.xml", + "ref/dotnet/ru/System.IO.xml", + "ref/dotnet/System.IO.dll", + "ref/dotnet/System.IO.xml", + "ref/dotnet/zh-hans/System.IO.xml", + "ref/dotnet/zh-hant/System.IO.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23109.nupkg", + "System.IO.4.0.10-beta-23109.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._", + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "OusDe4B1/Q3BYY4QzNfztnyPPK9a1OGsQVZBg41C1bk8F2S3AOtXCx0GUwAfKbVxxS4dOdIgxWw1JN5m+IlpAA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/de/System.IO.FileSystem.xml", + "ref/dotnet/es/System.IO.FileSystem.xml", + "ref/dotnet/fr/System.IO.FileSystem.xml", + "ref/dotnet/it/System.IO.FileSystem.xml", + "ref/dotnet/ja/System.IO.FileSystem.xml", + "ref/dotnet/ko/System.IO.FileSystem.xml", + "ref/dotnet/ru/System.IO.FileSystem.xml", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.xml", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "1JFc6+hsLnlYgACgluhMi19zFkNruPgWoLDq30z7qMKgs3FZqShvXDZLTQ1Hk+cnenUoUU/8P8yRdmbdQaf4yg==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "sha512": "+xsD0H46/EB88848d9cHel2WVbUWlM/Y/k+tuY5lp2jXSwV8zMJ6F3TjMqeUZwWtUUavw+AN7D0a4ZoGVs/Rcw==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "cy+sQJW809QnFHIXt5Y/If45u362gwiNqHldnJS70l7VCjyR4Bo3UgZMZl+bowSupWxqXk69cwCQhRUyFu2hVw==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/de/System.Linq.Expressions.xml", + "ref/dotnet/es/System.Linq.Expressions.xml", + "ref/dotnet/fr/System.Linq.Expressions.xml", + "ref/dotnet/it/System.Linq.Expressions.xml", + "ref/dotnet/ja/System.Linq.Expressions.xml", + "ref/dotnet/ko/System.Linq.Expressions.xml", + "ref/dotnet/ru/System.Linq.Expressions.xml", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.xml", + "ref/dotnet/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet/zh-hant/System.Linq.Expressions.xml", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Mu6nIhw5k/zAMigeCh4aqma3kwXLoyPREVD6RxVPhGu2QJjAEeih0GWumoDjtdFp0B5Q6sYeakWDAds7NmzWQg==", + "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.0-beta-23019": { + "sha512": "8mt4X1eIjTMrKVINJuzuFYf7C4GrYFC+tlvc2zH5HtxKPpbFZamMUdJ19ORxZ9ds053aqQASdiha7eH86PN+eg==", + "files": [ + "lib/DNXCore50/System.Net.Http.dll", + "lib/net45/_._", + "lib/netcore50/System.Net.Http.dll", + "lib/win8/_._", + "ref/dotnet/System.Net.Http.dll", + "ref/net45/_._", + "ref/netcore50/System.Net.Http.dll", + "ref/win8/_._", + "System.Net.Http.4.0.0-beta-23019.nupkg", + "System.Net.Http.4.0.0-beta-23019.nupkg.sha512", + "System.Net.Http.nuspec" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._", + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "sha512": "4NWuSdsFSf21iJkd+NQaE2OwtNaKGdXIbBbQmfE43evHl6fUII38wwNnooWtF0avCEyU6BOdUTiwoZAUZyQwcA==", + "files": [ + "lib/DNXCore50/System.Net.Sockets.dll", + "ref/dotnet/System.Net.Sockets.dll", + "System.Net.Sockets.4.0.10-beta-23019.nupkg", + "System.Net.Sockets.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Sockets.nuspec" + ] + }, + "System.ObjectModel/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "mnrhXE8nT5mX/ndEJ5BsdLCgN6CofKiwQvr9Olsp/s3crY5/lXYM73N2bNSvsFcHD1o0XhaCOn18Vekv6SYTpg==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ObjectModel.xml", + "ref/dotnet/es/System.ObjectModel.xml", + "ref/dotnet/fr/System.ObjectModel.xml", + "ref/dotnet/it/System.ObjectModel.xml", + "ref/dotnet/ja/System.ObjectModel.xml", + "ref/dotnet/ko/System.ObjectModel.xml", + "ref/dotnet/ru/System.ObjectModel.xml", + "ref/dotnet/System.ObjectModel.dll", + "ref/dotnet/System.ObjectModel.xml", + "ref/dotnet/zh-hans/System.ObjectModel.xml", + "ref/dotnet/zh-hant/System.ObjectModel.xml", + "ref/net46/_._", + "System.ObjectModel.4.0.10-beta-23109.nupkg", + "System.ObjectModel.4.0.10-beta-23109.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "y6M7TxwDXBD2in5cCf+KzucZyx7YE7SJMcU24atzYnpwP2xFASUYCeI6NRg5bYcw2Do5HKBz+XdE9WiZrwpnFg==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23109.nupkg", + "System.Private.Uri.4.0.0-beta-23109.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23109": { + "sha512": "aeXO8gjPb46LaP727cXDcCZ2mZoMxguq2UhE25wJoO1Je8Q8D2JFonNk85oVlgXCdEM6XgrtRnsnhvj8PmTBNg==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/de/System.Reflection.xml", + "ref/dotnet/es/System.Reflection.xml", + "ref/dotnet/fr/System.Reflection.xml", + "ref/dotnet/it/System.Reflection.xml", + "ref/dotnet/ja/System.Reflection.xml", + "ref/dotnet/ko/System.Reflection.xml", + "ref/dotnet/ru/System.Reflection.xml", + "ref/dotnet/System.Reflection.dll", + "ref/dotnet/System.Reflection.xml", + "ref/dotnet/zh-hans/System.Reflection.xml", + "ref/dotnet/zh-hant/System.Reflection.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23109.nupkg", + "System.Reflection.4.0.10-beta-23109.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "sha512": "H8QtiSXFHNiQIPZe3PdNJPIjuH9O/A8+/52bw2RIKgV8rMrshmi2LufTvYCb+V5YPBFYWg2Yt8nRISEY4+uV5Q==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/de/System.Reflection.Emit.xml", + "ref/dotnet/es/System.Reflection.Emit.xml", + "ref/dotnet/fr/System.Reflection.Emit.xml", + "ref/dotnet/it/System.Reflection.Emit.xml", + "ref/dotnet/ja/System.Reflection.Emit.xml", + "ref/dotnet/ko/System.Reflection.Emit.xml", + "ref/dotnet/ru/System.Reflection.Emit.xml", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.xml", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "sha512": "tJO27blFXyvYwDLbK7GvgFC94XjeY6MnRitBI4w8LHfEc/gVdRmCC8gzkE8KEmkecnIWIt9VTSJ3p4lGgafKKA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/wp80/_._", + "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/net45/_._", + "ref/wp80/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "sXo3+qJ7TukCF/rDFYKjEog4iVb75dXJztu/lkvhMHgYnviPSbi9zg78FQUFhB6BOvntwnknrgNJhhtl3x9a7A==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Extensions.xml", + "ref/dotnet/es/System.Reflection.Extensions.xml", + "ref/dotnet/fr/System.Reflection.Extensions.xml", + "ref/dotnet/it/System.Reflection.Extensions.xml", + "ref/dotnet/ja/System.Reflection.Extensions.xml", + "ref/dotnet/ko/System.Reflection.Extensions.xml", + "ref/dotnet/ru/System.Reflection.Extensions.xml", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/dotnet/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "R5oBDNgUtSV9KTPCxwHWiTyryX/9mngnPbLWwFOEF5xcNd3Qlu6/3LiauGsIzGtXV8vOpRl9tfyIFy8t4ix4Gw==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Primitives.xml", + "ref/dotnet/es/System.Reflection.Primitives.xml", + "ref/dotnet/fr/System.Reflection.Primitives.xml", + "ref/dotnet/it/System.Reflection.Primitives.xml", + "ref/dotnet/ja/System.Reflection.Primitives.xml", + "ref/dotnet/ko/System.Reflection.Primitives.xml", + "ref/dotnet/ru/System.Reflection.Primitives.xml", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "lTuPMxeoT/Jqb1QtsIuSomLiJpQP3Y4DqqxLPncrMvLrejwdF25QSbhXdx5twgvBDqwSVL8wYtqiOqKe02u7FA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/de/System.Reflection.TypeExtensions.xml", + "ref/dotnet/es/System.Reflection.TypeExtensions.xml", + "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", + "ref/dotnet/it/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "sha512": "9J0+T+ChJ9rlYTcrJiTOLfTJHuHuenol1eOJgiF8yJK1rDozU2Wnex5kXus5Z8/SerMSCUofUOx4c2WYX/tNow==", + "files": [ + "lib/DNXCore50/System.Resources.ReaderWriter.dll", + "lib/net46/System.Resources.ReaderWriter.dll", + "ref/dotnet/System.Resources.ReaderWriter.dll", + "ref/net46/System.Resources.ReaderWriter.dll", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ReaderWriter.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "6usAb6nZEPKugl3z5JR/RZrouH5/340n3tM0lhRfxVE/k3B3Sfh/sHSPiAOorrZgGm4cIDDhXTCGJQSWYphu3g==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/de/System.Runtime.xml", + "ref/dotnet/es/System.Runtime.xml", + "ref/dotnet/fr/System.Runtime.xml", + "ref/dotnet/it/System.Runtime.xml", + "ref/dotnet/ja/System.Runtime.xml", + "ref/dotnet/ko/System.Runtime.xml", + "ref/dotnet/ru/System.Runtime.xml", + "ref/dotnet/System.Runtime.dll", + "ref/dotnet/System.Runtime.xml", + "ref/dotnet/zh-hans/System.Runtime.xml", + "ref/dotnet/zh-hant/System.Runtime.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23109.nupkg", + "System.Runtime.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "JkRMtSY5YFGhP9eY7ZFIj40Ha5lGOwSxrk90k0ZAuIFn6qEPNe0NKu/C8laV7Cqy4Lv5IYzkVUGrfOqg3MOG9A==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/de/System.Runtime.Extensions.xml", + "ref/dotnet/es/System.Runtime.Extensions.xml", + "ref/dotnet/fr/System.Runtime.Extensions.xml", + "ref/dotnet/it/System.Runtime.Extensions.xml", + "ref/dotnet/ja/System.Runtime.Extensions.xml", + "ref/dotnet/ko/System.Runtime.Extensions.xml", + "ref/dotnet/ru/System.Runtime.Extensions.xml", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "XfjBv5hxBDVXvgPzBXiMpHprnmd5trdBAG4o7DEi/3GPXIlety4G0sfmlxeiTr7njKr0wF4ERdLIfzPesS5PAw==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "fxRLTR5kbqOZuSeT5ggVBYc6HIEGmEwh+Uw1ijp2qD3yMiMPmxvtI5aP5t0yZHEmwUrB37lGB+oaPpcXLH5Feg==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/de/System.Runtime.InteropServices.xml", + "ref/dotnet/es/System.Runtime.InteropServices.xml", + "ref/dotnet/fr/System.Runtime.InteropServices.xml", + "ref/dotnet/it/System.Runtime.InteropServices.xml", + "ref/dotnet/ja/System.Runtime.InteropServices.xml", + "ref/dotnet/ko/System.Runtime.InteropServices.xml", + "ref/dotnet/ru/System.Runtime.InteropServices.xml", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "sha512": "YuxWBHBbvN5ILjno2DBjgW2NXQscfJFvIfQEOGHwChM5Q9//EO0LZfErH7fTk1n0IVcorDu/HTnkqr2NuK/t5w==", + "files": [ + "lib/DNXCore50/System.Runtime.Loader.dll", + "ref/dotnet/System.Runtime.Loader.dll", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Loader.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Security.Claims/4.0.0-beta-23019": { + "sha512": "kKseHxGh5pWjM43MZWtub/ZyBWUV3RHNSJuUtTzapeQD2qND6pGGNekMXcxmEZOxrKwFEBAeTlcgmWo/2e6/SQ==", + "files": [ + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll", + "System.Security.Claims.4.0.0-beta-23019.nupkg", + "System.Security.Claims.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.0-beta-23019": { + "sha512": "2zkK0eJOfso/Jo+77NVXDoJRggzL0jM0ayeXz+vD8pK9pIRnhpWJVbaGmT7MPBWW9KbPwtbJyXejpUS2rBflUQ==", + "files": [ + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._", + "System.Security.Principal.4.0.0-beta-23019.nupkg", + "System.Security.Principal.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "sha512": "FYvKKTbncuJCMnc1TmccsJlGSjIQrUJPymt2R3o5uSV1plyGD9V3san/rpq2IO4kDbHjGrQjEtZlbehwUucB5Q==", + "files": [ + "lib/DNXCore50/System.Security.Principal.Windows.dll", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/dotnet/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.Windows.nuspec" + ] + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll", + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "sha512": "oymPt96KPPXO/Scxow+x8cKczVw0KXfExKTXQlwT+j3sS1j/JuV+rZq2sQ54fqOi2R4d9aFPESsoN830sA6VCw==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/de/System.Text.Encoding.xml", + "ref/dotnet/es/System.Text.Encoding.xml", + "ref/dotnet/fr/System.Text.Encoding.xml", + "ref/dotnet/it/System.Text.Encoding.xml", + "ref/dotnet/ja/System.Text.Encoding.xml", + "ref/dotnet/ko/System.Text.Encoding.xml", + "ref/dotnet/ru/System.Text.Encoding.xml", + "ref/dotnet/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "sha512": "F6GZqICZ654MsqVPCL8h+fvDZJmXnu1I1PYY9686yG+lbcZzs9aavqMUjv1Lu5wOdiTKnmn7LADZYzPD6y1p+w==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/de/System.Text.Encoding.Extensions.xml", + "ref/dotnet/es/System.Text.Encoding.Extensions.xml", + "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", + "ref/dotnet/it/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "F+tfzB34KhZnjS3ActdL57CQVD9oYGhAZm8AREL+KvbJTh1Y8/tlyCyI2xoH6KdJzIPcXC50yu4OkHNbpcutEw==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Text.RegularExpressions.xml", + "ref/dotnet/es/System.Text.RegularExpressions.xml", + "ref/dotnet/fr/System.Text.RegularExpressions.xml", + "ref/dotnet/it/System.Text.RegularExpressions.xml", + "ref/dotnet/ja/System.Text.RegularExpressions.xml", + "ref/dotnet/ko/System.Text.RegularExpressions.xml", + "ref/dotnet/ru/System.Text.RegularExpressions.xml", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/dotnet/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "TSViw+K20yh9DmwzZpvuCUc2m2ju1eVAJ10pTw2gB/aP4kkrX2nGf4A9BkwkxupPXFA2OtO9LbbEqdp4YbBnjQ==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/de/System.Threading.xml", + "ref/dotnet/es/System.Threading.xml", + "ref/dotnet/fr/System.Threading.xml", + "ref/dotnet/it/System.Threading.xml", + "ref/dotnet/ja/System.Threading.xml", + "ref/dotnet/ko/System.Threading.xml", + "ref/dotnet/ru/System.Threading.xml", + "ref/dotnet/System.Threading.dll", + "ref/dotnet/System.Threading.xml", + "ref/dotnet/zh-hans/System.Threading.xml", + "ref/dotnet/zh-hant/System.Threading.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23109.nupkg", + "System.Threading.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "IMVmv9x4lBiy+jz31dU7KT/aTDlKZabAEDFAxQOTv//v1RYu5XZXZLIiTZqyVUKxxHgB0PUnuSDl5VxUDKysfQ==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/de/System.Threading.Overlapped.xml", + "ref/dotnet/es/System.Threading.Overlapped.xml", + "ref/dotnet/fr/System.Threading.Overlapped.xml", + "ref/dotnet/it/System.Threading.Overlapped.xml", + "ref/dotnet/ja/System.Threading.Overlapped.xml", + "ref/dotnet/ko/System.Threading.Overlapped.xml", + "ref/dotnet/ru/System.Threading.Overlapped.xml", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "J7lBqLLy1A85KZUgFz0fS8u6BO+pnWun2OAkrNqcUQbgCiKDC9v92u9q6a6AB9znum+GCdzH3cyEftNtIVNd1Q==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/de/System.Threading.Tasks.xml", + "ref/dotnet/es/System.Threading.Tasks.xml", + "ref/dotnet/fr/System.Threading.Tasks.xml", + "ref/dotnet/it/System.Threading.Tasks.xml", + "ref/dotnet/ja/System.Threading.Tasks.xml", + "ref/dotnet/ko/System.Threading.Tasks.xml", + "ref/dotnet/ru/System.Threading.Tasks.xml", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.xml", + "ref/dotnet/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet/zh-hant/System.Threading.Tasks.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "sha512": "ECx+zZlXCfhkpZ0PUVrzp5UB6zRdzi94LsQhm7DtUS/uB17I3sYh0RsnMu/5jTULByQ1Ju4K/JTbM28InXO/PQ==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.dll", + "ref/net46/System.Threading.Thread.dll", + "System.Threading.Thread.4.0.0-beta-23019.nupkg", + "System.Threading.Thread.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "sha512": "nGA/Vt5zC8zGQ8r9mSdRTWzVMXh1YgJH9XH8x5OQZVLh0hn6CSC32RrmUrmKLpxKd64B9mbKoubeLUqXlf/m8g==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "ref/dotnet/System.Threading.Timer.dll", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/win81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.0-beta-23019.nupkg", + "System.Threading.Timer.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.0-beta-23019": { + "sha512": "YsRwtb9uO6N8ndtnHPVi0oXSd7MkIVWiRdIHGzyBQ2qwMrQedBRW7u6P1LWo9DDcloOhwqmS6/HinClygHhbNg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "License.rtf", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/win8/_._", + "System.Xml.XDocument.4.0.0-beta-23019.nupkg", + "System.Xml.XDocument.4.0.0-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "sha512": "b1SOLM9FhBCL4gW3OP5b/HV1JVb1hfsF4D4wBxyUIZMXcP3kbm4F+bYvOB0cSeJ1F8oVnCCGivSk1/aSEQ86XQ==", + "files": [ + "lib/dotnet/System.Xml.XmlDocument.dll", + "lib/net46/System.Xml.XmlDocument.dll", + "ref/dotnet/System.Xml.XmlDocument.dll", + "ref/net46/System.Xml.XmlDocument.dll", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg.sha512", + "System.Xml.XmlDocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "sha512": "BqXNr12cUj02qymL4Nhowcsfz840wLSMPfU0T8i0JGPPIx38txMwUA2pnrYWsYmDmyIgw7GGUhrjXz6WJpjgwg==", + "files": [ + "lib/DNXCore50/System.Xml.XmlSerializer.dll", + "lib/net46/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "ref/dotnet/System.Xml.XmlSerializer.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XmlSerializer.nuspec" + ] + }, + "xunit.abstractions/2.0.0": { + "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0.nupkg", + "xunit.abstractions.2.0.0.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.1.0-beta3-build3029": { + "sha512": "AMS7Fv77DayXVRCBMmVEDwOXPcbxk8dCBA/iACsve+6+UQqopMtNyAynyIcXPFRK/peeitUKID4ChOXWisJmUw==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.1.0-beta3-build3029.nupkg", + "xunit.assert.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "sha512": "lsPro5U3NLasHI/RwqjKzXiRlh9N0IOlR3cluwXYVtihXbGtySeSnU/Fh5MTcWYxh+MVpoNop5zDD0/A2nrHsA==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "sha512": "WuUYamK4RHrHxihvNuX7NkryMhQrpH1+ziJ/mPIQbm18zevSgre8BwUuVZvmLZa8uVob3xS4dvAah2+HCgLiXg==", + "files": [ + "lib/dnx451/xunit.execution.dnx.dll", + "lib/dnx451/xunit.execution.dnx.pdb", + "lib/dnx451/xunit.execution.dnx.xml", + "lib/dnxcore50/xunit.execution.dnx.dll", + "lib/dnxcore50/xunit.execution.dnx.pdb", + "lib/dnxcore50/xunit.execution.dnx.xml", + "lib/monoandroid/xunit.execution.MonoAndroid.dll", + "lib/monoandroid/xunit.execution.MonoAndroid.pdb", + "lib/monoandroid/xunit.execution.MonoAndroid.xml", + "lib/monotouch/xunit.execution.MonoTouch.dll", + "lib/monotouch/xunit.execution.MonoTouch.pdb", + "lib/monotouch/xunit.execution.MonoTouch.xml", + "lib/net45/xunit.execution.desktop.dll", + "lib/net45/xunit.execution.desktop.pdb", + "lib/net45/xunit.execution.desktop.xml", + "lib/portable-wpa81+win81/xunit.execution.universal.dll", + "lib/portable-wpa81+win81/xunit.execution.universal.pdb", + "lib/portable-wpa81+win81/xunit.execution.universal.pri", + "lib/portable-wpa81+win81/xunit.execution.universal.xml", + "lib/wp8/xunit.execution.wp8.dll", + "lib/wp8/xunit.execution.wp8.pdb", + "lib/wp8/xunit.execution.wp8.xml", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.xml", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "sha512": "R6cvKy3mb8QjMxiTHqljsgwf424jYLbU07Ao0NcNHcRMT2OR+a2ldE6WdECiDMseYz/vuIaFQ6ebYRKEfMI/1A==", + "files": [ + "app/project.json", + "app/xunit", + "app/xunit.cmd", + "lib/dnx451/xunit.runner.dnx.dll", + "lib/dnx451/xunit.runner.dnx.xml", + "lib/dnxcore50/xunit.runner.dnx.dll", + "lib/dnxcore50/xunit.runner.dnx.xml", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg.sha512", + "xunit.runner.dnx.nuspec" + ] + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "sha512": "o+hiJTewV+4cA2GoHgbNC/FATjKxo2Z6PPeIdIfc7qysvYtu33POYUdo5XAqlRD9BQ7ojc8t/NOyZg/Qd9kjAg==", + "files": [ + "lib/dnx451/xunit.runner.reporters.dnx.dll", + "lib/dnxcore50/xunit.runner.reporters.dnx.dll", + "lib/net45/xunit.runner.reporters.desktop.dll", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.reporters.nuspec" + ] + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "sha512": "cm5lVNYtypOLgu6Vnd30UWPVNrcILzWmSul7tFrW/xT+ZjPYSES7kvYc80rKAUWXQl/awglhc5IMtAbHJi4abg==", + "files": [ + "lib/dnx451/xunit.runner.utility.dnx.dll", + "lib/dnx451/xunit.runner.utility.dnx.pdb", + "lib/dnx451/xunit.runner.utility.dnx.xml", + "lib/dnxcore50/xunit.runner.utility.dnx.dll", + "lib/dnxcore50/xunit.runner.utility.dnx.pdb", + "lib/dnxcore50/xunit.runner.utility.dnx.xml", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.dll", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.pdb", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.xml", + "lib/monotouch/xunit.runner.utility.MonoTouch.dll", + "lib/monotouch/xunit.runner.utility.MonoTouch.pdb", + "lib/monotouch/xunit.runner.utility.MonoTouch.xml", + "lib/net35/xunit.runner.utility.desktop.dll", + "lib/net35/xunit.runner.utility.desktop.pdb", + "lib/net35/xunit.runner.utility.desktop.xml", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.dll", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pdb", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pri", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.xml", + "lib/wp8/xunit.runner.utility.wp8.dll", + "lib/wp8/xunit.runner.utility.wp8.pdb", + "lib/wp8/xunit.runner.utility.wp8.xml", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.xml", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "EntityFramework.Core.FunctionalTests >= 7.0.0-beta6" + ], + ".NETFramework,Version=v4.6": [], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [] + } +} \ No newline at end of file diff --git a/test/EntityFramework.InMemory.Tests/project.json b/test/EntityFramework.InMemory.Tests/project.json index 44e4efbd1a8..032af8e307c 100644 --- a/test/EntityFramework.InMemory.Tests/project.json +++ b/test/EntityFramework.InMemory.Tests/project.json @@ -1,12 +1,12 @@ { - "dependencies": { - "EntityFramework.Core.Tests": "1.0.0" - }, - "commands": { - "test": "xunit.runner.dnx" - }, - "frameworks": { - "net46": { }, - "dnx451": { } - } -} + "dependencies": { + "EntityFramework.Core.Tests": "1.0.0" + }, + "commands": { + "test": "xunit.runner.dnx" + }, + "frameworks": { + "net46": {}, + "dnx451": {} + } +} \ No newline at end of file diff --git a/test/EntityFramework.InMemory.Tests/project.lock.json b/test/EntityFramework.InMemory.Tests/project.lock.json new file mode 100644 index 00000000000..6c94d41a956 --- /dev/null +++ b/test/EntityFramework.InMemory.Tests/project.lock.json @@ -0,0 +1,1755 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.6": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Moq/4.2.1312.1622": { + "compile": { + "lib/net40/Moq.dll": {} + }, + "runtime": { + "lib/net40/Moq.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/net45/xunit.execution.desktop.dll": {} + }, + "runtime": { + "lib/net45/xunit.execution.desktop.dll": {} + } + } + }, + "DNX,Version=v4.5.1": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.ComponentModel.DataAnnotations", + "System.Core", + "System.Diagnostics.Debug", + "System.Diagnostics.Tools", + "System.Globalization", + "System.Linq", + "System.Linq.Expressions", + "System.Linq.Queryable", + "System.ObjectModel", + "System.Reflection", + "System.Reflection.Extensions", + "System.Resources.ResourceManager", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading" + ], + "compile": { + "lib/dnx451/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dnx451/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "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.CommandLineUtils.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Moq/4.2.1312.1622": { + "compile": { + "lib/net40/Moq.dll": {} + }, + "runtime": { + "lib/net40/Moq.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnx451/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.ObjectModel", + "System.Reflection", + "System.Runtime", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "serviceable": true, + "sha512": "u4CXBQEmftJJD7U500i79xS2MwPyptOZLFqBAAwHVp7RuuAB0k2u9iFvdA2kgQZNhzkyooUTcS/+n4EPJalpaw==", + "files": [ + "EntityFramework.InMemory.7.0.0-beta6.nupkg", + "EntityFramework.InMemory.7.0.0-beta6.nupkg.sha512", + "EntityFramework.InMemory.nuspec", + "lib/dotnet/EntityFramework.InMemory.dll", + "lib/dotnet/EntityFramework.InMemory.xml", + "lib/net45/EntityFramework.InMemory.dll", + "lib/net45/EntityFramework.InMemory.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta5": { + "sha512": "sZIlSWm9r2CFDI5JB21lKwa8Hq7DZPBYx3LcBnuxZnhSh2AwrhrS88YUZSMP6QCV+PHMwj0udTdnS1eZ2DbM7w==", + "files": [ + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.xml", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.xml", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.CommandLineUtils.Sources.nuspec", + "shared/AnsiConsole.cs", + "shared/CommandArgument.cs", + "shared/CommandLineApplication.cs", + "shared/CommandOption.cs", + "shared/CommandOptionType.cs" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Moq/4.2.1312.1622": { + "sha512": "mPAjm1Kv9jX745D3hEYDBycRT0T8gnAJE2dutbfP9meyHiRrCgQarHajEvKh5SMKM1D3RcHGr/Pg3JJEtKhu9Q==", + "files": [ + "lib/net35/Moq.dll", + "lib/net35/Moq.xml", + "lib/net40/Moq.dll", + "lib/net40/Moq.xml", + "lib/sl4/Moq.Silverlight.dll", + "lib/sl4/Moq.Silverlight.xml", + "Moq.4.2.1312.1622.nupkg", + "Moq.4.2.1312.1622.nupkg.sha512", + "Moq.nuspec" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "xunit.abstractions/2.0.0": { + "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0.nupkg", + "xunit.abstractions.2.0.0.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.1.0-beta3-build3029": { + "sha512": "AMS7Fv77DayXVRCBMmVEDwOXPcbxk8dCBA/iACsve+6+UQqopMtNyAynyIcXPFRK/peeitUKID4ChOXWisJmUw==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.1.0-beta3-build3029.nupkg", + "xunit.assert.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "sha512": "lsPro5U3NLasHI/RwqjKzXiRlh9N0IOlR3cluwXYVtihXbGtySeSnU/Fh5MTcWYxh+MVpoNop5zDD0/A2nrHsA==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "sha512": "WuUYamK4RHrHxihvNuX7NkryMhQrpH1+ziJ/mPIQbm18zevSgre8BwUuVZvmLZa8uVob3xS4dvAah2+HCgLiXg==", + "files": [ + "lib/dnx451/xunit.execution.dnx.dll", + "lib/dnx451/xunit.execution.dnx.pdb", + "lib/dnx451/xunit.execution.dnx.xml", + "lib/dnxcore50/xunit.execution.dnx.dll", + "lib/dnxcore50/xunit.execution.dnx.pdb", + "lib/dnxcore50/xunit.execution.dnx.xml", + "lib/monoandroid/xunit.execution.MonoAndroid.dll", + "lib/monoandroid/xunit.execution.MonoAndroid.pdb", + "lib/monoandroid/xunit.execution.MonoAndroid.xml", + "lib/monotouch/xunit.execution.MonoTouch.dll", + "lib/monotouch/xunit.execution.MonoTouch.pdb", + "lib/monotouch/xunit.execution.MonoTouch.xml", + "lib/net45/xunit.execution.desktop.dll", + "lib/net45/xunit.execution.desktop.pdb", + "lib/net45/xunit.execution.desktop.xml", + "lib/portable-wpa81+win81/xunit.execution.universal.dll", + "lib/portable-wpa81+win81/xunit.execution.universal.pdb", + "lib/portable-wpa81+win81/xunit.execution.universal.pri", + "lib/portable-wpa81+win81/xunit.execution.universal.xml", + "lib/wp8/xunit.execution.wp8.dll", + "lib/wp8/xunit.execution.wp8.pdb", + "lib/wp8/xunit.execution.wp8.xml", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.xml", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "sha512": "R6cvKy3mb8QjMxiTHqljsgwf424jYLbU07Ao0NcNHcRMT2OR+a2ldE6WdECiDMseYz/vuIaFQ6ebYRKEfMI/1A==", + "files": [ + "app/project.json", + "app/xunit", + "app/xunit.cmd", + "lib/dnx451/xunit.runner.dnx.dll", + "lib/dnx451/xunit.runner.dnx.xml", + "lib/dnxcore50/xunit.runner.dnx.dll", + "lib/dnxcore50/xunit.runner.dnx.xml", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg.sha512", + "xunit.runner.dnx.nuspec" + ] + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "sha512": "o+hiJTewV+4cA2GoHgbNC/FATjKxo2Z6PPeIdIfc7qysvYtu33POYUdo5XAqlRD9BQ7ojc8t/NOyZg/Qd9kjAg==", + "files": [ + "lib/dnx451/xunit.runner.reporters.dnx.dll", + "lib/dnxcore50/xunit.runner.reporters.dnx.dll", + "lib/net45/xunit.runner.reporters.desktop.dll", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.reporters.nuspec" + ] + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "sha512": "cm5lVNYtypOLgu6Vnd30UWPVNrcILzWmSul7tFrW/xT+ZjPYSES7kvYc80rKAUWXQl/awglhc5IMtAbHJi4abg==", + "files": [ + "lib/dnx451/xunit.runner.utility.dnx.dll", + "lib/dnx451/xunit.runner.utility.dnx.pdb", + "lib/dnx451/xunit.runner.utility.dnx.xml", + "lib/dnxcore50/xunit.runner.utility.dnx.dll", + "lib/dnxcore50/xunit.runner.utility.dnx.pdb", + "lib/dnxcore50/xunit.runner.utility.dnx.xml", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.dll", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.pdb", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.xml", + "lib/monotouch/xunit.runner.utility.MonoTouch.dll", + "lib/monotouch/xunit.runner.utility.MonoTouch.pdb", + "lib/monotouch/xunit.runner.utility.MonoTouch.xml", + "lib/net35/xunit.runner.utility.desktop.dll", + "lib/net35/xunit.runner.utility.desktop.pdb", + "lib/net35/xunit.runner.utility.desktop.xml", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.dll", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pdb", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pri", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.xml", + "lib/wp8/xunit.runner.utility.wp8.dll", + "lib/wp8/xunit.runner.utility.wp8.pdb", + "lib/wp8/xunit.runner.utility.wp8.xml", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.xml", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "EntityFramework.Core.Tests >= 1.0.0" + ], + ".NETFramework,Version=v4.6": [], + "DNX,Version=v4.5.1": [] + } +} \ No newline at end of file diff --git a/test/EntityFramework.Microbenchmarks.Core/project.json b/test/EntityFramework.Microbenchmarks.Core/project.json index 6b16da13851..a31f8a792b4 100644 --- a/test/EntityFramework.Microbenchmarks.Core/project.json +++ b/test/EntityFramework.Microbenchmarks.Core/project.json @@ -1,25 +1,25 @@ { - "dependencies": { - "EntityFramework.SqlServer": "7.0.0-*", - "Microsoft.Framework.Configuration.Json": "1.0.0-*", - "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-*", - "xunit.assert": "2.1.0-*", - "xunit.extensibility.execution": "2.1.0-*" - }, - "commands": { - "test": "xunit.runner.dnx" - }, - "frameworks": { - "net46": { }, - "dnxcore50": { - "dependencies": { - "xunit.runner.dnx": "2.1.0-*" - } + "dependencies": { + "EntityFramework.SqlServer": "7.0.0-beta6", + "Microsoft.Framework.Configuration.Json": "1.0.0-beta6", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta6", + "xunit.assert": "2.1.0-*", + "xunit.extensibility.execution": "2.1.0-*" }, - "dnx451": { - "dependencies": { - "xunit.runner.dnx": "2.1.0-*" - } + "commands": { + "test": "xunit.runner.dnx" + }, + "frameworks": { + "net46": {}, + "dnxcore50": { + "dependencies": { + "xunit.runner.dnx": "2.1.0-*" + } + }, + "dnx451": { + "dependencies": { + "xunit.runner.dnx": "2.1.0-*" + } + } } - } -} +} \ No newline at end of file diff --git a/test/EntityFramework.Microbenchmarks.Core/project.lock.json b/test/EntityFramework.Microbenchmarks.Core/project.lock.json new file mode 100644 index 00000000000..6e124c5cbfd --- /dev/null +++ b/test/EntityFramework.Microbenchmarks.Core/project.lock.json @@ -0,0 +1,5067 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.6": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.SqlServer.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Json/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Json.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Json.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/net45/xunit.execution.desktop.dll": {} + }, + "runtime": { + "lib/net45/xunit.execution.desktop.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Collections.Immutable": "1.1.37-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.ComponentModel.Annotations": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Queryable": "4.0.0-beta-23109", + "System.ObjectModel": "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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6", + "Microsoft.CSharp": "4.0.0-beta-23109", + "System.Data.Common": "4.0.0-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Relational.dll": {} + } + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6", + "System.Data.SqlClient": "4.0.0-beta-23109", + "System.Text.Encoding.CodePages": "4.0.0-beta-23109", + "System.Threading.Thread": "4.0.0-beta-23109" + }, + "compile": { + "lib/dnxcore50/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/dnxcore50/EntityFramework.SqlServer.dll": {} + } + }, + "Ix-Async/1.2.4": { + "compile": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + } + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Dynamic.Runtime": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.10-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.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Linq": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Json/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6", + "Newtonsoft.Json": "6.0.6", + "System.Dynamic.Runtime": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Json.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Json.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.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.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Dynamic.Runtime": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Resources.ReaderWriter": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Threading.Timer": "4.0.0-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019", + "System.Xml.XmlSerializer": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.AppContext": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Loader": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Process": "4.0.0-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.Sockets": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + } + }, + "System.AppContext/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tracing": "4.0.20-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Data.Common/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Data.Common.dll": {} + }, + "runtime": { + "lib/dotnet/System.Data.Common.dll": {} + } + }, + "System.Data.SqlClient/4.0.0-beta-23109": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23109", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.0-beta-23109", + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.Data.Common": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "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.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.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Security.Principal.Windows": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.CodePages": "4.0.0-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109", + "System.Threading.Thread": "4.0.0-beta-23109", + "System.Threading.ThreadPool": "4.0.0-beta-23109", + "System.Threading.Timer": "4.0.0-beta-23109", + "System.Xml.ReaderWriter": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Data.SqlClient.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Data.SqlClient.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.ObjectModel": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Overlapped": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit": "4.0.0-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "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.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23109": { + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ReaderWriter.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ReaderWriter.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23109": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Security.Principal": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Claims": "4.0.0-beta-23109", + "System.Security.Principal": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.CodePages/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.Encoding.CodePages.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Xml.ReaderWriter": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XmlDocument": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnxcore50/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.0-beta-23019", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnxcore50/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Net.Http": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnxcore50/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnxcore50/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.utility.dnx.dll": {} + } + } + }, + "DNX,Version=v4.5.1": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.ComponentModel.DataAnnotations", + "System.Core", + "System.Diagnostics.Debug", + "System.Diagnostics.Tools", + "System.Globalization", + "System.Linq", + "System.Linq.Expressions", + "System.Linq.Queryable", + "System.ObjectModel", + "System.Reflection", + "System.Reflection.Extensions", + "System.Resources.ResourceManager", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading" + ], + "compile": { + "lib/dnx451/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dnx451/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.SqlServer.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "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.CommandLineUtils.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Json/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6", + "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-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnx451/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.ObjectModel", + "System.Reflection", + "System.Runtime", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "EntityFramework.Relational/7.0.0-beta6": { + "serviceable": true, + "sha512": "2CVE3UZjzXDRFYyfVL0lePnK1t2ZyLexNE88SiuUhY4mPC5SOWmDZ7mhLvtXeVJL/7PBpEmDy0qSDZRBpJ/Kiw==", + "files": [ + "EntityFramework.Relational.7.0.0-beta6.nupkg", + "EntityFramework.Relational.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Relational.nuspec", + "lib/dotnet/EntityFramework.Relational.dll", + "lib/dotnet/EntityFramework.Relational.xml", + "lib/net45/EntityFramework.Relational.dll", + "lib/net45/EntityFramework.Relational.xml", + "repo.json" + ] + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "serviceable": true, + "sha512": "69BvxKYVxgO/LK5YTKo9iuK4rt2/ystXVWdHfl3JaZ8DASB+UTacNNDDYeHuo2ZqQCv523AZSReuBGZ5reGBOg==", + "files": [ + "EntityFramework.SqlServer.7.0.0-beta6.nupkg", + "EntityFramework.SqlServer.7.0.0-beta6.nupkg.sha512", + "EntityFramework.SqlServer.nuspec", + "lib/dnxcore50/EntityFramework.SqlServer.dll", + "lib/dnxcore50/EntityFramework.SqlServer.xml", + "lib/net45/EntityFramework.SqlServer.dll", + "lib/net45/EntityFramework.SqlServer.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "MO4Lu8aMS1vL4Omp/gIMl2hr4sdV1l99p6xhAExGnS3MlFEa5JYPDL5mpdeg/osDH+1gAhb11xMJTYP7Ya3cAA==", + "files": [ + "lib/dotnet/Microsoft.CSharp.dll", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg.sha512", + "Microsoft.CSharp.nuspec", + "ref/dotnet/de/Microsoft.CSharp.xml", + "ref/dotnet/es/Microsoft.CSharp.xml", + "ref/dotnet/fr/Microsoft.CSharp.xml", + "ref/dotnet/it/Microsoft.CSharp.xml", + "ref/dotnet/ja/Microsoft.CSharp.xml", + "ref/dotnet/ko/Microsoft.CSharp.xml", + "ref/dotnet/Microsoft.CSharp.dll", + "ref/dotnet/Microsoft.CSharp.xml", + "ref/dotnet/ru/Microsoft.CSharp.xml", + "ref/dotnet/zh-hans/Microsoft.CSharp.xml", + "ref/dotnet/zh-hant/Microsoft.CSharp.xml", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta5": { + "sha512": "sZIlSWm9r2CFDI5JB21lKwa8Hq7DZPBYx3LcBnuxZnhSh2AwrhrS88YUZSMP6QCV+PHMwj0udTdnS1eZ2DbM7w==", + "files": [ + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.xml", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.xml", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.CommandLineUtils.Sources.nuspec", + "shared/AnsiConsole.cs", + "shared/CommandArgument.cs", + "shared/CommandLineApplication.cs", + "shared/CommandOption.cs", + "shared/CommandOptionType.cs" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6": { + "serviceable": true, + "sha512": "wUYZglLlkxL6xpbOHv6TqeJeT3GwpOxNRw3gkWOpM7OVrhAORm1pWnQ4qA+kWs5RDXSEntv47dK95MIypfIWKQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "lib/net45/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/net45/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.EnvironmentVariables.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Json/1.0.0-beta6": { + "serviceable": true, + "sha512": "C4kdW1eP2e5d8pAK5iJ9EWHCpnDpBDO/lu22VjFfTekRTes2zCkpJRt3OYUyqmlg8emVHsGM/i8k6Y/oP6eeZg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Json.dll", + "lib/dnx451/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-beta6.nupkg", + "Microsoft.Framework.Configuration.Json.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Json.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "GsSRwzgrK2WJHUyd83AtKEX+Hv8ecmnwerJzinTXNqddsI48ClaeAyBgUnvRh5e/R8zzfIFqSHD1iEXSOSjAgQ==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23109.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23109.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/de/Microsoft.Win32.Primitives.xml", + "ref/dotnet/es/Microsoft.Win32.Primitives.xml", + "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", + "ref/dotnet/it/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.AppContext/4.0.0-beta-23019": { + "sha512": "dtYrJWnRhdNNbuTQf8ZhL9FhR+zef7ExSEHwqCF7e3YTPcL3XhUF7SD4Ij2rF3DJNMWT/r/8dgAs/9mNmOD66w==", + "files": [ + "lib/DNXCore50/System.AppContext.dll", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "ref/dotnet/System.AppContext.dll", + "ref/net46/System.AppContext.dll", + "System.AppContext.4.0.0-beta-23019.nupkg", + "System.AppContext.4.0.0-beta-23019.nupkg.sha512", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "2/VX+2QEyyIpvGDzuIXX8V0vSl/Llt673DR48nNmeA6BoMuwL4Eu4F1Meh9fPp80nhcjifqVK8g7/UQDn/0PFw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23109.nupkg", + "System.Collections.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "fRXR5y4dg9zPovFpSQZkc6gnyMNlQJVQ8lKqPDPFSIelhqWxv2VyY87s5Vd9ViGwKrFwekDwCQFug9ny8qCHuA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Collections.Concurrent.xml", + "ref/dotnet/es/System.Collections.Concurrent.xml", + "ref/dotnet/fr/System.Collections.Concurrent.xml", + "ref/dotnet/it/System.Collections.Concurrent.xml", + "ref/dotnet/ja/System.Collections.Concurrent.xml", + "ref/dotnet/ko/System.Collections.Concurrent.xml", + "ref/dotnet/ru/System.Collections.Concurrent.xml", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/dotnet/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Z+VGG3YaL4PxuBn/Nbjul1OoaCBzvkylexTwIW6s8arj3c17XkCeJvZ1BIn66lzDpAQYMGZmv97UMT6OboRoVg==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/de/System.Collections.NonGeneric.xml", + "ref/dotnet/es/System.Collections.NonGeneric.xml", + "ref/dotnet/fr/System.Collections.NonGeneric.xml", + "ref/dotnet/it/System.Collections.NonGeneric.xml", + "ref/dotnet/ja/System.Collections.NonGeneric.xml", + "ref/dotnet/ko/System.Collections.NonGeneric.xml", + "ref/dotnet/ru/System.Collections.NonGeneric.xml", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", + "ref/net46/System.Collections.NonGeneric.dll", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "JFzHUvX28tQbud0c9AP+SFeOroBG9x7tgc0OYu0Z5nQotnIiwP5nHXq9DoK3N2y0MoRUt8jy2FwkRMAYgiQuNQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.ComponentModel.xml", + "ref/dotnet/es/System.ComponentModel.xml", + "ref/dotnet/fr/System.ComponentModel.xml", + "ref/dotnet/it/System.ComponentModel.xml", + "ref/dotnet/ja/System.ComponentModel.xml", + "ref/dotnet/ko/System.ComponentModel.xml", + "ref/dotnet/ru/System.ComponentModel.xml", + "ref/dotnet/System.ComponentModel.dll", + "ref/dotnet/System.ComponentModel.xml", + "ref/dotnet/zh-hans/System.ComponentModel.xml", + "ref/dotnet/zh-hant/System.ComponentModel.xml", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.0-beta-23109.nupkg", + "System.ComponentModel.4.0.0-beta-23109.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "tfq+u00KcRXrvtYS4v7Bi4NgfFXt0sx5IgqqgeWCOFtwhDTVWgL3XJN/lanFtANnG7+zVU3+B5mvjH1pblGHxg==", + "files": [ + "lib/dotnet/System.ComponentModel.Annotations.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ComponentModel.Annotations.xml", + "ref/dotnet/es/System.ComponentModel.Annotations.xml", + "ref/dotnet/fr/System.ComponentModel.Annotations.xml", + "ref/dotnet/it/System.ComponentModel.Annotations.xml", + "ref/dotnet/ja/System.ComponentModel.Annotations.xml", + "ref/dotnet/ko/System.ComponentModel.Annotations.xml", + "ref/dotnet/ru/System.ComponentModel.Annotations.xml", + "ref/dotnet/System.ComponentModel.Annotations.dll", + "ref/dotnet/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", + "ref/net46/_._", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg.sha512", + "System.ComponentModel.Annotations.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Data.Common/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "oWJT16F9TqEP1dQDNZUSuJ1gH17YyR8wTD+zfz03oflnAUWlyH2QM/px/X10GPZAn9Qz58EYR/maNzJIX9FSOA==", + "files": [ + "lib/dotnet/System.Data.Common.dll", + "lib/net46/System.Data.Common.dll", + "ref/dotnet/de/System.Data.Common.xml", + "ref/dotnet/es/System.Data.Common.xml", + "ref/dotnet/fr/System.Data.Common.xml", + "ref/dotnet/it/System.Data.Common.xml", + "ref/dotnet/ja/System.Data.Common.xml", + "ref/dotnet/ko/System.Data.Common.xml", + "ref/dotnet/ru/System.Data.Common.xml", + "ref/dotnet/System.Data.Common.dll", + "ref/dotnet/System.Data.Common.xml", + "ref/dotnet/zh-hans/System.Data.Common.xml", + "ref/dotnet/zh-hant/System.Data.Common.xml", + "ref/net46/System.Data.Common.dll", + "System.Data.Common.4.0.0-beta-23109.nupkg", + "System.Data.Common.4.0.0-beta-23109.nupkg.sha512", + "System.Data.Common.nuspec" + ] + }, + "System.Data.SqlClient/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "c56D/dcp+BS22hpnZs8zfUBA0PAs9ftJp7IYLY8b1or798Rl+oT5swf/R8bs2rbeG0cE4Dq7ixr0dm5YdANVxQ==", + "files": [ + "lib/DNXCore50/System.Data.SqlClient.dll", + "lib/net46/System.Data.SqlClient.dll", + "ref/dotnet/de/System.Data.SqlClient.xml", + "ref/dotnet/es/System.Data.SqlClient.xml", + "ref/dotnet/fr/System.Data.SqlClient.xml", + "ref/dotnet/it/System.Data.SqlClient.xml", + "ref/dotnet/ja/System.Data.SqlClient.xml", + "ref/dotnet/ko/System.Data.SqlClient.xml", + "ref/dotnet/ru/System.Data.SqlClient.xml", + "ref/dotnet/System.Data.SqlClient.dll", + "ref/dotnet/System.Data.SqlClient.xml", + "ref/dotnet/zh-hans/System.Data.SqlClient.xml", + "ref/dotnet/zh-hant/System.Data.SqlClient.xml", + "ref/net46/System.Data.SqlClient.dll", + "runtime.json", + "System.Data.SqlClient.4.0.0-beta-23109.nupkg", + "System.Data.SqlClient.4.0.0-beta-23109.nupkg.sha512", + "System.Data.SqlClient.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "woJsNwCtAqYac5zp+6Wy40HAp7kYr8zhaFvHl3gECjQf+VGeGYaHgDV1ATVcyMG1h6XvmX0wtmD5Qds51CRJoA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "sha512": "1vuXv89pElI0JeDhnXokMyy9VkLpkDFa+oU3selb5uhHfzVswH1etFBumZ0VKKvTOAnm8AS/3ZDXAVlRjywq3A==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Process.dll", + "lib/net46/System.Diagnostics.Process.dll", + "ref/dotnet/System.Diagnostics.Process.dll", + "ref/net46/System.Diagnostics.Process.dll", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Process.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6tFdP3p3SV6DZOagwW5ThfUF+zp5pUIyW4CY2K4B2RxV6HGVyY/8J2EuZGrcEP3wdO5fXnb9MmdOZa5Tn01Hmg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Diagnostics.Tools.xml", + "ref/dotnet/es/System.Diagnostics.Tools.xml", + "ref/dotnet/fr/System.Diagnostics.Tools.xml", + "ref/dotnet/it/System.Diagnostics.Tools.xml", + "ref/dotnet/ja/System.Diagnostics.Tools.xml", + "ref/dotnet/ko/System.Diagnostics.Tools.xml", + "ref/dotnet/ru/System.Diagnostics.Tools.xml", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/dotnet/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "sha512": "MZxMo9Skg9oZrJYwGpRfeOfrTfHxmTPWhj8XIXdIryfArzwG1FjZgzOrkWWcON0PdV9OywZYGly09nUCs/JdhA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.TraceSource.dll", + "lib/net46/System.Diagnostics.TraceSource.dll", + "ref/dotnet/System.Diagnostics.TraceSource.dll", + "ref/net46/System.Diagnostics.TraceSource.dll", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.TraceSource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "sNauLSBFewFLjULHeplEr7FCmmfPbcc1jfz1Mynjy445bYiP/IW1q9X14a//oV/uQG7p82S9qHyfPxoxmt3pxQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/de/System.Diagnostics.Tracing.xml", + "ref/dotnet/es/System.Diagnostics.Tracing.xml", + "ref/dotnet/fr/System.Diagnostics.Tracing.xml", + "ref/dotnet/it/System.Diagnostics.Tracing.xml", + "ref/dotnet/ja/System.Diagnostics.Tracing.xml", + "ref/dotnet/ko/System.Diagnostics.Tracing.xml", + "ref/dotnet/ru/System.Diagnostics.Tracing.xml", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "u+HhRVqhMblXkyKZP1A8Y13AxzZhVC7wSNxgSvQ/2XeAA/OfDLYdUxuAT+KL13CNszaedzZxTOVZmZWpLmzFow==", + "files": [ + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "ref/dotnet/de/System.Dynamic.Runtime.xml", + "ref/dotnet/es/System.Dynamic.Runtime.xml", + "ref/dotnet/fr/System.Dynamic.Runtime.xml", + "ref/dotnet/it/System.Dynamic.Runtime.xml", + "ref/dotnet/ja/System.Dynamic.Runtime.xml", + "ref/dotnet/ko/System.Dynamic.Runtime.xml", + "ref/dotnet/ru/System.Dynamic.Runtime.xml", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.xml", + "ref/dotnet/zh-hans/System.Dynamic.Runtime.xml", + "ref/dotnet/zh-hant/System.Dynamic.Runtime.xml", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", + "System.Dynamic.Runtime.4.0.10-beta-23109.nupkg", + "System.Dynamic.Runtime.4.0.10-beta-23109.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23109": { + "sha512": "l4QNrgLmC4KHGLcfriJ2EmsM2j18xefJzCnLU6YqVdBFaYzsJGwqmHyIr4nqw9DBjdWEtzdHLEbvpLeEay0ZWQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23109.nupkg", + "System.Globalization.4.0.10-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.IO/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "DVHSyfJO8mC9CpZFjjuaOWazALkWFnI6b/fqTQCjNe1dp2XasuvTRiV/qIOJB+uyDVex8sH8QMRUDS6ukimyLA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/de/System.IO.xml", + "ref/dotnet/es/System.IO.xml", + "ref/dotnet/fr/System.IO.xml", + "ref/dotnet/it/System.IO.xml", + "ref/dotnet/ja/System.IO.xml", + "ref/dotnet/ko/System.IO.xml", + "ref/dotnet/ru/System.IO.xml", + "ref/dotnet/System.IO.dll", + "ref/dotnet/System.IO.xml", + "ref/dotnet/zh-hans/System.IO.xml", + "ref/dotnet/zh-hant/System.IO.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23109.nupkg", + "System.IO.4.0.10-beta-23109.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._", + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "OusDe4B1/Q3BYY4QzNfztnyPPK9a1OGsQVZBg41C1bk8F2S3AOtXCx0GUwAfKbVxxS4dOdIgxWw1JN5m+IlpAA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/de/System.IO.FileSystem.xml", + "ref/dotnet/es/System.IO.FileSystem.xml", + "ref/dotnet/fr/System.IO.FileSystem.xml", + "ref/dotnet/it/System.IO.FileSystem.xml", + "ref/dotnet/ja/System.IO.FileSystem.xml", + "ref/dotnet/ko/System.IO.FileSystem.xml", + "ref/dotnet/ru/System.IO.FileSystem.xml", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.xml", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "1JFc6+hsLnlYgACgluhMi19zFkNruPgWoLDq30z7qMKgs3FZqShvXDZLTQ1Hk+cnenUoUU/8P8yRdmbdQaf4yg==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "sha512": "+xsD0H46/EB88848d9cHel2WVbUWlM/Y/k+tuY5lp2jXSwV8zMJ6F3TjMqeUZwWtUUavw+AN7D0a4ZoGVs/Rcw==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "cy+sQJW809QnFHIXt5Y/If45u362gwiNqHldnJS70l7VCjyR4Bo3UgZMZl+bowSupWxqXk69cwCQhRUyFu2hVw==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/de/System.Linq.Expressions.xml", + "ref/dotnet/es/System.Linq.Expressions.xml", + "ref/dotnet/fr/System.Linq.Expressions.xml", + "ref/dotnet/it/System.Linq.Expressions.xml", + "ref/dotnet/ja/System.Linq.Expressions.xml", + "ref/dotnet/ko/System.Linq.Expressions.xml", + "ref/dotnet/ru/System.Linq.Expressions.xml", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.xml", + "ref/dotnet/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet/zh-hant/System.Linq.Expressions.xml", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Mu6nIhw5k/zAMigeCh4aqma3kwXLoyPREVD6RxVPhGu2QJjAEeih0GWumoDjtdFp0B5Q6sYeakWDAds7NmzWQg==", + "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.0-beta-23019": { + "sha512": "8mt4X1eIjTMrKVINJuzuFYf7C4GrYFC+tlvc2zH5HtxKPpbFZamMUdJ19ORxZ9ds053aqQASdiha7eH86PN+eg==", + "files": [ + "lib/DNXCore50/System.Net.Http.dll", + "lib/net45/_._", + "lib/netcore50/System.Net.Http.dll", + "lib/win8/_._", + "ref/dotnet/System.Net.Http.dll", + "ref/net45/_._", + "ref/netcore50/System.Net.Http.dll", + "ref/win8/_._", + "System.Net.Http.4.0.0-beta-23019.nupkg", + "System.Net.Http.4.0.0-beta-23019.nupkg.sha512", + "System.Net.Http.nuspec" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._", + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "sha512": "4NWuSdsFSf21iJkd+NQaE2OwtNaKGdXIbBbQmfE43evHl6fUII38wwNnooWtF0avCEyU6BOdUTiwoZAUZyQwcA==", + "files": [ + "lib/DNXCore50/System.Net.Sockets.dll", + "ref/dotnet/System.Net.Sockets.dll", + "System.Net.Sockets.4.0.10-beta-23019.nupkg", + "System.Net.Sockets.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Sockets.nuspec" + ] + }, + "System.ObjectModel/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "mnrhXE8nT5mX/ndEJ5BsdLCgN6CofKiwQvr9Olsp/s3crY5/lXYM73N2bNSvsFcHD1o0XhaCOn18Vekv6SYTpg==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ObjectModel.xml", + "ref/dotnet/es/System.ObjectModel.xml", + "ref/dotnet/fr/System.ObjectModel.xml", + "ref/dotnet/it/System.ObjectModel.xml", + "ref/dotnet/ja/System.ObjectModel.xml", + "ref/dotnet/ko/System.ObjectModel.xml", + "ref/dotnet/ru/System.ObjectModel.xml", + "ref/dotnet/System.ObjectModel.dll", + "ref/dotnet/System.ObjectModel.xml", + "ref/dotnet/zh-hans/System.ObjectModel.xml", + "ref/dotnet/zh-hant/System.ObjectModel.xml", + "ref/net46/_._", + "System.ObjectModel.4.0.10-beta-23109.nupkg", + "System.ObjectModel.4.0.10-beta-23109.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "y6M7TxwDXBD2in5cCf+KzucZyx7YE7SJMcU24atzYnpwP2xFASUYCeI6NRg5bYcw2Do5HKBz+XdE9WiZrwpnFg==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23109.nupkg", + "System.Private.Uri.4.0.0-beta-23109.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23109": { + "sha512": "aeXO8gjPb46LaP727cXDcCZ2mZoMxguq2UhE25wJoO1Je8Q8D2JFonNk85oVlgXCdEM6XgrtRnsnhvj8PmTBNg==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/de/System.Reflection.xml", + "ref/dotnet/es/System.Reflection.xml", + "ref/dotnet/fr/System.Reflection.xml", + "ref/dotnet/it/System.Reflection.xml", + "ref/dotnet/ja/System.Reflection.xml", + "ref/dotnet/ko/System.Reflection.xml", + "ref/dotnet/ru/System.Reflection.xml", + "ref/dotnet/System.Reflection.dll", + "ref/dotnet/System.Reflection.xml", + "ref/dotnet/zh-hans/System.Reflection.xml", + "ref/dotnet/zh-hant/System.Reflection.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23109.nupkg", + "System.Reflection.4.0.10-beta-23109.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "sha512": "H8QtiSXFHNiQIPZe3PdNJPIjuH9O/A8+/52bw2RIKgV8rMrshmi2LufTvYCb+V5YPBFYWg2Yt8nRISEY4+uV5Q==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/de/System.Reflection.Emit.xml", + "ref/dotnet/es/System.Reflection.Emit.xml", + "ref/dotnet/fr/System.Reflection.Emit.xml", + "ref/dotnet/it/System.Reflection.Emit.xml", + "ref/dotnet/ja/System.Reflection.Emit.xml", + "ref/dotnet/ko/System.Reflection.Emit.xml", + "ref/dotnet/ru/System.Reflection.Emit.xml", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.xml", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "sha512": "tJO27blFXyvYwDLbK7GvgFC94XjeY6MnRitBI4w8LHfEc/gVdRmCC8gzkE8KEmkecnIWIt9VTSJ3p4lGgafKKA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/wp80/_._", + "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/net45/_._", + "ref/wp80/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "sXo3+qJ7TukCF/rDFYKjEog4iVb75dXJztu/lkvhMHgYnviPSbi9zg78FQUFhB6BOvntwnknrgNJhhtl3x9a7A==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Extensions.xml", + "ref/dotnet/es/System.Reflection.Extensions.xml", + "ref/dotnet/fr/System.Reflection.Extensions.xml", + "ref/dotnet/it/System.Reflection.Extensions.xml", + "ref/dotnet/ja/System.Reflection.Extensions.xml", + "ref/dotnet/ko/System.Reflection.Extensions.xml", + "ref/dotnet/ru/System.Reflection.Extensions.xml", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/dotnet/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "R5oBDNgUtSV9KTPCxwHWiTyryX/9mngnPbLWwFOEF5xcNd3Qlu6/3LiauGsIzGtXV8vOpRl9tfyIFy8t4ix4Gw==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Primitives.xml", + "ref/dotnet/es/System.Reflection.Primitives.xml", + "ref/dotnet/fr/System.Reflection.Primitives.xml", + "ref/dotnet/it/System.Reflection.Primitives.xml", + "ref/dotnet/ja/System.Reflection.Primitives.xml", + "ref/dotnet/ko/System.Reflection.Primitives.xml", + "ref/dotnet/ru/System.Reflection.Primitives.xml", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "lTuPMxeoT/Jqb1QtsIuSomLiJpQP3Y4DqqxLPncrMvLrejwdF25QSbhXdx5twgvBDqwSVL8wYtqiOqKe02u7FA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/de/System.Reflection.TypeExtensions.xml", + "ref/dotnet/es/System.Reflection.TypeExtensions.xml", + "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", + "ref/dotnet/it/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "sha512": "9J0+T+ChJ9rlYTcrJiTOLfTJHuHuenol1eOJgiF8yJK1rDozU2Wnex5kXus5Z8/SerMSCUofUOx4c2WYX/tNow==", + "files": [ + "lib/DNXCore50/System.Resources.ReaderWriter.dll", + "lib/net46/System.Resources.ReaderWriter.dll", + "ref/dotnet/System.Resources.ReaderWriter.dll", + "ref/net46/System.Resources.ReaderWriter.dll", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ReaderWriter.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "6usAb6nZEPKugl3z5JR/RZrouH5/340n3tM0lhRfxVE/k3B3Sfh/sHSPiAOorrZgGm4cIDDhXTCGJQSWYphu3g==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/de/System.Runtime.xml", + "ref/dotnet/es/System.Runtime.xml", + "ref/dotnet/fr/System.Runtime.xml", + "ref/dotnet/it/System.Runtime.xml", + "ref/dotnet/ja/System.Runtime.xml", + "ref/dotnet/ko/System.Runtime.xml", + "ref/dotnet/ru/System.Runtime.xml", + "ref/dotnet/System.Runtime.dll", + "ref/dotnet/System.Runtime.xml", + "ref/dotnet/zh-hans/System.Runtime.xml", + "ref/dotnet/zh-hant/System.Runtime.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23109.nupkg", + "System.Runtime.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "JkRMtSY5YFGhP9eY7ZFIj40Ha5lGOwSxrk90k0ZAuIFn6qEPNe0NKu/C8laV7Cqy4Lv5IYzkVUGrfOqg3MOG9A==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/de/System.Runtime.Extensions.xml", + "ref/dotnet/es/System.Runtime.Extensions.xml", + "ref/dotnet/fr/System.Runtime.Extensions.xml", + "ref/dotnet/it/System.Runtime.Extensions.xml", + "ref/dotnet/ja/System.Runtime.Extensions.xml", + "ref/dotnet/ko/System.Runtime.Extensions.xml", + "ref/dotnet/ru/System.Runtime.Extensions.xml", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "XfjBv5hxBDVXvgPzBXiMpHprnmd5trdBAG4o7DEi/3GPXIlety4G0sfmlxeiTr7njKr0wF4ERdLIfzPesS5PAw==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "fxRLTR5kbqOZuSeT5ggVBYc6HIEGmEwh+Uw1ijp2qD3yMiMPmxvtI5aP5t0yZHEmwUrB37lGB+oaPpcXLH5Feg==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/de/System.Runtime.InteropServices.xml", + "ref/dotnet/es/System.Runtime.InteropServices.xml", + "ref/dotnet/fr/System.Runtime.InteropServices.xml", + "ref/dotnet/it/System.Runtime.InteropServices.xml", + "ref/dotnet/ja/System.Runtime.InteropServices.xml", + "ref/dotnet/ko/System.Runtime.InteropServices.xml", + "ref/dotnet/ru/System.Runtime.InteropServices.xml", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "sha512": "YuxWBHBbvN5ILjno2DBjgW2NXQscfJFvIfQEOGHwChM5Q9//EO0LZfErH7fTk1n0IVcorDu/HTnkqr2NuK/t5w==", + "files": [ + "lib/DNXCore50/System.Runtime.Loader.dll", + "ref/dotnet/System.Runtime.Loader.dll", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Loader.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Security.Claims/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6oI/9RzVy/6AVHRzuSm9oOOm3O/iS+pWDby0YTuepAtW7aT1VZiYbar0Nzi7wUJLIE+EuUWgGUgVQni0inIUSw==", + "files": [ + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/de/System.Security.Claims.xml", + "ref/dotnet/es/System.Security.Claims.xml", + "ref/dotnet/fr/System.Security.Claims.xml", + "ref/dotnet/it/System.Security.Claims.xml", + "ref/dotnet/ja/System.Security.Claims.xml", + "ref/dotnet/ko/System.Security.Claims.xml", + "ref/dotnet/ru/System.Security.Claims.xml", + "ref/dotnet/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.xml", + "ref/dotnet/zh-hans/System.Security.Claims.xml", + "ref/dotnet/zh-hant/System.Security.Claims.xml", + "ref/net46/System.Security.Claims.dll", + "System.Security.Claims.4.0.0-beta-23109.nupkg", + "System.Security.Claims.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "j94G8UrhEtW+RigEzZkayd9fcT9v/J35/V+rGzm6vmRjLE4e12+jwFUqFC9ZowElO4ZqaCoBgxu7uogHRmrKbQ==", + "files": [ + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Security.Principal.xml", + "ref/dotnet/es/System.Security.Principal.xml", + "ref/dotnet/fr/System.Security.Principal.xml", + "ref/dotnet/it/System.Security.Principal.xml", + "ref/dotnet/ja/System.Security.Principal.xml", + "ref/dotnet/ko/System.Security.Principal.xml", + "ref/dotnet/ru/System.Security.Principal.xml", + "ref/dotnet/System.Security.Principal.dll", + "ref/dotnet/System.Security.Principal.xml", + "ref/dotnet/zh-hans/System.Security.Principal.xml", + "ref/dotnet/zh-hant/System.Security.Principal.xml", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Security.Principal.4.0.0-beta-23109.nupkg", + "System.Security.Principal.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "/u7MPH/6bERVU88hsQJFoxva/OnPcS5fUrzj8OWH016zKnUElOVq76GoUdghmN5HCAmRpjqmryvZLt8+b2mrjQ==", + "files": [ + "lib/DNXCore50/System.Security.Principal.Windows.dll", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/dotnet/de/System.Security.Principal.Windows.xml", + "ref/dotnet/es/System.Security.Principal.Windows.xml", + "ref/dotnet/fr/System.Security.Principal.Windows.xml", + "ref/dotnet/it/System.Security.Principal.Windows.xml", + "ref/dotnet/ja/System.Security.Principal.Windows.xml", + "ref/dotnet/ko/System.Security.Principal.Windows.xml", + "ref/dotnet/ru/System.Security.Principal.Windows.xml", + "ref/dotnet/System.Security.Principal.Windows.dll", + "ref/dotnet/System.Security.Principal.Windows.xml", + "ref/dotnet/zh-hans/System.Security.Principal.Windows.xml", + "ref/dotnet/zh-hant/System.Security.Principal.Windows.xml", + "ref/net46/System.Security.Principal.Windows.dll", + "System.Security.Principal.Windows.4.0.0-beta-23109.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Principal.Windows.nuspec" + ] + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll", + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "sha512": "oymPt96KPPXO/Scxow+x8cKczVw0KXfExKTXQlwT+j3sS1j/JuV+rZq2sQ54fqOi2R4d9aFPESsoN830sA6VCw==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/de/System.Text.Encoding.xml", + "ref/dotnet/es/System.Text.Encoding.xml", + "ref/dotnet/fr/System.Text.Encoding.xml", + "ref/dotnet/it/System.Text.Encoding.xml", + "ref/dotnet/ja/System.Text.Encoding.xml", + "ref/dotnet/ko/System.Text.Encoding.xml", + "ref/dotnet/ru/System.Text.Encoding.xml", + "ref/dotnet/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "PoB/L0tth9mKUS1ky1LQVd+nniazNmnhbzmPZL+US+06QvQRhZlpZfUR+WN2ssWYpHFiL4Zt30lzf4qEiTBP4w==", + "files": [ + "lib/dotnet/System.Text.Encoding.CodePages.dll", + "ref/dotnet/de/System.Text.Encoding.CodePages.xml", + "ref/dotnet/es/System.Text.Encoding.CodePages.xml", + "ref/dotnet/fr/System.Text.Encoding.CodePages.xml", + "ref/dotnet/it/System.Text.Encoding.CodePages.xml", + "ref/dotnet/ja/System.Text.Encoding.CodePages.xml", + "ref/dotnet/ko/System.Text.Encoding.CodePages.xml", + "ref/dotnet/ru/System.Text.Encoding.CodePages.xml", + "ref/dotnet/System.Text.Encoding.CodePages.dll", + "ref/dotnet/System.Text.Encoding.CodePages.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.CodePages.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.CodePages.xml", + "System.Text.Encoding.CodePages.4.0.0-beta-23109.nupkg", + "System.Text.Encoding.CodePages.4.0.0-beta-23109.nupkg.sha512", + "System.Text.Encoding.CodePages.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "sha512": "F6GZqICZ654MsqVPCL8h+fvDZJmXnu1I1PYY9686yG+lbcZzs9aavqMUjv1Lu5wOdiTKnmn7LADZYzPD6y1p+w==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/de/System.Text.Encoding.Extensions.xml", + "ref/dotnet/es/System.Text.Encoding.Extensions.xml", + "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", + "ref/dotnet/it/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "F+tfzB34KhZnjS3ActdL57CQVD9oYGhAZm8AREL+KvbJTh1Y8/tlyCyI2xoH6KdJzIPcXC50yu4OkHNbpcutEw==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Text.RegularExpressions.xml", + "ref/dotnet/es/System.Text.RegularExpressions.xml", + "ref/dotnet/fr/System.Text.RegularExpressions.xml", + "ref/dotnet/it/System.Text.RegularExpressions.xml", + "ref/dotnet/ja/System.Text.RegularExpressions.xml", + "ref/dotnet/ko/System.Text.RegularExpressions.xml", + "ref/dotnet/ru/System.Text.RegularExpressions.xml", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/dotnet/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "TSViw+K20yh9DmwzZpvuCUc2m2ju1eVAJ10pTw2gB/aP4kkrX2nGf4A9BkwkxupPXFA2OtO9LbbEqdp4YbBnjQ==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/de/System.Threading.xml", + "ref/dotnet/es/System.Threading.xml", + "ref/dotnet/fr/System.Threading.xml", + "ref/dotnet/it/System.Threading.xml", + "ref/dotnet/ja/System.Threading.xml", + "ref/dotnet/ko/System.Threading.xml", + "ref/dotnet/ru/System.Threading.xml", + "ref/dotnet/System.Threading.dll", + "ref/dotnet/System.Threading.xml", + "ref/dotnet/zh-hans/System.Threading.xml", + "ref/dotnet/zh-hant/System.Threading.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23109.nupkg", + "System.Threading.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "IMVmv9x4lBiy+jz31dU7KT/aTDlKZabAEDFAxQOTv//v1RYu5XZXZLIiTZqyVUKxxHgB0PUnuSDl5VxUDKysfQ==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/de/System.Threading.Overlapped.xml", + "ref/dotnet/es/System.Threading.Overlapped.xml", + "ref/dotnet/fr/System.Threading.Overlapped.xml", + "ref/dotnet/it/System.Threading.Overlapped.xml", + "ref/dotnet/ja/System.Threading.Overlapped.xml", + "ref/dotnet/ko/System.Threading.Overlapped.xml", + "ref/dotnet/ru/System.Threading.Overlapped.xml", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "J7lBqLLy1A85KZUgFz0fS8u6BO+pnWun2OAkrNqcUQbgCiKDC9v92u9q6a6AB9znum+GCdzH3cyEftNtIVNd1Q==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/de/System.Threading.Tasks.xml", + "ref/dotnet/es/System.Threading.Tasks.xml", + "ref/dotnet/fr/System.Threading.Tasks.xml", + "ref/dotnet/it/System.Threading.Tasks.xml", + "ref/dotnet/ja/System.Threading.Tasks.xml", + "ref/dotnet/ko/System.Threading.Tasks.xml", + "ref/dotnet/ru/System.Threading.Tasks.xml", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.xml", + "ref/dotnet/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet/zh-hant/System.Threading.Tasks.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23109": { + "sha512": "pOob5Fz4cRJ/bfBs2+ehmS99VGCN5Ei2mf7bl17STagcDGHUZBAzVLz8Kamq0hwQGX2pCFkuUZH+2Ycdts2PSQ==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/de/System.Threading.Thread.xml", + "ref/dotnet/es/System.Threading.Thread.xml", + "ref/dotnet/fr/System.Threading.Thread.xml", + "ref/dotnet/it/System.Threading.Thread.xml", + "ref/dotnet/ja/System.Threading.Thread.xml", + "ref/dotnet/ko/System.Threading.Thread.xml", + "ref/dotnet/ru/System.Threading.Thread.xml", + "ref/dotnet/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.xml", + "ref/dotnet/zh-hans/System.Threading.Thread.xml", + "ref/dotnet/zh-hant/System.Threading.Thread.xml", + "ref/net46/System.Threading.Thread.dll", + "System.Threading.Thread.4.0.0-beta-23109.nupkg", + "System.Threading.Thread.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.0-beta-23109": { + "sha512": "m0IORsRdO5kQqdA3C1EGLvD3NPaAj+B0FaM0KnAj0Cxg53baGGmYpNwh6mPf4sB8Pl4VBUtVaxlLN18MuyNQKQ==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Threading.Timer.xml", + "ref/dotnet/es/System.Threading.Timer.xml", + "ref/dotnet/fr/System.Threading.Timer.xml", + "ref/dotnet/it/System.Threading.Timer.xml", + "ref/dotnet/ja/System.Threading.Timer.xml", + "ref/dotnet/ko/System.Threading.Timer.xml", + "ref/dotnet/ru/System.Threading.Timer.xml", + "ref/dotnet/System.Threading.Timer.dll", + "ref/dotnet/System.Threading.Timer.xml", + "ref/dotnet/zh-hans/System.Threading.Timer.xml", + "ref/dotnet/zh-hant/System.Threading.Timer.xml", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/win81/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.0-beta-23109.nupkg", + "System.Threading.Timer.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.0-beta-23019": { + "sha512": "YsRwtb9uO6N8ndtnHPVi0oXSd7MkIVWiRdIHGzyBQ2qwMrQedBRW7u6P1LWo9DDcloOhwqmS6/HinClygHhbNg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "License.rtf", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/win8/_._", + "System.Xml.XDocument.4.0.0-beta-23019.nupkg", + "System.Xml.XDocument.4.0.0-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "sha512": "b1SOLM9FhBCL4gW3OP5b/HV1JVb1hfsF4D4wBxyUIZMXcP3kbm4F+bYvOB0cSeJ1F8oVnCCGivSk1/aSEQ86XQ==", + "files": [ + "lib/dotnet/System.Xml.XmlDocument.dll", + "lib/net46/System.Xml.XmlDocument.dll", + "ref/dotnet/System.Xml.XmlDocument.dll", + "ref/net46/System.Xml.XmlDocument.dll", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg.sha512", + "System.Xml.XmlDocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "sha512": "BqXNr12cUj02qymL4Nhowcsfz840wLSMPfU0T8i0JGPPIx38txMwUA2pnrYWsYmDmyIgw7GGUhrjXz6WJpjgwg==", + "files": [ + "lib/DNXCore50/System.Xml.XmlSerializer.dll", + "lib/net46/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "ref/dotnet/System.Xml.XmlSerializer.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XmlSerializer.nuspec" + ] + }, + "xunit.abstractions/2.0.0": { + "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0.nupkg", + "xunit.abstractions.2.0.0.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.1.0-beta3-build3029": { + "sha512": "AMS7Fv77DayXVRCBMmVEDwOXPcbxk8dCBA/iACsve+6+UQqopMtNyAynyIcXPFRK/peeitUKID4ChOXWisJmUw==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.1.0-beta3-build3029.nupkg", + "xunit.assert.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "sha512": "lsPro5U3NLasHI/RwqjKzXiRlh9N0IOlR3cluwXYVtihXbGtySeSnU/Fh5MTcWYxh+MVpoNop5zDD0/A2nrHsA==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "sha512": "WuUYamK4RHrHxihvNuX7NkryMhQrpH1+ziJ/mPIQbm18zevSgre8BwUuVZvmLZa8uVob3xS4dvAah2+HCgLiXg==", + "files": [ + "lib/dnx451/xunit.execution.dnx.dll", + "lib/dnx451/xunit.execution.dnx.pdb", + "lib/dnx451/xunit.execution.dnx.xml", + "lib/dnxcore50/xunit.execution.dnx.dll", + "lib/dnxcore50/xunit.execution.dnx.pdb", + "lib/dnxcore50/xunit.execution.dnx.xml", + "lib/monoandroid/xunit.execution.MonoAndroid.dll", + "lib/monoandroid/xunit.execution.MonoAndroid.pdb", + "lib/monoandroid/xunit.execution.MonoAndroid.xml", + "lib/monotouch/xunit.execution.MonoTouch.dll", + "lib/monotouch/xunit.execution.MonoTouch.pdb", + "lib/monotouch/xunit.execution.MonoTouch.xml", + "lib/net45/xunit.execution.desktop.dll", + "lib/net45/xunit.execution.desktop.pdb", + "lib/net45/xunit.execution.desktop.xml", + "lib/portable-wpa81+win81/xunit.execution.universal.dll", + "lib/portable-wpa81+win81/xunit.execution.universal.pdb", + "lib/portable-wpa81+win81/xunit.execution.universal.pri", + "lib/portable-wpa81+win81/xunit.execution.universal.xml", + "lib/wp8/xunit.execution.wp8.dll", + "lib/wp8/xunit.execution.wp8.pdb", + "lib/wp8/xunit.execution.wp8.xml", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.xml", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "sha512": "R6cvKy3mb8QjMxiTHqljsgwf424jYLbU07Ao0NcNHcRMT2OR+a2ldE6WdECiDMseYz/vuIaFQ6ebYRKEfMI/1A==", + "files": [ + "app/project.json", + "app/xunit", + "app/xunit.cmd", + "lib/dnx451/xunit.runner.dnx.dll", + "lib/dnx451/xunit.runner.dnx.xml", + "lib/dnxcore50/xunit.runner.dnx.dll", + "lib/dnxcore50/xunit.runner.dnx.xml", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg.sha512", + "xunit.runner.dnx.nuspec" + ] + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "sha512": "o+hiJTewV+4cA2GoHgbNC/FATjKxo2Z6PPeIdIfc7qysvYtu33POYUdo5XAqlRD9BQ7ojc8t/NOyZg/Qd9kjAg==", + "files": [ + "lib/dnx451/xunit.runner.reporters.dnx.dll", + "lib/dnxcore50/xunit.runner.reporters.dnx.dll", + "lib/net45/xunit.runner.reporters.desktop.dll", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.reporters.nuspec" + ] + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "sha512": "cm5lVNYtypOLgu6Vnd30UWPVNrcILzWmSul7tFrW/xT+ZjPYSES7kvYc80rKAUWXQl/awglhc5IMtAbHJi4abg==", + "files": [ + "lib/dnx451/xunit.runner.utility.dnx.dll", + "lib/dnx451/xunit.runner.utility.dnx.pdb", + "lib/dnx451/xunit.runner.utility.dnx.xml", + "lib/dnxcore50/xunit.runner.utility.dnx.dll", + "lib/dnxcore50/xunit.runner.utility.dnx.pdb", + "lib/dnxcore50/xunit.runner.utility.dnx.xml", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.dll", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.pdb", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.xml", + "lib/monotouch/xunit.runner.utility.MonoTouch.dll", + "lib/monotouch/xunit.runner.utility.MonoTouch.pdb", + "lib/monotouch/xunit.runner.utility.MonoTouch.xml", + "lib/net35/xunit.runner.utility.desktop.dll", + "lib/net35/xunit.runner.utility.desktop.pdb", + "lib/net35/xunit.runner.utility.desktop.xml", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.dll", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pdb", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pri", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.xml", + "lib/wp8/xunit.runner.utility.wp8.dll", + "lib/wp8/xunit.runner.utility.wp8.pdb", + "lib/wp8/xunit.runner.utility.wp8.xml", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.xml", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "EntityFramework.SqlServer >= 7.0.0-beta6", + "Microsoft.Framework.Configuration.Json >= 1.0.0-beta6", + "Microsoft.Framework.Configuration.EnvironmentVariables >= 1.0.0-beta6", + "xunit.assert >= 2.1.0-*", + "xunit.extensibility.execution >= 2.1.0-*" + ], + ".NETFramework,Version=v4.6": [], + "DNXCore,Version=v5.0": [ + "xunit.runner.dnx >= 2.1.0-*" + ], + "DNX,Version=v4.5.1": [ + "xunit.runner.dnx >= 2.1.0-*" + ] + } +} \ No newline at end of file diff --git a/test/EntityFramework.Microbenchmarks.EF6/project.json b/test/EntityFramework.Microbenchmarks.EF6/project.json index bdb10bd31f0..b9f92045c35 100644 --- a/test/EntityFramework.Microbenchmarks.EF6/project.json +++ b/test/EntityFramework.Microbenchmarks.EF6/project.json @@ -1,18 +1,18 @@ { - "dependencies": { - "EntityFramework": "6.1.2", - "EntityFramework.Microbenchmarks.Core": "1.0.0", - "Microsoft.Framework.Configuration.Json": "1.0.0-*" - }, - "commands": { - "test": "xunit.runner.dnx" - }, - "frameworks": { - "net46": { }, - "dnx451": { - "dependencies": { - "xunit.runner.dnx": "2.1.0-*" - } + "dependencies": { + "EntityFramework": "6.1.2", + "EntityFramework.Microbenchmarks.Core": "1.0.0", + "Microsoft.Framework.Configuration.Json": "1.0.0-beta6" + }, + "commands": { + "test": "xunit.runner.dnx" + }, + "frameworks": { + "net46": {}, + "dnx451": { + "dependencies": { + "xunit.runner.dnx": "2.1.0-*" + } + } } - } -} +} \ No newline at end of file diff --git a/test/EntityFramework.Microbenchmarks.EF6/project.lock.json b/test/EntityFramework.Microbenchmarks.EF6/project.lock.json new file mode 100644 index 00000000000..64312b7b2ce --- /dev/null +++ b/test/EntityFramework.Microbenchmarks.EF6/project.lock.json @@ -0,0 +1,1944 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.6": { + "EntityFramework/6.1.2": { + "frameworkAssemblies": [ + "System.ComponentModel.DataAnnotations" + ], + "compile": { + "lib/net45/EntityFramework.dll": {}, + "lib/net45/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.dll": {}, + "lib/net45/EntityFramework.SqlServer.dll": {} + } + }, + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.SqlServer.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Json/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Json.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Json.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/net45/xunit.execution.desktop.dll": {} + }, + "runtime": { + "lib/net45/xunit.execution.desktop.dll": {} + } + } + }, + "DNX,Version=v4.5.1": { + "EntityFramework/6.1.2": { + "frameworkAssemblies": [ + "System.ComponentModel.DataAnnotations" + ], + "compile": { + "lib/net45/EntityFramework.dll": {}, + "lib/net45/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.dll": {}, + "lib/net45/EntityFramework.SqlServer.dll": {} + } + }, + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.ComponentModel.DataAnnotations", + "System.Core", + "System.Diagnostics.Debug", + "System.Diagnostics.Tools", + "System.Globalization", + "System.Linq", + "System.Linq.Expressions", + "System.Linq.Queryable", + "System.ObjectModel", + "System.Reflection", + "System.Reflection.Extensions", + "System.Resources.ResourceManager", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading" + ], + "compile": { + "lib/dnx451/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dnx451/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.SqlServer.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "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.CommandLineUtils.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Json/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6", + "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-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnx451/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.ObjectModel", + "System.Reflection", + "System.Runtime", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework/6.1.2": { + "serviceable": true, + "sha512": "tMYDJsgf19mFkwu1Dp3e681IggYcnuLJrj+OoQtYJ7L8lOD0OprBRyLy9sTTY4leJ2216HU3yFQucEPPKd1BGw==", + "files": [ + "content/App.config.transform", + "content/Web.config.transform", + "EntityFramework.6.1.2.nupkg", + "EntityFramework.6.1.2.nupkg.sha512", + "EntityFramework.nuspec", + "lib/net40/EntityFramework.dll", + "lib/net40/EntityFramework.SqlServer.dll", + "lib/net40/EntityFramework.SqlServer.xml", + "lib/net40/EntityFramework.xml", + "lib/net45/EntityFramework.dll", + "lib/net45/EntityFramework.SqlServer.dll", + "lib/net45/EntityFramework.SqlServer.xml", + "lib/net45/EntityFramework.xml", + "tools/about_EntityFramework.help.txt", + "tools/EntityFramework.PowerShell.dll", + "tools/EntityFramework.PowerShell.Utility.dll", + "tools/EntityFramework.psd1", + "tools/EntityFramework.psm1", + "tools/init.ps1", + "tools/install.ps1", + "tools/migrate.exe" + ] + }, + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "EntityFramework.Relational/7.0.0-beta6": { + "serviceable": true, + "sha512": "2CVE3UZjzXDRFYyfVL0lePnK1t2ZyLexNE88SiuUhY4mPC5SOWmDZ7mhLvtXeVJL/7PBpEmDy0qSDZRBpJ/Kiw==", + "files": [ + "EntityFramework.Relational.7.0.0-beta6.nupkg", + "EntityFramework.Relational.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Relational.nuspec", + "lib/dotnet/EntityFramework.Relational.dll", + "lib/dotnet/EntityFramework.Relational.xml", + "lib/net45/EntityFramework.Relational.dll", + "lib/net45/EntityFramework.Relational.xml", + "repo.json" + ] + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "serviceable": true, + "sha512": "69BvxKYVxgO/LK5YTKo9iuK4rt2/ystXVWdHfl3JaZ8DASB+UTacNNDDYeHuo2ZqQCv523AZSReuBGZ5reGBOg==", + "files": [ + "EntityFramework.SqlServer.7.0.0-beta6.nupkg", + "EntityFramework.SqlServer.7.0.0-beta6.nupkg.sha512", + "EntityFramework.SqlServer.nuspec", + "lib/dnxcore50/EntityFramework.SqlServer.dll", + "lib/dnxcore50/EntityFramework.SqlServer.xml", + "lib/net45/EntityFramework.SqlServer.dll", + "lib/net45/EntityFramework.SqlServer.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta5": { + "sha512": "sZIlSWm9r2CFDI5JB21lKwa8Hq7DZPBYx3LcBnuxZnhSh2AwrhrS88YUZSMP6QCV+PHMwj0udTdnS1eZ2DbM7w==", + "files": [ + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.xml", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.xml", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.CommandLineUtils.Sources.nuspec", + "shared/AnsiConsole.cs", + "shared/CommandArgument.cs", + "shared/CommandLineApplication.cs", + "shared/CommandOption.cs", + "shared/CommandOptionType.cs" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6": { + "serviceable": true, + "sha512": "wUYZglLlkxL6xpbOHv6TqeJeT3GwpOxNRw3gkWOpM7OVrhAORm1pWnQ4qA+kWs5RDXSEntv47dK95MIypfIWKQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "lib/net45/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/net45/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.EnvironmentVariables.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Json/1.0.0-beta6": { + "serviceable": true, + "sha512": "C4kdW1eP2e5d8pAK5iJ9EWHCpnDpBDO/lu22VjFfTekRTes2zCkpJRt3OYUyqmlg8emVHsGM/i8k6Y/oP6eeZg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Json.dll", + "lib/dnx451/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-beta6.nupkg", + "Microsoft.Framework.Configuration.Json.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Json.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "xunit.abstractions/2.0.0": { + "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0.nupkg", + "xunit.abstractions.2.0.0.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.1.0-beta3-build3029": { + "sha512": "AMS7Fv77DayXVRCBMmVEDwOXPcbxk8dCBA/iACsve+6+UQqopMtNyAynyIcXPFRK/peeitUKID4ChOXWisJmUw==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.1.0-beta3-build3029.nupkg", + "xunit.assert.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "sha512": "lsPro5U3NLasHI/RwqjKzXiRlh9N0IOlR3cluwXYVtihXbGtySeSnU/Fh5MTcWYxh+MVpoNop5zDD0/A2nrHsA==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "sha512": "WuUYamK4RHrHxihvNuX7NkryMhQrpH1+ziJ/mPIQbm18zevSgre8BwUuVZvmLZa8uVob3xS4dvAah2+HCgLiXg==", + "files": [ + "lib/dnx451/xunit.execution.dnx.dll", + "lib/dnx451/xunit.execution.dnx.pdb", + "lib/dnx451/xunit.execution.dnx.xml", + "lib/dnxcore50/xunit.execution.dnx.dll", + "lib/dnxcore50/xunit.execution.dnx.pdb", + "lib/dnxcore50/xunit.execution.dnx.xml", + "lib/monoandroid/xunit.execution.MonoAndroid.dll", + "lib/monoandroid/xunit.execution.MonoAndroid.pdb", + "lib/monoandroid/xunit.execution.MonoAndroid.xml", + "lib/monotouch/xunit.execution.MonoTouch.dll", + "lib/monotouch/xunit.execution.MonoTouch.pdb", + "lib/monotouch/xunit.execution.MonoTouch.xml", + "lib/net45/xunit.execution.desktop.dll", + "lib/net45/xunit.execution.desktop.pdb", + "lib/net45/xunit.execution.desktop.xml", + "lib/portable-wpa81+win81/xunit.execution.universal.dll", + "lib/portable-wpa81+win81/xunit.execution.universal.pdb", + "lib/portable-wpa81+win81/xunit.execution.universal.pri", + "lib/portable-wpa81+win81/xunit.execution.universal.xml", + "lib/wp8/xunit.execution.wp8.dll", + "lib/wp8/xunit.execution.wp8.pdb", + "lib/wp8/xunit.execution.wp8.xml", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.xml", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "sha512": "R6cvKy3mb8QjMxiTHqljsgwf424jYLbU07Ao0NcNHcRMT2OR+a2ldE6WdECiDMseYz/vuIaFQ6ebYRKEfMI/1A==", + "files": [ + "app/project.json", + "app/xunit", + "app/xunit.cmd", + "lib/dnx451/xunit.runner.dnx.dll", + "lib/dnx451/xunit.runner.dnx.xml", + "lib/dnxcore50/xunit.runner.dnx.dll", + "lib/dnxcore50/xunit.runner.dnx.xml", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg.sha512", + "xunit.runner.dnx.nuspec" + ] + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "sha512": "o+hiJTewV+4cA2GoHgbNC/FATjKxo2Z6PPeIdIfc7qysvYtu33POYUdo5XAqlRD9BQ7ojc8t/NOyZg/Qd9kjAg==", + "files": [ + "lib/dnx451/xunit.runner.reporters.dnx.dll", + "lib/dnxcore50/xunit.runner.reporters.dnx.dll", + "lib/net45/xunit.runner.reporters.desktop.dll", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.reporters.nuspec" + ] + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "sha512": "cm5lVNYtypOLgu6Vnd30UWPVNrcILzWmSul7tFrW/xT+ZjPYSES7kvYc80rKAUWXQl/awglhc5IMtAbHJi4abg==", + "files": [ + "lib/dnx451/xunit.runner.utility.dnx.dll", + "lib/dnx451/xunit.runner.utility.dnx.pdb", + "lib/dnx451/xunit.runner.utility.dnx.xml", + "lib/dnxcore50/xunit.runner.utility.dnx.dll", + "lib/dnxcore50/xunit.runner.utility.dnx.pdb", + "lib/dnxcore50/xunit.runner.utility.dnx.xml", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.dll", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.pdb", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.xml", + "lib/monotouch/xunit.runner.utility.MonoTouch.dll", + "lib/monotouch/xunit.runner.utility.MonoTouch.pdb", + "lib/monotouch/xunit.runner.utility.MonoTouch.xml", + "lib/net35/xunit.runner.utility.desktop.dll", + "lib/net35/xunit.runner.utility.desktop.pdb", + "lib/net35/xunit.runner.utility.desktop.xml", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.dll", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pdb", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pri", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.xml", + "lib/wp8/xunit.runner.utility.wp8.dll", + "lib/wp8/xunit.runner.utility.wp8.pdb", + "lib/wp8/xunit.runner.utility.wp8.xml", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.xml", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "EntityFramework >= 6.1.2", + "EntityFramework.Microbenchmarks.Core >= 1.0.0", + "Microsoft.Framework.Configuration.Json >= 1.0.0-beta6" + ], + ".NETFramework,Version=v4.6": [], + "DNX,Version=v4.5.1": [ + "xunit.runner.dnx >= 2.1.0-*" + ] + } +} \ No newline at end of file diff --git a/test/EntityFramework.Microbenchmarks/project.json b/test/EntityFramework.Microbenchmarks/project.json index 1263066955e..3b9c6b2d508 100644 --- a/test/EntityFramework.Microbenchmarks/project.json +++ b/test/EntityFramework.Microbenchmarks/project.json @@ -1,23 +1,23 @@ { - "dependencies": { - "EntityFramework.SqlServer": "7.0.0-*", - "EntityFramework.Microbenchmarks.Core": "1.0.0-*", - "Microsoft.Framework.Configuration.Json": "1.0.0-*" - }, - "commands": { - "test": "xunit.runner.dnx" - }, - "frameworks": { - "net46": { }, - "dnxcore50": { - "dependencies": { - "xunit.runner.dnx": "2.1.0-*" - } + "dependencies": { + "EntityFramework.SqlServer": "7.0.0-beta6", + "EntityFramework.Microbenchmarks.Core": "1.0.0-*", + "Microsoft.Framework.Configuration.Json": "1.0.0-beta6" }, - "dnx451": { - "dependencies": { - "xunit.runner.dnx": "2.1.0-*" - } + "commands": { + "test": "xunit.runner.dnx" + }, + "frameworks": { + "net46": {}, + "dnxcore50": { + "dependencies": { + "xunit.runner.dnx": "2.1.0-*" + } + }, + "dnx451": { + "dependencies": { + "xunit.runner.dnx": "2.1.0-*" + } + } } - } -} +} \ No newline at end of file diff --git a/test/EntityFramework.Microbenchmarks/project.lock.json b/test/EntityFramework.Microbenchmarks/project.lock.json new file mode 100644 index 00000000000..a502cc646f4 --- /dev/null +++ b/test/EntityFramework.Microbenchmarks/project.lock.json @@ -0,0 +1,5065 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.6": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.SqlServer.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Json/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Json.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Json.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/net45/xunit.execution.desktop.dll": {} + }, + "runtime": { + "lib/net45/xunit.execution.desktop.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Collections.Immutable": "1.1.37-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.ComponentModel.Annotations": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Queryable": "4.0.0-beta-23109", + "System.ObjectModel": "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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6", + "Microsoft.CSharp": "4.0.0-beta-23109", + "System.Data.Common": "4.0.0-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Relational.dll": {} + } + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6", + "System.Data.SqlClient": "4.0.0-beta-23109", + "System.Text.Encoding.CodePages": "4.0.0-beta-23109", + "System.Threading.Thread": "4.0.0-beta-23109" + }, + "compile": { + "lib/dnxcore50/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/dnxcore50/EntityFramework.SqlServer.dll": {} + } + }, + "Ix-Async/1.2.4": { + "compile": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + } + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Dynamic.Runtime": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.10-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.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Linq": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Json/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6", + "Newtonsoft.Json": "6.0.6", + "System.Dynamic.Runtime": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Json.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Json.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.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.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Dynamic.Runtime": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Resources.ReaderWriter": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Threading.Timer": "4.0.0-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019", + "System.Xml.XmlSerializer": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.AppContext": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Loader": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Process": "4.0.0-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.Sockets": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + } + }, + "System.AppContext/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tracing": "4.0.20-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Data.Common/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Data.Common.dll": {} + }, + "runtime": { + "lib/dotnet/System.Data.Common.dll": {} + } + }, + "System.Data.SqlClient/4.0.0-beta-23109": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23109", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.0-beta-23109", + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.Data.Common": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "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.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.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Security.Principal.Windows": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.CodePages": "4.0.0-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109", + "System.Threading.Thread": "4.0.0-beta-23109", + "System.Threading.ThreadPool": "4.0.0-beta-23109", + "System.Threading.Timer": "4.0.0-beta-23109", + "System.Xml.ReaderWriter": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Data.SqlClient.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Data.SqlClient.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.ObjectModel": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Overlapped": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit": "4.0.0-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "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.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23109": { + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ReaderWriter.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ReaderWriter.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23109": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Security.Principal": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Claims": "4.0.0-beta-23109", + "System.Security.Principal": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.CodePages/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.Encoding.CodePages.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Xml.ReaderWriter": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XmlDocument": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnxcore50/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.0-beta-23019", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnxcore50/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Net.Http": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnxcore50/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnxcore50/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.utility.dnx.dll": {} + } + } + }, + "DNX,Version=v4.5.1": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.ComponentModel.DataAnnotations", + "System.Core", + "System.Diagnostics.Debug", + "System.Diagnostics.Tools", + "System.Globalization", + "System.Linq", + "System.Linq.Expressions", + "System.Linq.Queryable", + "System.ObjectModel", + "System.Reflection", + "System.Reflection.Extensions", + "System.Resources.ResourceManager", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading" + ], + "compile": { + "lib/dnx451/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dnx451/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.SqlServer.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "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.CommandLineUtils.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Json/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6", + "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-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnx451/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.ObjectModel", + "System.Reflection", + "System.Runtime", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "EntityFramework.Relational/7.0.0-beta6": { + "serviceable": true, + "sha512": "2CVE3UZjzXDRFYyfVL0lePnK1t2ZyLexNE88SiuUhY4mPC5SOWmDZ7mhLvtXeVJL/7PBpEmDy0qSDZRBpJ/Kiw==", + "files": [ + "EntityFramework.Relational.7.0.0-beta6.nupkg", + "EntityFramework.Relational.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Relational.nuspec", + "lib/dotnet/EntityFramework.Relational.dll", + "lib/dotnet/EntityFramework.Relational.xml", + "lib/net45/EntityFramework.Relational.dll", + "lib/net45/EntityFramework.Relational.xml", + "repo.json" + ] + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "serviceable": true, + "sha512": "69BvxKYVxgO/LK5YTKo9iuK4rt2/ystXVWdHfl3JaZ8DASB+UTacNNDDYeHuo2ZqQCv523AZSReuBGZ5reGBOg==", + "files": [ + "EntityFramework.SqlServer.7.0.0-beta6.nupkg", + "EntityFramework.SqlServer.7.0.0-beta6.nupkg.sha512", + "EntityFramework.SqlServer.nuspec", + "lib/dnxcore50/EntityFramework.SqlServer.dll", + "lib/dnxcore50/EntityFramework.SqlServer.xml", + "lib/net45/EntityFramework.SqlServer.dll", + "lib/net45/EntityFramework.SqlServer.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "MO4Lu8aMS1vL4Omp/gIMl2hr4sdV1l99p6xhAExGnS3MlFEa5JYPDL5mpdeg/osDH+1gAhb11xMJTYP7Ya3cAA==", + "files": [ + "lib/dotnet/Microsoft.CSharp.dll", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg.sha512", + "Microsoft.CSharp.nuspec", + "ref/dotnet/de/Microsoft.CSharp.xml", + "ref/dotnet/es/Microsoft.CSharp.xml", + "ref/dotnet/fr/Microsoft.CSharp.xml", + "ref/dotnet/it/Microsoft.CSharp.xml", + "ref/dotnet/ja/Microsoft.CSharp.xml", + "ref/dotnet/ko/Microsoft.CSharp.xml", + "ref/dotnet/Microsoft.CSharp.dll", + "ref/dotnet/Microsoft.CSharp.xml", + "ref/dotnet/ru/Microsoft.CSharp.xml", + "ref/dotnet/zh-hans/Microsoft.CSharp.xml", + "ref/dotnet/zh-hant/Microsoft.CSharp.xml", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta5": { + "sha512": "sZIlSWm9r2CFDI5JB21lKwa8Hq7DZPBYx3LcBnuxZnhSh2AwrhrS88YUZSMP6QCV+PHMwj0udTdnS1eZ2DbM7w==", + "files": [ + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.xml", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.xml", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.CommandLineUtils.Sources.nuspec", + "shared/AnsiConsole.cs", + "shared/CommandArgument.cs", + "shared/CommandLineApplication.cs", + "shared/CommandOption.cs", + "shared/CommandOptionType.cs" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6": { + "serviceable": true, + "sha512": "wUYZglLlkxL6xpbOHv6TqeJeT3GwpOxNRw3gkWOpM7OVrhAORm1pWnQ4qA+kWs5RDXSEntv47dK95MIypfIWKQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "lib/net45/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/net45/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.EnvironmentVariables.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Json/1.0.0-beta6": { + "serviceable": true, + "sha512": "C4kdW1eP2e5d8pAK5iJ9EWHCpnDpBDO/lu22VjFfTekRTes2zCkpJRt3OYUyqmlg8emVHsGM/i8k6Y/oP6eeZg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Json.dll", + "lib/dnx451/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-beta6.nupkg", + "Microsoft.Framework.Configuration.Json.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Json.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "GsSRwzgrK2WJHUyd83AtKEX+Hv8ecmnwerJzinTXNqddsI48ClaeAyBgUnvRh5e/R8zzfIFqSHD1iEXSOSjAgQ==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23109.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23109.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/de/Microsoft.Win32.Primitives.xml", + "ref/dotnet/es/Microsoft.Win32.Primitives.xml", + "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", + "ref/dotnet/it/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.AppContext/4.0.0-beta-23019": { + "sha512": "dtYrJWnRhdNNbuTQf8ZhL9FhR+zef7ExSEHwqCF7e3YTPcL3XhUF7SD4Ij2rF3DJNMWT/r/8dgAs/9mNmOD66w==", + "files": [ + "lib/DNXCore50/System.AppContext.dll", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "ref/dotnet/System.AppContext.dll", + "ref/net46/System.AppContext.dll", + "System.AppContext.4.0.0-beta-23019.nupkg", + "System.AppContext.4.0.0-beta-23019.nupkg.sha512", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "2/VX+2QEyyIpvGDzuIXX8V0vSl/Llt673DR48nNmeA6BoMuwL4Eu4F1Meh9fPp80nhcjifqVK8g7/UQDn/0PFw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23109.nupkg", + "System.Collections.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "fRXR5y4dg9zPovFpSQZkc6gnyMNlQJVQ8lKqPDPFSIelhqWxv2VyY87s5Vd9ViGwKrFwekDwCQFug9ny8qCHuA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Collections.Concurrent.xml", + "ref/dotnet/es/System.Collections.Concurrent.xml", + "ref/dotnet/fr/System.Collections.Concurrent.xml", + "ref/dotnet/it/System.Collections.Concurrent.xml", + "ref/dotnet/ja/System.Collections.Concurrent.xml", + "ref/dotnet/ko/System.Collections.Concurrent.xml", + "ref/dotnet/ru/System.Collections.Concurrent.xml", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/dotnet/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Z+VGG3YaL4PxuBn/Nbjul1OoaCBzvkylexTwIW6s8arj3c17XkCeJvZ1BIn66lzDpAQYMGZmv97UMT6OboRoVg==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/de/System.Collections.NonGeneric.xml", + "ref/dotnet/es/System.Collections.NonGeneric.xml", + "ref/dotnet/fr/System.Collections.NonGeneric.xml", + "ref/dotnet/it/System.Collections.NonGeneric.xml", + "ref/dotnet/ja/System.Collections.NonGeneric.xml", + "ref/dotnet/ko/System.Collections.NonGeneric.xml", + "ref/dotnet/ru/System.Collections.NonGeneric.xml", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", + "ref/net46/System.Collections.NonGeneric.dll", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "JFzHUvX28tQbud0c9AP+SFeOroBG9x7tgc0OYu0Z5nQotnIiwP5nHXq9DoK3N2y0MoRUt8jy2FwkRMAYgiQuNQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.ComponentModel.xml", + "ref/dotnet/es/System.ComponentModel.xml", + "ref/dotnet/fr/System.ComponentModel.xml", + "ref/dotnet/it/System.ComponentModel.xml", + "ref/dotnet/ja/System.ComponentModel.xml", + "ref/dotnet/ko/System.ComponentModel.xml", + "ref/dotnet/ru/System.ComponentModel.xml", + "ref/dotnet/System.ComponentModel.dll", + "ref/dotnet/System.ComponentModel.xml", + "ref/dotnet/zh-hans/System.ComponentModel.xml", + "ref/dotnet/zh-hant/System.ComponentModel.xml", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.0-beta-23109.nupkg", + "System.ComponentModel.4.0.0-beta-23109.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "tfq+u00KcRXrvtYS4v7Bi4NgfFXt0sx5IgqqgeWCOFtwhDTVWgL3XJN/lanFtANnG7+zVU3+B5mvjH1pblGHxg==", + "files": [ + "lib/dotnet/System.ComponentModel.Annotations.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ComponentModel.Annotations.xml", + "ref/dotnet/es/System.ComponentModel.Annotations.xml", + "ref/dotnet/fr/System.ComponentModel.Annotations.xml", + "ref/dotnet/it/System.ComponentModel.Annotations.xml", + "ref/dotnet/ja/System.ComponentModel.Annotations.xml", + "ref/dotnet/ko/System.ComponentModel.Annotations.xml", + "ref/dotnet/ru/System.ComponentModel.Annotations.xml", + "ref/dotnet/System.ComponentModel.Annotations.dll", + "ref/dotnet/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", + "ref/net46/_._", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg.sha512", + "System.ComponentModel.Annotations.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Data.Common/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "oWJT16F9TqEP1dQDNZUSuJ1gH17YyR8wTD+zfz03oflnAUWlyH2QM/px/X10GPZAn9Qz58EYR/maNzJIX9FSOA==", + "files": [ + "lib/dotnet/System.Data.Common.dll", + "lib/net46/System.Data.Common.dll", + "ref/dotnet/de/System.Data.Common.xml", + "ref/dotnet/es/System.Data.Common.xml", + "ref/dotnet/fr/System.Data.Common.xml", + "ref/dotnet/it/System.Data.Common.xml", + "ref/dotnet/ja/System.Data.Common.xml", + "ref/dotnet/ko/System.Data.Common.xml", + "ref/dotnet/ru/System.Data.Common.xml", + "ref/dotnet/System.Data.Common.dll", + "ref/dotnet/System.Data.Common.xml", + "ref/dotnet/zh-hans/System.Data.Common.xml", + "ref/dotnet/zh-hant/System.Data.Common.xml", + "ref/net46/System.Data.Common.dll", + "System.Data.Common.4.0.0-beta-23109.nupkg", + "System.Data.Common.4.0.0-beta-23109.nupkg.sha512", + "System.Data.Common.nuspec" + ] + }, + "System.Data.SqlClient/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "c56D/dcp+BS22hpnZs8zfUBA0PAs9ftJp7IYLY8b1or798Rl+oT5swf/R8bs2rbeG0cE4Dq7ixr0dm5YdANVxQ==", + "files": [ + "lib/DNXCore50/System.Data.SqlClient.dll", + "lib/net46/System.Data.SqlClient.dll", + "ref/dotnet/de/System.Data.SqlClient.xml", + "ref/dotnet/es/System.Data.SqlClient.xml", + "ref/dotnet/fr/System.Data.SqlClient.xml", + "ref/dotnet/it/System.Data.SqlClient.xml", + "ref/dotnet/ja/System.Data.SqlClient.xml", + "ref/dotnet/ko/System.Data.SqlClient.xml", + "ref/dotnet/ru/System.Data.SqlClient.xml", + "ref/dotnet/System.Data.SqlClient.dll", + "ref/dotnet/System.Data.SqlClient.xml", + "ref/dotnet/zh-hans/System.Data.SqlClient.xml", + "ref/dotnet/zh-hant/System.Data.SqlClient.xml", + "ref/net46/System.Data.SqlClient.dll", + "runtime.json", + "System.Data.SqlClient.4.0.0-beta-23109.nupkg", + "System.Data.SqlClient.4.0.0-beta-23109.nupkg.sha512", + "System.Data.SqlClient.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "woJsNwCtAqYac5zp+6Wy40HAp7kYr8zhaFvHl3gECjQf+VGeGYaHgDV1ATVcyMG1h6XvmX0wtmD5Qds51CRJoA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "sha512": "1vuXv89pElI0JeDhnXokMyy9VkLpkDFa+oU3selb5uhHfzVswH1etFBumZ0VKKvTOAnm8AS/3ZDXAVlRjywq3A==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Process.dll", + "lib/net46/System.Diagnostics.Process.dll", + "ref/dotnet/System.Diagnostics.Process.dll", + "ref/net46/System.Diagnostics.Process.dll", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Process.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6tFdP3p3SV6DZOagwW5ThfUF+zp5pUIyW4CY2K4B2RxV6HGVyY/8J2EuZGrcEP3wdO5fXnb9MmdOZa5Tn01Hmg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Diagnostics.Tools.xml", + "ref/dotnet/es/System.Diagnostics.Tools.xml", + "ref/dotnet/fr/System.Diagnostics.Tools.xml", + "ref/dotnet/it/System.Diagnostics.Tools.xml", + "ref/dotnet/ja/System.Diagnostics.Tools.xml", + "ref/dotnet/ko/System.Diagnostics.Tools.xml", + "ref/dotnet/ru/System.Diagnostics.Tools.xml", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/dotnet/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "sha512": "MZxMo9Skg9oZrJYwGpRfeOfrTfHxmTPWhj8XIXdIryfArzwG1FjZgzOrkWWcON0PdV9OywZYGly09nUCs/JdhA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.TraceSource.dll", + "lib/net46/System.Diagnostics.TraceSource.dll", + "ref/dotnet/System.Diagnostics.TraceSource.dll", + "ref/net46/System.Diagnostics.TraceSource.dll", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.TraceSource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "sNauLSBFewFLjULHeplEr7FCmmfPbcc1jfz1Mynjy445bYiP/IW1q9X14a//oV/uQG7p82S9qHyfPxoxmt3pxQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/de/System.Diagnostics.Tracing.xml", + "ref/dotnet/es/System.Diagnostics.Tracing.xml", + "ref/dotnet/fr/System.Diagnostics.Tracing.xml", + "ref/dotnet/it/System.Diagnostics.Tracing.xml", + "ref/dotnet/ja/System.Diagnostics.Tracing.xml", + "ref/dotnet/ko/System.Diagnostics.Tracing.xml", + "ref/dotnet/ru/System.Diagnostics.Tracing.xml", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "u+HhRVqhMblXkyKZP1A8Y13AxzZhVC7wSNxgSvQ/2XeAA/OfDLYdUxuAT+KL13CNszaedzZxTOVZmZWpLmzFow==", + "files": [ + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "ref/dotnet/de/System.Dynamic.Runtime.xml", + "ref/dotnet/es/System.Dynamic.Runtime.xml", + "ref/dotnet/fr/System.Dynamic.Runtime.xml", + "ref/dotnet/it/System.Dynamic.Runtime.xml", + "ref/dotnet/ja/System.Dynamic.Runtime.xml", + "ref/dotnet/ko/System.Dynamic.Runtime.xml", + "ref/dotnet/ru/System.Dynamic.Runtime.xml", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.xml", + "ref/dotnet/zh-hans/System.Dynamic.Runtime.xml", + "ref/dotnet/zh-hant/System.Dynamic.Runtime.xml", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", + "System.Dynamic.Runtime.4.0.10-beta-23109.nupkg", + "System.Dynamic.Runtime.4.0.10-beta-23109.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23109": { + "sha512": "l4QNrgLmC4KHGLcfriJ2EmsM2j18xefJzCnLU6YqVdBFaYzsJGwqmHyIr4nqw9DBjdWEtzdHLEbvpLeEay0ZWQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23109.nupkg", + "System.Globalization.4.0.10-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.IO/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "DVHSyfJO8mC9CpZFjjuaOWazALkWFnI6b/fqTQCjNe1dp2XasuvTRiV/qIOJB+uyDVex8sH8QMRUDS6ukimyLA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/de/System.IO.xml", + "ref/dotnet/es/System.IO.xml", + "ref/dotnet/fr/System.IO.xml", + "ref/dotnet/it/System.IO.xml", + "ref/dotnet/ja/System.IO.xml", + "ref/dotnet/ko/System.IO.xml", + "ref/dotnet/ru/System.IO.xml", + "ref/dotnet/System.IO.dll", + "ref/dotnet/System.IO.xml", + "ref/dotnet/zh-hans/System.IO.xml", + "ref/dotnet/zh-hant/System.IO.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23109.nupkg", + "System.IO.4.0.10-beta-23109.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._", + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "OusDe4B1/Q3BYY4QzNfztnyPPK9a1OGsQVZBg41C1bk8F2S3AOtXCx0GUwAfKbVxxS4dOdIgxWw1JN5m+IlpAA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/de/System.IO.FileSystem.xml", + "ref/dotnet/es/System.IO.FileSystem.xml", + "ref/dotnet/fr/System.IO.FileSystem.xml", + "ref/dotnet/it/System.IO.FileSystem.xml", + "ref/dotnet/ja/System.IO.FileSystem.xml", + "ref/dotnet/ko/System.IO.FileSystem.xml", + "ref/dotnet/ru/System.IO.FileSystem.xml", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.xml", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "1JFc6+hsLnlYgACgluhMi19zFkNruPgWoLDq30z7qMKgs3FZqShvXDZLTQ1Hk+cnenUoUU/8P8yRdmbdQaf4yg==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "sha512": "+xsD0H46/EB88848d9cHel2WVbUWlM/Y/k+tuY5lp2jXSwV8zMJ6F3TjMqeUZwWtUUavw+AN7D0a4ZoGVs/Rcw==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "cy+sQJW809QnFHIXt5Y/If45u362gwiNqHldnJS70l7VCjyR4Bo3UgZMZl+bowSupWxqXk69cwCQhRUyFu2hVw==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/de/System.Linq.Expressions.xml", + "ref/dotnet/es/System.Linq.Expressions.xml", + "ref/dotnet/fr/System.Linq.Expressions.xml", + "ref/dotnet/it/System.Linq.Expressions.xml", + "ref/dotnet/ja/System.Linq.Expressions.xml", + "ref/dotnet/ko/System.Linq.Expressions.xml", + "ref/dotnet/ru/System.Linq.Expressions.xml", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.xml", + "ref/dotnet/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet/zh-hant/System.Linq.Expressions.xml", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Mu6nIhw5k/zAMigeCh4aqma3kwXLoyPREVD6RxVPhGu2QJjAEeih0GWumoDjtdFp0B5Q6sYeakWDAds7NmzWQg==", + "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.0-beta-23019": { + "sha512": "8mt4X1eIjTMrKVINJuzuFYf7C4GrYFC+tlvc2zH5HtxKPpbFZamMUdJ19ORxZ9ds053aqQASdiha7eH86PN+eg==", + "files": [ + "lib/DNXCore50/System.Net.Http.dll", + "lib/net45/_._", + "lib/netcore50/System.Net.Http.dll", + "lib/win8/_._", + "ref/dotnet/System.Net.Http.dll", + "ref/net45/_._", + "ref/netcore50/System.Net.Http.dll", + "ref/win8/_._", + "System.Net.Http.4.0.0-beta-23019.nupkg", + "System.Net.Http.4.0.0-beta-23019.nupkg.sha512", + "System.Net.Http.nuspec" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._", + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "sha512": "4NWuSdsFSf21iJkd+NQaE2OwtNaKGdXIbBbQmfE43evHl6fUII38wwNnooWtF0avCEyU6BOdUTiwoZAUZyQwcA==", + "files": [ + "lib/DNXCore50/System.Net.Sockets.dll", + "ref/dotnet/System.Net.Sockets.dll", + "System.Net.Sockets.4.0.10-beta-23019.nupkg", + "System.Net.Sockets.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Sockets.nuspec" + ] + }, + "System.ObjectModel/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "mnrhXE8nT5mX/ndEJ5BsdLCgN6CofKiwQvr9Olsp/s3crY5/lXYM73N2bNSvsFcHD1o0XhaCOn18Vekv6SYTpg==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ObjectModel.xml", + "ref/dotnet/es/System.ObjectModel.xml", + "ref/dotnet/fr/System.ObjectModel.xml", + "ref/dotnet/it/System.ObjectModel.xml", + "ref/dotnet/ja/System.ObjectModel.xml", + "ref/dotnet/ko/System.ObjectModel.xml", + "ref/dotnet/ru/System.ObjectModel.xml", + "ref/dotnet/System.ObjectModel.dll", + "ref/dotnet/System.ObjectModel.xml", + "ref/dotnet/zh-hans/System.ObjectModel.xml", + "ref/dotnet/zh-hant/System.ObjectModel.xml", + "ref/net46/_._", + "System.ObjectModel.4.0.10-beta-23109.nupkg", + "System.ObjectModel.4.0.10-beta-23109.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "y6M7TxwDXBD2in5cCf+KzucZyx7YE7SJMcU24atzYnpwP2xFASUYCeI6NRg5bYcw2Do5HKBz+XdE9WiZrwpnFg==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23109.nupkg", + "System.Private.Uri.4.0.0-beta-23109.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23109": { + "sha512": "aeXO8gjPb46LaP727cXDcCZ2mZoMxguq2UhE25wJoO1Je8Q8D2JFonNk85oVlgXCdEM6XgrtRnsnhvj8PmTBNg==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/de/System.Reflection.xml", + "ref/dotnet/es/System.Reflection.xml", + "ref/dotnet/fr/System.Reflection.xml", + "ref/dotnet/it/System.Reflection.xml", + "ref/dotnet/ja/System.Reflection.xml", + "ref/dotnet/ko/System.Reflection.xml", + "ref/dotnet/ru/System.Reflection.xml", + "ref/dotnet/System.Reflection.dll", + "ref/dotnet/System.Reflection.xml", + "ref/dotnet/zh-hans/System.Reflection.xml", + "ref/dotnet/zh-hant/System.Reflection.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23109.nupkg", + "System.Reflection.4.0.10-beta-23109.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "sha512": "H8QtiSXFHNiQIPZe3PdNJPIjuH9O/A8+/52bw2RIKgV8rMrshmi2LufTvYCb+V5YPBFYWg2Yt8nRISEY4+uV5Q==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/de/System.Reflection.Emit.xml", + "ref/dotnet/es/System.Reflection.Emit.xml", + "ref/dotnet/fr/System.Reflection.Emit.xml", + "ref/dotnet/it/System.Reflection.Emit.xml", + "ref/dotnet/ja/System.Reflection.Emit.xml", + "ref/dotnet/ko/System.Reflection.Emit.xml", + "ref/dotnet/ru/System.Reflection.Emit.xml", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.xml", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "sha512": "tJO27blFXyvYwDLbK7GvgFC94XjeY6MnRitBI4w8LHfEc/gVdRmCC8gzkE8KEmkecnIWIt9VTSJ3p4lGgafKKA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/wp80/_._", + "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/net45/_._", + "ref/wp80/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "sXo3+qJ7TukCF/rDFYKjEog4iVb75dXJztu/lkvhMHgYnviPSbi9zg78FQUFhB6BOvntwnknrgNJhhtl3x9a7A==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Extensions.xml", + "ref/dotnet/es/System.Reflection.Extensions.xml", + "ref/dotnet/fr/System.Reflection.Extensions.xml", + "ref/dotnet/it/System.Reflection.Extensions.xml", + "ref/dotnet/ja/System.Reflection.Extensions.xml", + "ref/dotnet/ko/System.Reflection.Extensions.xml", + "ref/dotnet/ru/System.Reflection.Extensions.xml", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/dotnet/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "R5oBDNgUtSV9KTPCxwHWiTyryX/9mngnPbLWwFOEF5xcNd3Qlu6/3LiauGsIzGtXV8vOpRl9tfyIFy8t4ix4Gw==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Primitives.xml", + "ref/dotnet/es/System.Reflection.Primitives.xml", + "ref/dotnet/fr/System.Reflection.Primitives.xml", + "ref/dotnet/it/System.Reflection.Primitives.xml", + "ref/dotnet/ja/System.Reflection.Primitives.xml", + "ref/dotnet/ko/System.Reflection.Primitives.xml", + "ref/dotnet/ru/System.Reflection.Primitives.xml", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "lTuPMxeoT/Jqb1QtsIuSomLiJpQP3Y4DqqxLPncrMvLrejwdF25QSbhXdx5twgvBDqwSVL8wYtqiOqKe02u7FA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/de/System.Reflection.TypeExtensions.xml", + "ref/dotnet/es/System.Reflection.TypeExtensions.xml", + "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", + "ref/dotnet/it/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "sha512": "9J0+T+ChJ9rlYTcrJiTOLfTJHuHuenol1eOJgiF8yJK1rDozU2Wnex5kXus5Z8/SerMSCUofUOx4c2WYX/tNow==", + "files": [ + "lib/DNXCore50/System.Resources.ReaderWriter.dll", + "lib/net46/System.Resources.ReaderWriter.dll", + "ref/dotnet/System.Resources.ReaderWriter.dll", + "ref/net46/System.Resources.ReaderWriter.dll", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ReaderWriter.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "6usAb6nZEPKugl3z5JR/RZrouH5/340n3tM0lhRfxVE/k3B3Sfh/sHSPiAOorrZgGm4cIDDhXTCGJQSWYphu3g==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/de/System.Runtime.xml", + "ref/dotnet/es/System.Runtime.xml", + "ref/dotnet/fr/System.Runtime.xml", + "ref/dotnet/it/System.Runtime.xml", + "ref/dotnet/ja/System.Runtime.xml", + "ref/dotnet/ko/System.Runtime.xml", + "ref/dotnet/ru/System.Runtime.xml", + "ref/dotnet/System.Runtime.dll", + "ref/dotnet/System.Runtime.xml", + "ref/dotnet/zh-hans/System.Runtime.xml", + "ref/dotnet/zh-hant/System.Runtime.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23109.nupkg", + "System.Runtime.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "JkRMtSY5YFGhP9eY7ZFIj40Ha5lGOwSxrk90k0ZAuIFn6qEPNe0NKu/C8laV7Cqy4Lv5IYzkVUGrfOqg3MOG9A==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/de/System.Runtime.Extensions.xml", + "ref/dotnet/es/System.Runtime.Extensions.xml", + "ref/dotnet/fr/System.Runtime.Extensions.xml", + "ref/dotnet/it/System.Runtime.Extensions.xml", + "ref/dotnet/ja/System.Runtime.Extensions.xml", + "ref/dotnet/ko/System.Runtime.Extensions.xml", + "ref/dotnet/ru/System.Runtime.Extensions.xml", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "XfjBv5hxBDVXvgPzBXiMpHprnmd5trdBAG4o7DEi/3GPXIlety4G0sfmlxeiTr7njKr0wF4ERdLIfzPesS5PAw==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "fxRLTR5kbqOZuSeT5ggVBYc6HIEGmEwh+Uw1ijp2qD3yMiMPmxvtI5aP5t0yZHEmwUrB37lGB+oaPpcXLH5Feg==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/de/System.Runtime.InteropServices.xml", + "ref/dotnet/es/System.Runtime.InteropServices.xml", + "ref/dotnet/fr/System.Runtime.InteropServices.xml", + "ref/dotnet/it/System.Runtime.InteropServices.xml", + "ref/dotnet/ja/System.Runtime.InteropServices.xml", + "ref/dotnet/ko/System.Runtime.InteropServices.xml", + "ref/dotnet/ru/System.Runtime.InteropServices.xml", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "sha512": "YuxWBHBbvN5ILjno2DBjgW2NXQscfJFvIfQEOGHwChM5Q9//EO0LZfErH7fTk1n0IVcorDu/HTnkqr2NuK/t5w==", + "files": [ + "lib/DNXCore50/System.Runtime.Loader.dll", + "ref/dotnet/System.Runtime.Loader.dll", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Loader.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Security.Claims/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6oI/9RzVy/6AVHRzuSm9oOOm3O/iS+pWDby0YTuepAtW7aT1VZiYbar0Nzi7wUJLIE+EuUWgGUgVQni0inIUSw==", + "files": [ + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/de/System.Security.Claims.xml", + "ref/dotnet/es/System.Security.Claims.xml", + "ref/dotnet/fr/System.Security.Claims.xml", + "ref/dotnet/it/System.Security.Claims.xml", + "ref/dotnet/ja/System.Security.Claims.xml", + "ref/dotnet/ko/System.Security.Claims.xml", + "ref/dotnet/ru/System.Security.Claims.xml", + "ref/dotnet/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.xml", + "ref/dotnet/zh-hans/System.Security.Claims.xml", + "ref/dotnet/zh-hant/System.Security.Claims.xml", + "ref/net46/System.Security.Claims.dll", + "System.Security.Claims.4.0.0-beta-23109.nupkg", + "System.Security.Claims.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "j94G8UrhEtW+RigEzZkayd9fcT9v/J35/V+rGzm6vmRjLE4e12+jwFUqFC9ZowElO4ZqaCoBgxu7uogHRmrKbQ==", + "files": [ + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Security.Principal.xml", + "ref/dotnet/es/System.Security.Principal.xml", + "ref/dotnet/fr/System.Security.Principal.xml", + "ref/dotnet/it/System.Security.Principal.xml", + "ref/dotnet/ja/System.Security.Principal.xml", + "ref/dotnet/ko/System.Security.Principal.xml", + "ref/dotnet/ru/System.Security.Principal.xml", + "ref/dotnet/System.Security.Principal.dll", + "ref/dotnet/System.Security.Principal.xml", + "ref/dotnet/zh-hans/System.Security.Principal.xml", + "ref/dotnet/zh-hant/System.Security.Principal.xml", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Security.Principal.4.0.0-beta-23109.nupkg", + "System.Security.Principal.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "/u7MPH/6bERVU88hsQJFoxva/OnPcS5fUrzj8OWH016zKnUElOVq76GoUdghmN5HCAmRpjqmryvZLt8+b2mrjQ==", + "files": [ + "lib/DNXCore50/System.Security.Principal.Windows.dll", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/dotnet/de/System.Security.Principal.Windows.xml", + "ref/dotnet/es/System.Security.Principal.Windows.xml", + "ref/dotnet/fr/System.Security.Principal.Windows.xml", + "ref/dotnet/it/System.Security.Principal.Windows.xml", + "ref/dotnet/ja/System.Security.Principal.Windows.xml", + "ref/dotnet/ko/System.Security.Principal.Windows.xml", + "ref/dotnet/ru/System.Security.Principal.Windows.xml", + "ref/dotnet/System.Security.Principal.Windows.dll", + "ref/dotnet/System.Security.Principal.Windows.xml", + "ref/dotnet/zh-hans/System.Security.Principal.Windows.xml", + "ref/dotnet/zh-hant/System.Security.Principal.Windows.xml", + "ref/net46/System.Security.Principal.Windows.dll", + "System.Security.Principal.Windows.4.0.0-beta-23109.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Principal.Windows.nuspec" + ] + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll", + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "sha512": "oymPt96KPPXO/Scxow+x8cKczVw0KXfExKTXQlwT+j3sS1j/JuV+rZq2sQ54fqOi2R4d9aFPESsoN830sA6VCw==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/de/System.Text.Encoding.xml", + "ref/dotnet/es/System.Text.Encoding.xml", + "ref/dotnet/fr/System.Text.Encoding.xml", + "ref/dotnet/it/System.Text.Encoding.xml", + "ref/dotnet/ja/System.Text.Encoding.xml", + "ref/dotnet/ko/System.Text.Encoding.xml", + "ref/dotnet/ru/System.Text.Encoding.xml", + "ref/dotnet/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "PoB/L0tth9mKUS1ky1LQVd+nniazNmnhbzmPZL+US+06QvQRhZlpZfUR+WN2ssWYpHFiL4Zt30lzf4qEiTBP4w==", + "files": [ + "lib/dotnet/System.Text.Encoding.CodePages.dll", + "ref/dotnet/de/System.Text.Encoding.CodePages.xml", + "ref/dotnet/es/System.Text.Encoding.CodePages.xml", + "ref/dotnet/fr/System.Text.Encoding.CodePages.xml", + "ref/dotnet/it/System.Text.Encoding.CodePages.xml", + "ref/dotnet/ja/System.Text.Encoding.CodePages.xml", + "ref/dotnet/ko/System.Text.Encoding.CodePages.xml", + "ref/dotnet/ru/System.Text.Encoding.CodePages.xml", + "ref/dotnet/System.Text.Encoding.CodePages.dll", + "ref/dotnet/System.Text.Encoding.CodePages.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.CodePages.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.CodePages.xml", + "System.Text.Encoding.CodePages.4.0.0-beta-23109.nupkg", + "System.Text.Encoding.CodePages.4.0.0-beta-23109.nupkg.sha512", + "System.Text.Encoding.CodePages.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "sha512": "F6GZqICZ654MsqVPCL8h+fvDZJmXnu1I1PYY9686yG+lbcZzs9aavqMUjv1Lu5wOdiTKnmn7LADZYzPD6y1p+w==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/de/System.Text.Encoding.Extensions.xml", + "ref/dotnet/es/System.Text.Encoding.Extensions.xml", + "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", + "ref/dotnet/it/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "F+tfzB34KhZnjS3ActdL57CQVD9oYGhAZm8AREL+KvbJTh1Y8/tlyCyI2xoH6KdJzIPcXC50yu4OkHNbpcutEw==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Text.RegularExpressions.xml", + "ref/dotnet/es/System.Text.RegularExpressions.xml", + "ref/dotnet/fr/System.Text.RegularExpressions.xml", + "ref/dotnet/it/System.Text.RegularExpressions.xml", + "ref/dotnet/ja/System.Text.RegularExpressions.xml", + "ref/dotnet/ko/System.Text.RegularExpressions.xml", + "ref/dotnet/ru/System.Text.RegularExpressions.xml", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/dotnet/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "TSViw+K20yh9DmwzZpvuCUc2m2ju1eVAJ10pTw2gB/aP4kkrX2nGf4A9BkwkxupPXFA2OtO9LbbEqdp4YbBnjQ==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/de/System.Threading.xml", + "ref/dotnet/es/System.Threading.xml", + "ref/dotnet/fr/System.Threading.xml", + "ref/dotnet/it/System.Threading.xml", + "ref/dotnet/ja/System.Threading.xml", + "ref/dotnet/ko/System.Threading.xml", + "ref/dotnet/ru/System.Threading.xml", + "ref/dotnet/System.Threading.dll", + "ref/dotnet/System.Threading.xml", + "ref/dotnet/zh-hans/System.Threading.xml", + "ref/dotnet/zh-hant/System.Threading.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23109.nupkg", + "System.Threading.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "IMVmv9x4lBiy+jz31dU7KT/aTDlKZabAEDFAxQOTv//v1RYu5XZXZLIiTZqyVUKxxHgB0PUnuSDl5VxUDKysfQ==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/de/System.Threading.Overlapped.xml", + "ref/dotnet/es/System.Threading.Overlapped.xml", + "ref/dotnet/fr/System.Threading.Overlapped.xml", + "ref/dotnet/it/System.Threading.Overlapped.xml", + "ref/dotnet/ja/System.Threading.Overlapped.xml", + "ref/dotnet/ko/System.Threading.Overlapped.xml", + "ref/dotnet/ru/System.Threading.Overlapped.xml", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "J7lBqLLy1A85KZUgFz0fS8u6BO+pnWun2OAkrNqcUQbgCiKDC9v92u9q6a6AB9znum+GCdzH3cyEftNtIVNd1Q==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/de/System.Threading.Tasks.xml", + "ref/dotnet/es/System.Threading.Tasks.xml", + "ref/dotnet/fr/System.Threading.Tasks.xml", + "ref/dotnet/it/System.Threading.Tasks.xml", + "ref/dotnet/ja/System.Threading.Tasks.xml", + "ref/dotnet/ko/System.Threading.Tasks.xml", + "ref/dotnet/ru/System.Threading.Tasks.xml", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.xml", + "ref/dotnet/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet/zh-hant/System.Threading.Tasks.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23109": { + "sha512": "pOob5Fz4cRJ/bfBs2+ehmS99VGCN5Ei2mf7bl17STagcDGHUZBAzVLz8Kamq0hwQGX2pCFkuUZH+2Ycdts2PSQ==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/de/System.Threading.Thread.xml", + "ref/dotnet/es/System.Threading.Thread.xml", + "ref/dotnet/fr/System.Threading.Thread.xml", + "ref/dotnet/it/System.Threading.Thread.xml", + "ref/dotnet/ja/System.Threading.Thread.xml", + "ref/dotnet/ko/System.Threading.Thread.xml", + "ref/dotnet/ru/System.Threading.Thread.xml", + "ref/dotnet/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.xml", + "ref/dotnet/zh-hans/System.Threading.Thread.xml", + "ref/dotnet/zh-hant/System.Threading.Thread.xml", + "ref/net46/System.Threading.Thread.dll", + "System.Threading.Thread.4.0.0-beta-23109.nupkg", + "System.Threading.Thread.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.0-beta-23109": { + "sha512": "m0IORsRdO5kQqdA3C1EGLvD3NPaAj+B0FaM0KnAj0Cxg53baGGmYpNwh6mPf4sB8Pl4VBUtVaxlLN18MuyNQKQ==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Threading.Timer.xml", + "ref/dotnet/es/System.Threading.Timer.xml", + "ref/dotnet/fr/System.Threading.Timer.xml", + "ref/dotnet/it/System.Threading.Timer.xml", + "ref/dotnet/ja/System.Threading.Timer.xml", + "ref/dotnet/ko/System.Threading.Timer.xml", + "ref/dotnet/ru/System.Threading.Timer.xml", + "ref/dotnet/System.Threading.Timer.dll", + "ref/dotnet/System.Threading.Timer.xml", + "ref/dotnet/zh-hans/System.Threading.Timer.xml", + "ref/dotnet/zh-hant/System.Threading.Timer.xml", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/win81/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.0-beta-23109.nupkg", + "System.Threading.Timer.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.0-beta-23019": { + "sha512": "YsRwtb9uO6N8ndtnHPVi0oXSd7MkIVWiRdIHGzyBQ2qwMrQedBRW7u6P1LWo9DDcloOhwqmS6/HinClygHhbNg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "License.rtf", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/win8/_._", + "System.Xml.XDocument.4.0.0-beta-23019.nupkg", + "System.Xml.XDocument.4.0.0-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "sha512": "b1SOLM9FhBCL4gW3OP5b/HV1JVb1hfsF4D4wBxyUIZMXcP3kbm4F+bYvOB0cSeJ1F8oVnCCGivSk1/aSEQ86XQ==", + "files": [ + "lib/dotnet/System.Xml.XmlDocument.dll", + "lib/net46/System.Xml.XmlDocument.dll", + "ref/dotnet/System.Xml.XmlDocument.dll", + "ref/net46/System.Xml.XmlDocument.dll", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg.sha512", + "System.Xml.XmlDocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "sha512": "BqXNr12cUj02qymL4Nhowcsfz840wLSMPfU0T8i0JGPPIx38txMwUA2pnrYWsYmDmyIgw7GGUhrjXz6WJpjgwg==", + "files": [ + "lib/DNXCore50/System.Xml.XmlSerializer.dll", + "lib/net46/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "ref/dotnet/System.Xml.XmlSerializer.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XmlSerializer.nuspec" + ] + }, + "xunit.abstractions/2.0.0": { + "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0.nupkg", + "xunit.abstractions.2.0.0.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.1.0-beta3-build3029": { + "sha512": "AMS7Fv77DayXVRCBMmVEDwOXPcbxk8dCBA/iACsve+6+UQqopMtNyAynyIcXPFRK/peeitUKID4ChOXWisJmUw==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.1.0-beta3-build3029.nupkg", + "xunit.assert.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "sha512": "lsPro5U3NLasHI/RwqjKzXiRlh9N0IOlR3cluwXYVtihXbGtySeSnU/Fh5MTcWYxh+MVpoNop5zDD0/A2nrHsA==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "sha512": "WuUYamK4RHrHxihvNuX7NkryMhQrpH1+ziJ/mPIQbm18zevSgre8BwUuVZvmLZa8uVob3xS4dvAah2+HCgLiXg==", + "files": [ + "lib/dnx451/xunit.execution.dnx.dll", + "lib/dnx451/xunit.execution.dnx.pdb", + "lib/dnx451/xunit.execution.dnx.xml", + "lib/dnxcore50/xunit.execution.dnx.dll", + "lib/dnxcore50/xunit.execution.dnx.pdb", + "lib/dnxcore50/xunit.execution.dnx.xml", + "lib/monoandroid/xunit.execution.MonoAndroid.dll", + "lib/monoandroid/xunit.execution.MonoAndroid.pdb", + "lib/monoandroid/xunit.execution.MonoAndroid.xml", + "lib/monotouch/xunit.execution.MonoTouch.dll", + "lib/monotouch/xunit.execution.MonoTouch.pdb", + "lib/monotouch/xunit.execution.MonoTouch.xml", + "lib/net45/xunit.execution.desktop.dll", + "lib/net45/xunit.execution.desktop.pdb", + "lib/net45/xunit.execution.desktop.xml", + "lib/portable-wpa81+win81/xunit.execution.universal.dll", + "lib/portable-wpa81+win81/xunit.execution.universal.pdb", + "lib/portable-wpa81+win81/xunit.execution.universal.pri", + "lib/portable-wpa81+win81/xunit.execution.universal.xml", + "lib/wp8/xunit.execution.wp8.dll", + "lib/wp8/xunit.execution.wp8.pdb", + "lib/wp8/xunit.execution.wp8.xml", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.xml", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "sha512": "R6cvKy3mb8QjMxiTHqljsgwf424jYLbU07Ao0NcNHcRMT2OR+a2ldE6WdECiDMseYz/vuIaFQ6ebYRKEfMI/1A==", + "files": [ + "app/project.json", + "app/xunit", + "app/xunit.cmd", + "lib/dnx451/xunit.runner.dnx.dll", + "lib/dnx451/xunit.runner.dnx.xml", + "lib/dnxcore50/xunit.runner.dnx.dll", + "lib/dnxcore50/xunit.runner.dnx.xml", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg.sha512", + "xunit.runner.dnx.nuspec" + ] + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "sha512": "o+hiJTewV+4cA2GoHgbNC/FATjKxo2Z6PPeIdIfc7qysvYtu33POYUdo5XAqlRD9BQ7ojc8t/NOyZg/Qd9kjAg==", + "files": [ + "lib/dnx451/xunit.runner.reporters.dnx.dll", + "lib/dnxcore50/xunit.runner.reporters.dnx.dll", + "lib/net45/xunit.runner.reporters.desktop.dll", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.reporters.nuspec" + ] + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "sha512": "cm5lVNYtypOLgu6Vnd30UWPVNrcILzWmSul7tFrW/xT+ZjPYSES7kvYc80rKAUWXQl/awglhc5IMtAbHJi4abg==", + "files": [ + "lib/dnx451/xunit.runner.utility.dnx.dll", + "lib/dnx451/xunit.runner.utility.dnx.pdb", + "lib/dnx451/xunit.runner.utility.dnx.xml", + "lib/dnxcore50/xunit.runner.utility.dnx.dll", + "lib/dnxcore50/xunit.runner.utility.dnx.pdb", + "lib/dnxcore50/xunit.runner.utility.dnx.xml", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.dll", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.pdb", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.xml", + "lib/monotouch/xunit.runner.utility.MonoTouch.dll", + "lib/monotouch/xunit.runner.utility.MonoTouch.pdb", + "lib/monotouch/xunit.runner.utility.MonoTouch.xml", + "lib/net35/xunit.runner.utility.desktop.dll", + "lib/net35/xunit.runner.utility.desktop.pdb", + "lib/net35/xunit.runner.utility.desktop.xml", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.dll", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pdb", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pri", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.xml", + "lib/wp8/xunit.runner.utility.wp8.dll", + "lib/wp8/xunit.runner.utility.wp8.pdb", + "lib/wp8/xunit.runner.utility.wp8.xml", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.xml", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "EntityFramework.SqlServer >= 7.0.0-beta6", + "EntityFramework.Microbenchmarks.Core >= 1.0.0-*", + "Microsoft.Framework.Configuration.Json >= 1.0.0-beta6" + ], + ".NETFramework,Version=v4.6": [], + "DNXCore,Version=v5.0": [ + "xunit.runner.dnx >= 2.1.0-*" + ], + "DNX,Version=v4.5.1": [ + "xunit.runner.dnx >= 2.1.0-*" + ] + } +} \ No newline at end of file diff --git a/test/EntityFramework.Relational.Design.Tests/project.json b/test/EntityFramework.Relational.Design.Tests/project.json index d4aa651568f..fb396fc8e7b 100644 --- a/test/EntityFramework.Relational.Design.Tests/project.json +++ b/test/EntityFramework.Relational.Design.Tests/project.json @@ -1,13 +1,13 @@ { - "dependencies": { - "EntityFramework.Core.Tests": "1.0.0", - "EntityFramework.Relational.Design": "7.0.0-*" - }, - "commands": { - "test": "xunit.runner.dnx" - }, - "frameworks": { - "net46": { }, - "dnx451": { } - } -} + "dependencies": { + "EntityFramework.Core.Tests": "1.0.0", + "EntityFramework.Relational.Design": "7.0.0-beta6" + }, + "commands": { + "test": "xunit.runner.dnx" + }, + "frameworks": { + "net46": {}, + "dnx451": {} + } +} \ No newline at end of file diff --git a/test/EntityFramework.Relational.Design.Tests/project.lock.json b/test/EntityFramework.Relational.Design.Tests/project.lock.json new file mode 100644 index 00000000000..63a6acc1677 --- /dev/null +++ b/test/EntityFramework.Relational.Design.Tests/project.lock.json @@ -0,0 +1,2052 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.6": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.AspNet.Razor.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.AspNet.Razor.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Moq/4.2.1312.1622": { + "compile": { + "lib/net40/Moq.dll": {} + }, + "runtime": { + "lib/net40/Moq.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/net45/xunit.execution.desktop.dll": {} + }, + "runtime": { + "lib/net45/xunit.execution.desktop.dll": {} + } + } + }, + "DNX,Version=v4.5.1": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.ComponentModel.DataAnnotations", + "System.Core", + "System.Diagnostics.Debug", + "System.Diagnostics.Tools", + "System.Globalization", + "System.Linq", + "System.Linq.Expressions", + "System.Linq.Queryable", + "System.ObjectModel", + "System.Reflection", + "System.Reflection.Extensions", + "System.Resources.ResourceManager", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading" + ], + "compile": { + "lib/dnx451/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dnx451/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Razor.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Razor.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "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.CommandLineUtils.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Roslyn.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.Text.Encoding", + "System.Threading.Tasks" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.0.0", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Moq/4.2.1312.1622": { + "compile": { + "lib/net40/Moq.dll": {} + }, + "runtime": { + "lib/net40/Moq.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnx451/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.ObjectModel", + "System.Reflection", + "System.Runtime", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "serviceable": true, + "sha512": "u4CXBQEmftJJD7U500i79xS2MwPyptOZLFqBAAwHVp7RuuAB0k2u9iFvdA2kgQZNhzkyooUTcS/+n4EPJalpaw==", + "files": [ + "EntityFramework.InMemory.7.0.0-beta6.nupkg", + "EntityFramework.InMemory.7.0.0-beta6.nupkg.sha512", + "EntityFramework.InMemory.nuspec", + "lib/dotnet/EntityFramework.InMemory.dll", + "lib/dotnet/EntityFramework.InMemory.xml", + "lib/net45/EntityFramework.InMemory.dll", + "lib/net45/EntityFramework.InMemory.xml", + "repo.json" + ] + }, + "EntityFramework.Relational/7.0.0-beta6": { + "serviceable": true, + "sha512": "2CVE3UZjzXDRFYyfVL0lePnK1t2ZyLexNE88SiuUhY4mPC5SOWmDZ7mhLvtXeVJL/7PBpEmDy0qSDZRBpJ/Kiw==", + "files": [ + "EntityFramework.Relational.7.0.0-beta6.nupkg", + "EntityFramework.Relational.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Relational.nuspec", + "lib/dotnet/EntityFramework.Relational.dll", + "lib/dotnet/EntityFramework.Relational.xml", + "lib/net45/EntityFramework.Relational.dll", + "lib/net45/EntityFramework.Relational.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "serviceable": true, + "sha512": "GkdomN9ySGxL9FqgD8pdxxljGWvIFOyRPKzbLe+XseKDfpP9YNzkX2+oD2TLcwCl/O7bJcX2F7k0Zlf96fMpfw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Razor.dll", + "lib/dnx451/Microsoft.AspNet.Razor.xml", + "lib/dnxcore50/Microsoft.AspNet.Razor.dll", + "lib/dnxcore50/Microsoft.AspNet.Razor.xml", + "lib/net45/Microsoft.AspNet.Razor.dll", + "lib/net45/Microsoft.AspNet.Razor.xml", + "Microsoft.AspNet.Razor.4.0.0-beta6.nupkg", + "Microsoft.AspNet.Razor.4.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Razor.nuspec", + "repo.json" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "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.0.0": { + "sha512": "MhxsY8N9veim57uXqcRCJb7X9xZoWhMDU4/EyIqNkS7qfRsLxrzELSpjp6NjFkISZElvwIV2Ehi3UxyJui/gPw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "sha512": "KZ70r7EF+Dn8qp2p1CiBJGVoIG6el7Q9cLhnXuq+3oLcnMvUk2XzimB36AgO/Qg/liqRzf992WmFWhwqZSaIEg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta5": { + "sha512": "sZIlSWm9r2CFDI5JB21lKwa8Hq7DZPBYx3LcBnuxZnhSh2AwrhrS88YUZSMP6QCV+PHMwj0udTdnS1eZ2DbM7w==", + "files": [ + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.xml", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.xml", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.CommandLineUtils.Sources.nuspec", + "shared/AnsiConsole.cs", + "shared/CommandArgument.cs", + "shared/CommandLineApplication.cs", + "shared/CommandOption.cs", + "shared/CommandOptionType.cs" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "w4Cwg6jgPd3XFGOgBGU3GVGVAwUcMglSDTlI23M8uI7yhDRSDbxZ2HPbjTEBMoj+IYdkfunZWFdA67tdk8L8Tg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta6": { + "sha512": "+y/7JAz5lC3cmxeNe88Bi80jw6gA2f092y7vk8J6GXOWcUV+I3QoBl0p2Hne5T2YDfZALtzuyVGqsXIaM1X93A==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Roslyn/1.0.0-beta6": { + "serviceable": true, + "sha512": "P15pRq5zhTX6VB3yKJATfHf9/QpLSJZRnof81fj0BlEx0sTZdYVojbd1FSLKaG8aKb0B82TZrwk49UqIsKvSMA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.xml", + "Microsoft.Framework.Runtime.Roslyn.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Roslyn.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Roslyn.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Roslyn.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "gEHCvzynTJl20HUNR0Ag2K5i07oQUk+XIakcagbS6dsz7SQO2YFPmCoxUAp4puqjfsb4XZ8koZHQfLsEDGJd2A==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.xml", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Moq/4.2.1312.1622": { + "sha512": "mPAjm1Kv9jX745D3hEYDBycRT0T8gnAJE2dutbfP9meyHiRrCgQarHajEvKh5SMKM1D3RcHGr/Pg3JJEtKhu9Q==", + "files": [ + "lib/net35/Moq.dll", + "lib/net35/Moq.xml", + "lib/net40/Moq.dll", + "lib/net40/Moq.xml", + "lib/sl4/Moq.Silverlight.dll", + "lib/sl4/Moq.Silverlight.xml", + "Moq.4.2.1312.1622.nupkg", + "Moq.4.2.1312.1622.nupkg.sha512", + "Moq.nuspec" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "xunit.abstractions/2.0.0": { + "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0.nupkg", + "xunit.abstractions.2.0.0.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.1.0-beta3-build3029": { + "sha512": "AMS7Fv77DayXVRCBMmVEDwOXPcbxk8dCBA/iACsve+6+UQqopMtNyAynyIcXPFRK/peeitUKID4ChOXWisJmUw==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.1.0-beta3-build3029.nupkg", + "xunit.assert.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "sha512": "lsPro5U3NLasHI/RwqjKzXiRlh9N0IOlR3cluwXYVtihXbGtySeSnU/Fh5MTcWYxh+MVpoNop5zDD0/A2nrHsA==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "sha512": "WuUYamK4RHrHxihvNuX7NkryMhQrpH1+ziJ/mPIQbm18zevSgre8BwUuVZvmLZa8uVob3xS4dvAah2+HCgLiXg==", + "files": [ + "lib/dnx451/xunit.execution.dnx.dll", + "lib/dnx451/xunit.execution.dnx.pdb", + "lib/dnx451/xunit.execution.dnx.xml", + "lib/dnxcore50/xunit.execution.dnx.dll", + "lib/dnxcore50/xunit.execution.dnx.pdb", + "lib/dnxcore50/xunit.execution.dnx.xml", + "lib/monoandroid/xunit.execution.MonoAndroid.dll", + "lib/monoandroid/xunit.execution.MonoAndroid.pdb", + "lib/monoandroid/xunit.execution.MonoAndroid.xml", + "lib/monotouch/xunit.execution.MonoTouch.dll", + "lib/monotouch/xunit.execution.MonoTouch.pdb", + "lib/monotouch/xunit.execution.MonoTouch.xml", + "lib/net45/xunit.execution.desktop.dll", + "lib/net45/xunit.execution.desktop.pdb", + "lib/net45/xunit.execution.desktop.xml", + "lib/portable-wpa81+win81/xunit.execution.universal.dll", + "lib/portable-wpa81+win81/xunit.execution.universal.pdb", + "lib/portable-wpa81+win81/xunit.execution.universal.pri", + "lib/portable-wpa81+win81/xunit.execution.universal.xml", + "lib/wp8/xunit.execution.wp8.dll", + "lib/wp8/xunit.execution.wp8.pdb", + "lib/wp8/xunit.execution.wp8.xml", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.xml", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "sha512": "R6cvKy3mb8QjMxiTHqljsgwf424jYLbU07Ao0NcNHcRMT2OR+a2ldE6WdECiDMseYz/vuIaFQ6ebYRKEfMI/1A==", + "files": [ + "app/project.json", + "app/xunit", + "app/xunit.cmd", + "lib/dnx451/xunit.runner.dnx.dll", + "lib/dnx451/xunit.runner.dnx.xml", + "lib/dnxcore50/xunit.runner.dnx.dll", + "lib/dnxcore50/xunit.runner.dnx.xml", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg.sha512", + "xunit.runner.dnx.nuspec" + ] + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "sha512": "o+hiJTewV+4cA2GoHgbNC/FATjKxo2Z6PPeIdIfc7qysvYtu33POYUdo5XAqlRD9BQ7ojc8t/NOyZg/Qd9kjAg==", + "files": [ + "lib/dnx451/xunit.runner.reporters.dnx.dll", + "lib/dnxcore50/xunit.runner.reporters.dnx.dll", + "lib/net45/xunit.runner.reporters.desktop.dll", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.reporters.nuspec" + ] + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "sha512": "cm5lVNYtypOLgu6Vnd30UWPVNrcILzWmSul7tFrW/xT+ZjPYSES7kvYc80rKAUWXQl/awglhc5IMtAbHJi4abg==", + "files": [ + "lib/dnx451/xunit.runner.utility.dnx.dll", + "lib/dnx451/xunit.runner.utility.dnx.pdb", + "lib/dnx451/xunit.runner.utility.dnx.xml", + "lib/dnxcore50/xunit.runner.utility.dnx.dll", + "lib/dnxcore50/xunit.runner.utility.dnx.pdb", + "lib/dnxcore50/xunit.runner.utility.dnx.xml", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.dll", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.pdb", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.xml", + "lib/monotouch/xunit.runner.utility.MonoTouch.dll", + "lib/monotouch/xunit.runner.utility.MonoTouch.pdb", + "lib/monotouch/xunit.runner.utility.MonoTouch.xml", + "lib/net35/xunit.runner.utility.desktop.dll", + "lib/net35/xunit.runner.utility.desktop.pdb", + "lib/net35/xunit.runner.utility.desktop.xml", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.dll", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pdb", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pri", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.xml", + "lib/wp8/xunit.runner.utility.wp8.dll", + "lib/wp8/xunit.runner.utility.wp8.pdb", + "lib/wp8/xunit.runner.utility.wp8.xml", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.xml", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "EntityFramework.Core.Tests >= 1.0.0", + "EntityFramework.Relational.Design >= 7.0.0-beta6" + ], + ".NETFramework,Version=v4.6": [], + "DNX,Version=v4.5.1": [] + } +} \ No newline at end of file diff --git a/test/EntityFramework.Relational.FunctionalTests/project.json b/test/EntityFramework.Relational.FunctionalTests/project.json index 63483efe59a..33202f4f57d 100644 --- a/test/EntityFramework.Relational.FunctionalTests/project.json +++ b/test/EntityFramework.Relational.FunctionalTests/project.json @@ -1,17 +1,17 @@ { - "version": "7.0.0-*", - "description": "Reusable EntityFramework.Relational functional tests for provider writers.", - "dependencies": { - "EntityFramework.Core.FunctionalTests": "7.0.0-*", - "EntityFramework.Relational": "7.0.0-*" - }, - "frameworks": { - "net46": { }, - "dnx451": { }, - "dnxcore50": { - "dependencies": { - "System.Threading": "4.0.10-beta-*" - } + "version": "7.0.0-beta6", + "description": "Reusable EntityFramework.Relational functional tests for provider writers.", + "dependencies": { + "EntityFramework.Core.FunctionalTests": "7.0.0-beta6", + "EntityFramework.Relational": "7.0.0-beta6" + }, + "frameworks": { + "net46": {}, + "dnx451": {}, + "dnxcore50": { + "dependencies": { + "System.Threading": "4.0.10-beta-23109" + } + } } - } -} +} \ No newline at end of file diff --git a/test/EntityFramework.Relational.FunctionalTests/project.lock.json b/test/EntityFramework.Relational.FunctionalTests/project.lock.json new file mode 100644 index 00000000000..99b94e5a39d --- /dev/null +++ b/test/EntityFramework.Relational.FunctionalTests/project.lock.json @@ -0,0 +1,4740 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.6": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/net45/xunit.execution.desktop.dll": {} + }, + "runtime": { + "lib/net45/xunit.execution.desktop.dll": {} + } + } + }, + "DNX,Version=v4.5.1": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.ComponentModel.DataAnnotations", + "System.Core", + "System.Diagnostics.Debug", + "System.Diagnostics.Tools", + "System.Globalization", + "System.Linq", + "System.Linq.Expressions", + "System.Linq.Queryable", + "System.ObjectModel", + "System.Reflection", + "System.Reflection.Extensions", + "System.Resources.ResourceManager", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading" + ], + "compile": { + "lib/dnx451/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dnx451/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "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.CommandLineUtils.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnx451/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.ObjectModel", + "System.Reflection", + "System.Runtime", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Collections.Immutable": "1.1.37-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.ComponentModel.Annotations": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Queryable": "4.0.0-beta-23109", + "System.ObjectModel": "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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "compile": { + "lib/dotnet/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6", + "Microsoft.CSharp": "4.0.0-beta-23109", + "System.Data.Common": "4.0.0-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Relational.dll": {} + } + }, + "Ix-Async/1.2.4": { + "compile": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + } + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Dynamic.Runtime": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.10-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.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Linq": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.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.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Dynamic.Runtime": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Resources.ReaderWriter": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Threading.Timer": "4.0.0-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019", + "System.Xml.XmlSerializer": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.AppContext": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Loader": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Process": "4.0.0-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.Sockets": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + } + }, + "System.AppContext/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tracing": "4.0.20-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Data.Common/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Data.Common.dll": {} + }, + "runtime": { + "lib/dotnet/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Overlapped": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit": "4.0.0-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "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.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23109": { + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ReaderWriter.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ReaderWriter.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23109": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Xml.ReaderWriter": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XmlDocument": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnxcore50/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.0-beta-23019", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnxcore50/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Net.Http": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnxcore50/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnxcore50/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.utility.dnx.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "serviceable": true, + "sha512": "u4CXBQEmftJJD7U500i79xS2MwPyptOZLFqBAAwHVp7RuuAB0k2u9iFvdA2kgQZNhzkyooUTcS/+n4EPJalpaw==", + "files": [ + "EntityFramework.InMemory.7.0.0-beta6.nupkg", + "EntityFramework.InMemory.7.0.0-beta6.nupkg.sha512", + "EntityFramework.InMemory.nuspec", + "lib/dotnet/EntityFramework.InMemory.dll", + "lib/dotnet/EntityFramework.InMemory.xml", + "lib/net45/EntityFramework.InMemory.dll", + "lib/net45/EntityFramework.InMemory.xml", + "repo.json" + ] + }, + "EntityFramework.Relational/7.0.0-beta6": { + "serviceable": true, + "sha512": "2CVE3UZjzXDRFYyfVL0lePnK1t2ZyLexNE88SiuUhY4mPC5SOWmDZ7mhLvtXeVJL/7PBpEmDy0qSDZRBpJ/Kiw==", + "files": [ + "EntityFramework.Relational.7.0.0-beta6.nupkg", + "EntityFramework.Relational.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Relational.nuspec", + "lib/dotnet/EntityFramework.Relational.dll", + "lib/dotnet/EntityFramework.Relational.xml", + "lib/net45/EntityFramework.Relational.dll", + "lib/net45/EntityFramework.Relational.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "MO4Lu8aMS1vL4Omp/gIMl2hr4sdV1l99p6xhAExGnS3MlFEa5JYPDL5mpdeg/osDH+1gAhb11xMJTYP7Ya3cAA==", + "files": [ + "lib/dotnet/Microsoft.CSharp.dll", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg.sha512", + "Microsoft.CSharp.nuspec", + "ref/dotnet/de/Microsoft.CSharp.xml", + "ref/dotnet/es/Microsoft.CSharp.xml", + "ref/dotnet/fr/Microsoft.CSharp.xml", + "ref/dotnet/it/Microsoft.CSharp.xml", + "ref/dotnet/ja/Microsoft.CSharp.xml", + "ref/dotnet/ko/Microsoft.CSharp.xml", + "ref/dotnet/Microsoft.CSharp.dll", + "ref/dotnet/Microsoft.CSharp.xml", + "ref/dotnet/ru/Microsoft.CSharp.xml", + "ref/dotnet/zh-hans/Microsoft.CSharp.xml", + "ref/dotnet/zh-hant/Microsoft.CSharp.xml", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta5": { + "sha512": "sZIlSWm9r2CFDI5JB21lKwa8Hq7DZPBYx3LcBnuxZnhSh2AwrhrS88YUZSMP6QCV+PHMwj0udTdnS1eZ2DbM7w==", + "files": [ + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.xml", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.xml", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.CommandLineUtils.Sources.nuspec", + "shared/AnsiConsole.cs", + "shared/CommandArgument.cs", + "shared/CommandLineApplication.cs", + "shared/CommandOption.cs", + "shared/CommandOptionType.cs" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.AppContext/4.0.0-beta-23019": { + "sha512": "dtYrJWnRhdNNbuTQf8ZhL9FhR+zef7ExSEHwqCF7e3YTPcL3XhUF7SD4Ij2rF3DJNMWT/r/8dgAs/9mNmOD66w==", + "files": [ + "lib/DNXCore50/System.AppContext.dll", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "ref/dotnet/System.AppContext.dll", + "ref/net46/System.AppContext.dll", + "System.AppContext.4.0.0-beta-23019.nupkg", + "System.AppContext.4.0.0-beta-23019.nupkg.sha512", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "2/VX+2QEyyIpvGDzuIXX8V0vSl/Llt673DR48nNmeA6BoMuwL4Eu4F1Meh9fPp80nhcjifqVK8g7/UQDn/0PFw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23109.nupkg", + "System.Collections.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "fRXR5y4dg9zPovFpSQZkc6gnyMNlQJVQ8lKqPDPFSIelhqWxv2VyY87s5Vd9ViGwKrFwekDwCQFug9ny8qCHuA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Collections.Concurrent.xml", + "ref/dotnet/es/System.Collections.Concurrent.xml", + "ref/dotnet/fr/System.Collections.Concurrent.xml", + "ref/dotnet/it/System.Collections.Concurrent.xml", + "ref/dotnet/ja/System.Collections.Concurrent.xml", + "ref/dotnet/ko/System.Collections.Concurrent.xml", + "ref/dotnet/ru/System.Collections.Concurrent.xml", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/dotnet/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Z+VGG3YaL4PxuBn/Nbjul1OoaCBzvkylexTwIW6s8arj3c17XkCeJvZ1BIn66lzDpAQYMGZmv97UMT6OboRoVg==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/de/System.Collections.NonGeneric.xml", + "ref/dotnet/es/System.Collections.NonGeneric.xml", + "ref/dotnet/fr/System.Collections.NonGeneric.xml", + "ref/dotnet/it/System.Collections.NonGeneric.xml", + "ref/dotnet/ja/System.Collections.NonGeneric.xml", + "ref/dotnet/ko/System.Collections.NonGeneric.xml", + "ref/dotnet/ru/System.Collections.NonGeneric.xml", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", + "ref/net46/System.Collections.NonGeneric.dll", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "JFzHUvX28tQbud0c9AP+SFeOroBG9x7tgc0OYu0Z5nQotnIiwP5nHXq9DoK3N2y0MoRUt8jy2FwkRMAYgiQuNQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.ComponentModel.xml", + "ref/dotnet/es/System.ComponentModel.xml", + "ref/dotnet/fr/System.ComponentModel.xml", + "ref/dotnet/it/System.ComponentModel.xml", + "ref/dotnet/ja/System.ComponentModel.xml", + "ref/dotnet/ko/System.ComponentModel.xml", + "ref/dotnet/ru/System.ComponentModel.xml", + "ref/dotnet/System.ComponentModel.dll", + "ref/dotnet/System.ComponentModel.xml", + "ref/dotnet/zh-hans/System.ComponentModel.xml", + "ref/dotnet/zh-hant/System.ComponentModel.xml", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.0-beta-23109.nupkg", + "System.ComponentModel.4.0.0-beta-23109.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "tfq+u00KcRXrvtYS4v7Bi4NgfFXt0sx5IgqqgeWCOFtwhDTVWgL3XJN/lanFtANnG7+zVU3+B5mvjH1pblGHxg==", + "files": [ + "lib/dotnet/System.ComponentModel.Annotations.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ComponentModel.Annotations.xml", + "ref/dotnet/es/System.ComponentModel.Annotations.xml", + "ref/dotnet/fr/System.ComponentModel.Annotations.xml", + "ref/dotnet/it/System.ComponentModel.Annotations.xml", + "ref/dotnet/ja/System.ComponentModel.Annotations.xml", + "ref/dotnet/ko/System.ComponentModel.Annotations.xml", + "ref/dotnet/ru/System.ComponentModel.Annotations.xml", + "ref/dotnet/System.ComponentModel.Annotations.dll", + "ref/dotnet/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", + "ref/net46/_._", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg.sha512", + "System.ComponentModel.Annotations.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Data.Common/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "oWJT16F9TqEP1dQDNZUSuJ1gH17YyR8wTD+zfz03oflnAUWlyH2QM/px/X10GPZAn9Qz58EYR/maNzJIX9FSOA==", + "files": [ + "lib/dotnet/System.Data.Common.dll", + "lib/net46/System.Data.Common.dll", + "ref/dotnet/de/System.Data.Common.xml", + "ref/dotnet/es/System.Data.Common.xml", + "ref/dotnet/fr/System.Data.Common.xml", + "ref/dotnet/it/System.Data.Common.xml", + "ref/dotnet/ja/System.Data.Common.xml", + "ref/dotnet/ko/System.Data.Common.xml", + "ref/dotnet/ru/System.Data.Common.xml", + "ref/dotnet/System.Data.Common.dll", + "ref/dotnet/System.Data.Common.xml", + "ref/dotnet/zh-hans/System.Data.Common.xml", + "ref/dotnet/zh-hant/System.Data.Common.xml", + "ref/net46/System.Data.Common.dll", + "System.Data.Common.4.0.0-beta-23109.nupkg", + "System.Data.Common.4.0.0-beta-23109.nupkg.sha512", + "System.Data.Common.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "woJsNwCtAqYac5zp+6Wy40HAp7kYr8zhaFvHl3gECjQf+VGeGYaHgDV1ATVcyMG1h6XvmX0wtmD5Qds51CRJoA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "sha512": "1vuXv89pElI0JeDhnXokMyy9VkLpkDFa+oU3selb5uhHfzVswH1etFBumZ0VKKvTOAnm8AS/3ZDXAVlRjywq3A==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Process.dll", + "lib/net46/System.Diagnostics.Process.dll", + "ref/dotnet/System.Diagnostics.Process.dll", + "ref/net46/System.Diagnostics.Process.dll", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Process.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6tFdP3p3SV6DZOagwW5ThfUF+zp5pUIyW4CY2K4B2RxV6HGVyY/8J2EuZGrcEP3wdO5fXnb9MmdOZa5Tn01Hmg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Diagnostics.Tools.xml", + "ref/dotnet/es/System.Diagnostics.Tools.xml", + "ref/dotnet/fr/System.Diagnostics.Tools.xml", + "ref/dotnet/it/System.Diagnostics.Tools.xml", + "ref/dotnet/ja/System.Diagnostics.Tools.xml", + "ref/dotnet/ko/System.Diagnostics.Tools.xml", + "ref/dotnet/ru/System.Diagnostics.Tools.xml", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/dotnet/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "sha512": "MZxMo9Skg9oZrJYwGpRfeOfrTfHxmTPWhj8XIXdIryfArzwG1FjZgzOrkWWcON0PdV9OywZYGly09nUCs/JdhA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.TraceSource.dll", + "lib/net46/System.Diagnostics.TraceSource.dll", + "ref/dotnet/System.Diagnostics.TraceSource.dll", + "ref/net46/System.Diagnostics.TraceSource.dll", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.TraceSource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "sNauLSBFewFLjULHeplEr7FCmmfPbcc1jfz1Mynjy445bYiP/IW1q9X14a//oV/uQG7p82S9qHyfPxoxmt3pxQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/de/System.Diagnostics.Tracing.xml", + "ref/dotnet/es/System.Diagnostics.Tracing.xml", + "ref/dotnet/fr/System.Diagnostics.Tracing.xml", + "ref/dotnet/it/System.Diagnostics.Tracing.xml", + "ref/dotnet/ja/System.Diagnostics.Tracing.xml", + "ref/dotnet/ko/System.Diagnostics.Tracing.xml", + "ref/dotnet/ru/System.Diagnostics.Tracing.xml", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "sha512": "yhXko8+R8fy0RERn6xQltYEhChBNyGEQgntwjHqNBc3x1M7wvg+Ye72Bh1QVQfnMIXZ0tG8XSrQs8hJe8KjYjg==", + "files": [ + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23109": { + "sha512": "l4QNrgLmC4KHGLcfriJ2EmsM2j18xefJzCnLU6YqVdBFaYzsJGwqmHyIr4nqw9DBjdWEtzdHLEbvpLeEay0ZWQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23109.nupkg", + "System.Globalization.4.0.10-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.IO/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "DVHSyfJO8mC9CpZFjjuaOWazALkWFnI6b/fqTQCjNe1dp2XasuvTRiV/qIOJB+uyDVex8sH8QMRUDS6ukimyLA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/de/System.IO.xml", + "ref/dotnet/es/System.IO.xml", + "ref/dotnet/fr/System.IO.xml", + "ref/dotnet/it/System.IO.xml", + "ref/dotnet/ja/System.IO.xml", + "ref/dotnet/ko/System.IO.xml", + "ref/dotnet/ru/System.IO.xml", + "ref/dotnet/System.IO.dll", + "ref/dotnet/System.IO.xml", + "ref/dotnet/zh-hans/System.IO.xml", + "ref/dotnet/zh-hant/System.IO.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23109.nupkg", + "System.IO.4.0.10-beta-23109.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._", + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "OusDe4B1/Q3BYY4QzNfztnyPPK9a1OGsQVZBg41C1bk8F2S3AOtXCx0GUwAfKbVxxS4dOdIgxWw1JN5m+IlpAA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/de/System.IO.FileSystem.xml", + "ref/dotnet/es/System.IO.FileSystem.xml", + "ref/dotnet/fr/System.IO.FileSystem.xml", + "ref/dotnet/it/System.IO.FileSystem.xml", + "ref/dotnet/ja/System.IO.FileSystem.xml", + "ref/dotnet/ko/System.IO.FileSystem.xml", + "ref/dotnet/ru/System.IO.FileSystem.xml", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.xml", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "1JFc6+hsLnlYgACgluhMi19zFkNruPgWoLDq30z7qMKgs3FZqShvXDZLTQ1Hk+cnenUoUU/8P8yRdmbdQaf4yg==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "sha512": "+xsD0H46/EB88848d9cHel2WVbUWlM/Y/k+tuY5lp2jXSwV8zMJ6F3TjMqeUZwWtUUavw+AN7D0a4ZoGVs/Rcw==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "cy+sQJW809QnFHIXt5Y/If45u362gwiNqHldnJS70l7VCjyR4Bo3UgZMZl+bowSupWxqXk69cwCQhRUyFu2hVw==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/de/System.Linq.Expressions.xml", + "ref/dotnet/es/System.Linq.Expressions.xml", + "ref/dotnet/fr/System.Linq.Expressions.xml", + "ref/dotnet/it/System.Linq.Expressions.xml", + "ref/dotnet/ja/System.Linq.Expressions.xml", + "ref/dotnet/ko/System.Linq.Expressions.xml", + "ref/dotnet/ru/System.Linq.Expressions.xml", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.xml", + "ref/dotnet/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet/zh-hant/System.Linq.Expressions.xml", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Mu6nIhw5k/zAMigeCh4aqma3kwXLoyPREVD6RxVPhGu2QJjAEeih0GWumoDjtdFp0B5Q6sYeakWDAds7NmzWQg==", + "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.0-beta-23019": { + "sha512": "8mt4X1eIjTMrKVINJuzuFYf7C4GrYFC+tlvc2zH5HtxKPpbFZamMUdJ19ORxZ9ds053aqQASdiha7eH86PN+eg==", + "files": [ + "lib/DNXCore50/System.Net.Http.dll", + "lib/net45/_._", + "lib/netcore50/System.Net.Http.dll", + "lib/win8/_._", + "ref/dotnet/System.Net.Http.dll", + "ref/net45/_._", + "ref/netcore50/System.Net.Http.dll", + "ref/win8/_._", + "System.Net.Http.4.0.0-beta-23019.nupkg", + "System.Net.Http.4.0.0-beta-23019.nupkg.sha512", + "System.Net.Http.nuspec" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._", + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "sha512": "4NWuSdsFSf21iJkd+NQaE2OwtNaKGdXIbBbQmfE43evHl6fUII38wwNnooWtF0avCEyU6BOdUTiwoZAUZyQwcA==", + "files": [ + "lib/DNXCore50/System.Net.Sockets.dll", + "ref/dotnet/System.Net.Sockets.dll", + "System.Net.Sockets.4.0.10-beta-23019.nupkg", + "System.Net.Sockets.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Sockets.nuspec" + ] + }, + "System.ObjectModel/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "mnrhXE8nT5mX/ndEJ5BsdLCgN6CofKiwQvr9Olsp/s3crY5/lXYM73N2bNSvsFcHD1o0XhaCOn18Vekv6SYTpg==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ObjectModel.xml", + "ref/dotnet/es/System.ObjectModel.xml", + "ref/dotnet/fr/System.ObjectModel.xml", + "ref/dotnet/it/System.ObjectModel.xml", + "ref/dotnet/ja/System.ObjectModel.xml", + "ref/dotnet/ko/System.ObjectModel.xml", + "ref/dotnet/ru/System.ObjectModel.xml", + "ref/dotnet/System.ObjectModel.dll", + "ref/dotnet/System.ObjectModel.xml", + "ref/dotnet/zh-hans/System.ObjectModel.xml", + "ref/dotnet/zh-hant/System.ObjectModel.xml", + "ref/net46/_._", + "System.ObjectModel.4.0.10-beta-23109.nupkg", + "System.ObjectModel.4.0.10-beta-23109.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "y6M7TxwDXBD2in5cCf+KzucZyx7YE7SJMcU24atzYnpwP2xFASUYCeI6NRg5bYcw2Do5HKBz+XdE9WiZrwpnFg==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23109.nupkg", + "System.Private.Uri.4.0.0-beta-23109.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23109": { + "sha512": "aeXO8gjPb46LaP727cXDcCZ2mZoMxguq2UhE25wJoO1Je8Q8D2JFonNk85oVlgXCdEM6XgrtRnsnhvj8PmTBNg==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/de/System.Reflection.xml", + "ref/dotnet/es/System.Reflection.xml", + "ref/dotnet/fr/System.Reflection.xml", + "ref/dotnet/it/System.Reflection.xml", + "ref/dotnet/ja/System.Reflection.xml", + "ref/dotnet/ko/System.Reflection.xml", + "ref/dotnet/ru/System.Reflection.xml", + "ref/dotnet/System.Reflection.dll", + "ref/dotnet/System.Reflection.xml", + "ref/dotnet/zh-hans/System.Reflection.xml", + "ref/dotnet/zh-hant/System.Reflection.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23109.nupkg", + "System.Reflection.4.0.10-beta-23109.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "sha512": "H8QtiSXFHNiQIPZe3PdNJPIjuH9O/A8+/52bw2RIKgV8rMrshmi2LufTvYCb+V5YPBFYWg2Yt8nRISEY4+uV5Q==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/de/System.Reflection.Emit.xml", + "ref/dotnet/es/System.Reflection.Emit.xml", + "ref/dotnet/fr/System.Reflection.Emit.xml", + "ref/dotnet/it/System.Reflection.Emit.xml", + "ref/dotnet/ja/System.Reflection.Emit.xml", + "ref/dotnet/ko/System.Reflection.Emit.xml", + "ref/dotnet/ru/System.Reflection.Emit.xml", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.xml", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "sha512": "tJO27blFXyvYwDLbK7GvgFC94XjeY6MnRitBI4w8LHfEc/gVdRmCC8gzkE8KEmkecnIWIt9VTSJ3p4lGgafKKA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/wp80/_._", + "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/net45/_._", + "ref/wp80/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "sXo3+qJ7TukCF/rDFYKjEog4iVb75dXJztu/lkvhMHgYnviPSbi9zg78FQUFhB6BOvntwnknrgNJhhtl3x9a7A==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Extensions.xml", + "ref/dotnet/es/System.Reflection.Extensions.xml", + "ref/dotnet/fr/System.Reflection.Extensions.xml", + "ref/dotnet/it/System.Reflection.Extensions.xml", + "ref/dotnet/ja/System.Reflection.Extensions.xml", + "ref/dotnet/ko/System.Reflection.Extensions.xml", + "ref/dotnet/ru/System.Reflection.Extensions.xml", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/dotnet/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "R5oBDNgUtSV9KTPCxwHWiTyryX/9mngnPbLWwFOEF5xcNd3Qlu6/3LiauGsIzGtXV8vOpRl9tfyIFy8t4ix4Gw==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Primitives.xml", + "ref/dotnet/es/System.Reflection.Primitives.xml", + "ref/dotnet/fr/System.Reflection.Primitives.xml", + "ref/dotnet/it/System.Reflection.Primitives.xml", + "ref/dotnet/ja/System.Reflection.Primitives.xml", + "ref/dotnet/ko/System.Reflection.Primitives.xml", + "ref/dotnet/ru/System.Reflection.Primitives.xml", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "lTuPMxeoT/Jqb1QtsIuSomLiJpQP3Y4DqqxLPncrMvLrejwdF25QSbhXdx5twgvBDqwSVL8wYtqiOqKe02u7FA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/de/System.Reflection.TypeExtensions.xml", + "ref/dotnet/es/System.Reflection.TypeExtensions.xml", + "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", + "ref/dotnet/it/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "sha512": "9J0+T+ChJ9rlYTcrJiTOLfTJHuHuenol1eOJgiF8yJK1rDozU2Wnex5kXus5Z8/SerMSCUofUOx4c2WYX/tNow==", + "files": [ + "lib/DNXCore50/System.Resources.ReaderWriter.dll", + "lib/net46/System.Resources.ReaderWriter.dll", + "ref/dotnet/System.Resources.ReaderWriter.dll", + "ref/net46/System.Resources.ReaderWriter.dll", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ReaderWriter.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "6usAb6nZEPKugl3z5JR/RZrouH5/340n3tM0lhRfxVE/k3B3Sfh/sHSPiAOorrZgGm4cIDDhXTCGJQSWYphu3g==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/de/System.Runtime.xml", + "ref/dotnet/es/System.Runtime.xml", + "ref/dotnet/fr/System.Runtime.xml", + "ref/dotnet/it/System.Runtime.xml", + "ref/dotnet/ja/System.Runtime.xml", + "ref/dotnet/ko/System.Runtime.xml", + "ref/dotnet/ru/System.Runtime.xml", + "ref/dotnet/System.Runtime.dll", + "ref/dotnet/System.Runtime.xml", + "ref/dotnet/zh-hans/System.Runtime.xml", + "ref/dotnet/zh-hant/System.Runtime.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23109.nupkg", + "System.Runtime.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "JkRMtSY5YFGhP9eY7ZFIj40Ha5lGOwSxrk90k0ZAuIFn6qEPNe0NKu/C8laV7Cqy4Lv5IYzkVUGrfOqg3MOG9A==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/de/System.Runtime.Extensions.xml", + "ref/dotnet/es/System.Runtime.Extensions.xml", + "ref/dotnet/fr/System.Runtime.Extensions.xml", + "ref/dotnet/it/System.Runtime.Extensions.xml", + "ref/dotnet/ja/System.Runtime.Extensions.xml", + "ref/dotnet/ko/System.Runtime.Extensions.xml", + "ref/dotnet/ru/System.Runtime.Extensions.xml", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "XfjBv5hxBDVXvgPzBXiMpHprnmd5trdBAG4o7DEi/3GPXIlety4G0sfmlxeiTr7njKr0wF4ERdLIfzPesS5PAw==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "fxRLTR5kbqOZuSeT5ggVBYc6HIEGmEwh+Uw1ijp2qD3yMiMPmxvtI5aP5t0yZHEmwUrB37lGB+oaPpcXLH5Feg==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/de/System.Runtime.InteropServices.xml", + "ref/dotnet/es/System.Runtime.InteropServices.xml", + "ref/dotnet/fr/System.Runtime.InteropServices.xml", + "ref/dotnet/it/System.Runtime.InteropServices.xml", + "ref/dotnet/ja/System.Runtime.InteropServices.xml", + "ref/dotnet/ko/System.Runtime.InteropServices.xml", + "ref/dotnet/ru/System.Runtime.InteropServices.xml", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "sha512": "YuxWBHBbvN5ILjno2DBjgW2NXQscfJFvIfQEOGHwChM5Q9//EO0LZfErH7fTk1n0IVcorDu/HTnkqr2NuK/t5w==", + "files": [ + "lib/DNXCore50/System.Runtime.Loader.dll", + "ref/dotnet/System.Runtime.Loader.dll", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Loader.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Security.Claims/4.0.0-beta-23019": { + "sha512": "kKseHxGh5pWjM43MZWtub/ZyBWUV3RHNSJuUtTzapeQD2qND6pGGNekMXcxmEZOxrKwFEBAeTlcgmWo/2e6/SQ==", + "files": [ + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll", + "System.Security.Claims.4.0.0-beta-23019.nupkg", + "System.Security.Claims.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.0-beta-23019": { + "sha512": "2zkK0eJOfso/Jo+77NVXDoJRggzL0jM0ayeXz+vD8pK9pIRnhpWJVbaGmT7MPBWW9KbPwtbJyXejpUS2rBflUQ==", + "files": [ + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._", + "System.Security.Principal.4.0.0-beta-23019.nupkg", + "System.Security.Principal.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "sha512": "FYvKKTbncuJCMnc1TmccsJlGSjIQrUJPymt2R3o5uSV1plyGD9V3san/rpq2IO4kDbHjGrQjEtZlbehwUucB5Q==", + "files": [ + "lib/DNXCore50/System.Security.Principal.Windows.dll", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/dotnet/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.Windows.nuspec" + ] + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll", + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "sha512": "oymPt96KPPXO/Scxow+x8cKczVw0KXfExKTXQlwT+j3sS1j/JuV+rZq2sQ54fqOi2R4d9aFPESsoN830sA6VCw==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/de/System.Text.Encoding.xml", + "ref/dotnet/es/System.Text.Encoding.xml", + "ref/dotnet/fr/System.Text.Encoding.xml", + "ref/dotnet/it/System.Text.Encoding.xml", + "ref/dotnet/ja/System.Text.Encoding.xml", + "ref/dotnet/ko/System.Text.Encoding.xml", + "ref/dotnet/ru/System.Text.Encoding.xml", + "ref/dotnet/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "sha512": "F6GZqICZ654MsqVPCL8h+fvDZJmXnu1I1PYY9686yG+lbcZzs9aavqMUjv1Lu5wOdiTKnmn7LADZYzPD6y1p+w==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/de/System.Text.Encoding.Extensions.xml", + "ref/dotnet/es/System.Text.Encoding.Extensions.xml", + "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", + "ref/dotnet/it/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "F+tfzB34KhZnjS3ActdL57CQVD9oYGhAZm8AREL+KvbJTh1Y8/tlyCyI2xoH6KdJzIPcXC50yu4OkHNbpcutEw==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Text.RegularExpressions.xml", + "ref/dotnet/es/System.Text.RegularExpressions.xml", + "ref/dotnet/fr/System.Text.RegularExpressions.xml", + "ref/dotnet/it/System.Text.RegularExpressions.xml", + "ref/dotnet/ja/System.Text.RegularExpressions.xml", + "ref/dotnet/ko/System.Text.RegularExpressions.xml", + "ref/dotnet/ru/System.Text.RegularExpressions.xml", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/dotnet/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "TSViw+K20yh9DmwzZpvuCUc2m2ju1eVAJ10pTw2gB/aP4kkrX2nGf4A9BkwkxupPXFA2OtO9LbbEqdp4YbBnjQ==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/de/System.Threading.xml", + "ref/dotnet/es/System.Threading.xml", + "ref/dotnet/fr/System.Threading.xml", + "ref/dotnet/it/System.Threading.xml", + "ref/dotnet/ja/System.Threading.xml", + "ref/dotnet/ko/System.Threading.xml", + "ref/dotnet/ru/System.Threading.xml", + "ref/dotnet/System.Threading.dll", + "ref/dotnet/System.Threading.xml", + "ref/dotnet/zh-hans/System.Threading.xml", + "ref/dotnet/zh-hant/System.Threading.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23109.nupkg", + "System.Threading.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "IMVmv9x4lBiy+jz31dU7KT/aTDlKZabAEDFAxQOTv//v1RYu5XZXZLIiTZqyVUKxxHgB0PUnuSDl5VxUDKysfQ==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/de/System.Threading.Overlapped.xml", + "ref/dotnet/es/System.Threading.Overlapped.xml", + "ref/dotnet/fr/System.Threading.Overlapped.xml", + "ref/dotnet/it/System.Threading.Overlapped.xml", + "ref/dotnet/ja/System.Threading.Overlapped.xml", + "ref/dotnet/ko/System.Threading.Overlapped.xml", + "ref/dotnet/ru/System.Threading.Overlapped.xml", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "J7lBqLLy1A85KZUgFz0fS8u6BO+pnWun2OAkrNqcUQbgCiKDC9v92u9q6a6AB9znum+GCdzH3cyEftNtIVNd1Q==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/de/System.Threading.Tasks.xml", + "ref/dotnet/es/System.Threading.Tasks.xml", + "ref/dotnet/fr/System.Threading.Tasks.xml", + "ref/dotnet/it/System.Threading.Tasks.xml", + "ref/dotnet/ja/System.Threading.Tasks.xml", + "ref/dotnet/ko/System.Threading.Tasks.xml", + "ref/dotnet/ru/System.Threading.Tasks.xml", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.xml", + "ref/dotnet/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet/zh-hant/System.Threading.Tasks.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "sha512": "ECx+zZlXCfhkpZ0PUVrzp5UB6zRdzi94LsQhm7DtUS/uB17I3sYh0RsnMu/5jTULByQ1Ju4K/JTbM28InXO/PQ==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.dll", + "ref/net46/System.Threading.Thread.dll", + "System.Threading.Thread.4.0.0-beta-23019.nupkg", + "System.Threading.Thread.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "sha512": "nGA/Vt5zC8zGQ8r9mSdRTWzVMXh1YgJH9XH8x5OQZVLh0hn6CSC32RrmUrmKLpxKd64B9mbKoubeLUqXlf/m8g==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "ref/dotnet/System.Threading.Timer.dll", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/win81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.0-beta-23019.nupkg", + "System.Threading.Timer.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.0-beta-23019": { + "sha512": "YsRwtb9uO6N8ndtnHPVi0oXSd7MkIVWiRdIHGzyBQ2qwMrQedBRW7u6P1LWo9DDcloOhwqmS6/HinClygHhbNg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "License.rtf", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/win8/_._", + "System.Xml.XDocument.4.0.0-beta-23019.nupkg", + "System.Xml.XDocument.4.0.0-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "sha512": "b1SOLM9FhBCL4gW3OP5b/HV1JVb1hfsF4D4wBxyUIZMXcP3kbm4F+bYvOB0cSeJ1F8oVnCCGivSk1/aSEQ86XQ==", + "files": [ + "lib/dotnet/System.Xml.XmlDocument.dll", + "lib/net46/System.Xml.XmlDocument.dll", + "ref/dotnet/System.Xml.XmlDocument.dll", + "ref/net46/System.Xml.XmlDocument.dll", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg.sha512", + "System.Xml.XmlDocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "sha512": "BqXNr12cUj02qymL4Nhowcsfz840wLSMPfU0T8i0JGPPIx38txMwUA2pnrYWsYmDmyIgw7GGUhrjXz6WJpjgwg==", + "files": [ + "lib/DNXCore50/System.Xml.XmlSerializer.dll", + "lib/net46/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "ref/dotnet/System.Xml.XmlSerializer.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XmlSerializer.nuspec" + ] + }, + "xunit.abstractions/2.0.0": { + "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0.nupkg", + "xunit.abstractions.2.0.0.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.1.0-beta3-build3029": { + "sha512": "AMS7Fv77DayXVRCBMmVEDwOXPcbxk8dCBA/iACsve+6+UQqopMtNyAynyIcXPFRK/peeitUKID4ChOXWisJmUw==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.1.0-beta3-build3029.nupkg", + "xunit.assert.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "sha512": "lsPro5U3NLasHI/RwqjKzXiRlh9N0IOlR3cluwXYVtihXbGtySeSnU/Fh5MTcWYxh+MVpoNop5zDD0/A2nrHsA==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "sha512": "WuUYamK4RHrHxihvNuX7NkryMhQrpH1+ziJ/mPIQbm18zevSgre8BwUuVZvmLZa8uVob3xS4dvAah2+HCgLiXg==", + "files": [ + "lib/dnx451/xunit.execution.dnx.dll", + "lib/dnx451/xunit.execution.dnx.pdb", + "lib/dnx451/xunit.execution.dnx.xml", + "lib/dnxcore50/xunit.execution.dnx.dll", + "lib/dnxcore50/xunit.execution.dnx.pdb", + "lib/dnxcore50/xunit.execution.dnx.xml", + "lib/monoandroid/xunit.execution.MonoAndroid.dll", + "lib/monoandroid/xunit.execution.MonoAndroid.pdb", + "lib/monoandroid/xunit.execution.MonoAndroid.xml", + "lib/monotouch/xunit.execution.MonoTouch.dll", + "lib/monotouch/xunit.execution.MonoTouch.pdb", + "lib/monotouch/xunit.execution.MonoTouch.xml", + "lib/net45/xunit.execution.desktop.dll", + "lib/net45/xunit.execution.desktop.pdb", + "lib/net45/xunit.execution.desktop.xml", + "lib/portable-wpa81+win81/xunit.execution.universal.dll", + "lib/portable-wpa81+win81/xunit.execution.universal.pdb", + "lib/portable-wpa81+win81/xunit.execution.universal.pri", + "lib/portable-wpa81+win81/xunit.execution.universal.xml", + "lib/wp8/xunit.execution.wp8.dll", + "lib/wp8/xunit.execution.wp8.pdb", + "lib/wp8/xunit.execution.wp8.xml", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.xml", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "sha512": "R6cvKy3mb8QjMxiTHqljsgwf424jYLbU07Ao0NcNHcRMT2OR+a2ldE6WdECiDMseYz/vuIaFQ6ebYRKEfMI/1A==", + "files": [ + "app/project.json", + "app/xunit", + "app/xunit.cmd", + "lib/dnx451/xunit.runner.dnx.dll", + "lib/dnx451/xunit.runner.dnx.xml", + "lib/dnxcore50/xunit.runner.dnx.dll", + "lib/dnxcore50/xunit.runner.dnx.xml", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg.sha512", + "xunit.runner.dnx.nuspec" + ] + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "sha512": "o+hiJTewV+4cA2GoHgbNC/FATjKxo2Z6PPeIdIfc7qysvYtu33POYUdo5XAqlRD9BQ7ojc8t/NOyZg/Qd9kjAg==", + "files": [ + "lib/dnx451/xunit.runner.reporters.dnx.dll", + "lib/dnxcore50/xunit.runner.reporters.dnx.dll", + "lib/net45/xunit.runner.reporters.desktop.dll", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.reporters.nuspec" + ] + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "sha512": "cm5lVNYtypOLgu6Vnd30UWPVNrcILzWmSul7tFrW/xT+ZjPYSES7kvYc80rKAUWXQl/awglhc5IMtAbHJi4abg==", + "files": [ + "lib/dnx451/xunit.runner.utility.dnx.dll", + "lib/dnx451/xunit.runner.utility.dnx.pdb", + "lib/dnx451/xunit.runner.utility.dnx.xml", + "lib/dnxcore50/xunit.runner.utility.dnx.dll", + "lib/dnxcore50/xunit.runner.utility.dnx.pdb", + "lib/dnxcore50/xunit.runner.utility.dnx.xml", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.dll", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.pdb", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.xml", + "lib/monotouch/xunit.runner.utility.MonoTouch.dll", + "lib/monotouch/xunit.runner.utility.MonoTouch.pdb", + "lib/monotouch/xunit.runner.utility.MonoTouch.xml", + "lib/net35/xunit.runner.utility.desktop.dll", + "lib/net35/xunit.runner.utility.desktop.pdb", + "lib/net35/xunit.runner.utility.desktop.xml", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.dll", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pdb", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pri", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.xml", + "lib/wp8/xunit.runner.utility.wp8.dll", + "lib/wp8/xunit.runner.utility.wp8.pdb", + "lib/wp8/xunit.runner.utility.wp8.xml", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.xml", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "EntityFramework.Core.FunctionalTests >= 7.0.0-beta6", + "EntityFramework.Relational >= 7.0.0-beta6" + ], + ".NETFramework,Version=v4.6": [], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [ + "System.Threading >= 4.0.10-beta-23109" + ] + } +} \ No newline at end of file diff --git a/test/EntityFramework.Relational.Tests/project.json b/test/EntityFramework.Relational.Tests/project.json index 2a812a032c7..7d75efb1913 100644 --- a/test/EntityFramework.Relational.Tests/project.json +++ b/test/EntityFramework.Relational.Tests/project.json @@ -1,13 +1,13 @@ { - "dependencies": { - "EntityFramework.Core.Tests": "1.0.0", - "EntityFramework.Relational": "7.0.0-*" - }, - "commands": { - "test": "xunit.runner.dnx" - }, - "frameworks": { - "net46": { }, - "dnx451": { } - } -} + "dependencies": { + "EntityFramework.Core.Tests": "1.0.0", + "EntityFramework.Relational": "7.0.0-beta6" + }, + "commands": { + "test": "xunit.runner.dnx" + }, + "frameworks": { + "net46": {}, + "dnx451": {} + } +} \ No newline at end of file diff --git a/test/EntityFramework.Relational.Tests/project.lock.json b/test/EntityFramework.Relational.Tests/project.lock.json new file mode 100644 index 00000000000..a9ec0e0d86f --- /dev/null +++ b/test/EntityFramework.Relational.Tests/project.lock.json @@ -0,0 +1,1808 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.6": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Moq/4.2.1312.1622": { + "compile": { + "lib/net40/Moq.dll": {} + }, + "runtime": { + "lib/net40/Moq.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/net45/xunit.execution.desktop.dll": {} + }, + "runtime": { + "lib/net45/xunit.execution.desktop.dll": {} + } + } + }, + "DNX,Version=v4.5.1": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.ComponentModel.DataAnnotations", + "System.Core", + "System.Diagnostics.Debug", + "System.Diagnostics.Tools", + "System.Globalization", + "System.Linq", + "System.Linq.Expressions", + "System.Linq.Queryable", + "System.ObjectModel", + "System.Reflection", + "System.Reflection.Extensions", + "System.Resources.ResourceManager", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading" + ], + "compile": { + "lib/dnx451/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dnx451/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "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.CommandLineUtils.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Moq/4.2.1312.1622": { + "compile": { + "lib/net40/Moq.dll": {} + }, + "runtime": { + "lib/net40/Moq.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnx451/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.ObjectModel", + "System.Reflection", + "System.Runtime", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "serviceable": true, + "sha512": "u4CXBQEmftJJD7U500i79xS2MwPyptOZLFqBAAwHVp7RuuAB0k2u9iFvdA2kgQZNhzkyooUTcS/+n4EPJalpaw==", + "files": [ + "EntityFramework.InMemory.7.0.0-beta6.nupkg", + "EntityFramework.InMemory.7.0.0-beta6.nupkg.sha512", + "EntityFramework.InMemory.nuspec", + "lib/dotnet/EntityFramework.InMemory.dll", + "lib/dotnet/EntityFramework.InMemory.xml", + "lib/net45/EntityFramework.InMemory.dll", + "lib/net45/EntityFramework.InMemory.xml", + "repo.json" + ] + }, + "EntityFramework.Relational/7.0.0-beta6": { + "serviceable": true, + "sha512": "2CVE3UZjzXDRFYyfVL0lePnK1t2ZyLexNE88SiuUhY4mPC5SOWmDZ7mhLvtXeVJL/7PBpEmDy0qSDZRBpJ/Kiw==", + "files": [ + "EntityFramework.Relational.7.0.0-beta6.nupkg", + "EntityFramework.Relational.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Relational.nuspec", + "lib/dotnet/EntityFramework.Relational.dll", + "lib/dotnet/EntityFramework.Relational.xml", + "lib/net45/EntityFramework.Relational.dll", + "lib/net45/EntityFramework.Relational.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta5": { + "sha512": "sZIlSWm9r2CFDI5JB21lKwa8Hq7DZPBYx3LcBnuxZnhSh2AwrhrS88YUZSMP6QCV+PHMwj0udTdnS1eZ2DbM7w==", + "files": [ + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.xml", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.xml", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.CommandLineUtils.Sources.nuspec", + "shared/AnsiConsole.cs", + "shared/CommandArgument.cs", + "shared/CommandLineApplication.cs", + "shared/CommandOption.cs", + "shared/CommandOptionType.cs" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Moq/4.2.1312.1622": { + "sha512": "mPAjm1Kv9jX745D3hEYDBycRT0T8gnAJE2dutbfP9meyHiRrCgQarHajEvKh5SMKM1D3RcHGr/Pg3JJEtKhu9Q==", + "files": [ + "lib/net35/Moq.dll", + "lib/net35/Moq.xml", + "lib/net40/Moq.dll", + "lib/net40/Moq.xml", + "lib/sl4/Moq.Silverlight.dll", + "lib/sl4/Moq.Silverlight.xml", + "Moq.4.2.1312.1622.nupkg", + "Moq.4.2.1312.1622.nupkg.sha512", + "Moq.nuspec" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "xunit.abstractions/2.0.0": { + "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0.nupkg", + "xunit.abstractions.2.0.0.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.1.0-beta3-build3029": { + "sha512": "AMS7Fv77DayXVRCBMmVEDwOXPcbxk8dCBA/iACsve+6+UQqopMtNyAynyIcXPFRK/peeitUKID4ChOXWisJmUw==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.1.0-beta3-build3029.nupkg", + "xunit.assert.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "sha512": "lsPro5U3NLasHI/RwqjKzXiRlh9N0IOlR3cluwXYVtihXbGtySeSnU/Fh5MTcWYxh+MVpoNop5zDD0/A2nrHsA==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "sha512": "WuUYamK4RHrHxihvNuX7NkryMhQrpH1+ziJ/mPIQbm18zevSgre8BwUuVZvmLZa8uVob3xS4dvAah2+HCgLiXg==", + "files": [ + "lib/dnx451/xunit.execution.dnx.dll", + "lib/dnx451/xunit.execution.dnx.pdb", + "lib/dnx451/xunit.execution.dnx.xml", + "lib/dnxcore50/xunit.execution.dnx.dll", + "lib/dnxcore50/xunit.execution.dnx.pdb", + "lib/dnxcore50/xunit.execution.dnx.xml", + "lib/monoandroid/xunit.execution.MonoAndroid.dll", + "lib/monoandroid/xunit.execution.MonoAndroid.pdb", + "lib/monoandroid/xunit.execution.MonoAndroid.xml", + "lib/monotouch/xunit.execution.MonoTouch.dll", + "lib/monotouch/xunit.execution.MonoTouch.pdb", + "lib/monotouch/xunit.execution.MonoTouch.xml", + "lib/net45/xunit.execution.desktop.dll", + "lib/net45/xunit.execution.desktop.pdb", + "lib/net45/xunit.execution.desktop.xml", + "lib/portable-wpa81+win81/xunit.execution.universal.dll", + "lib/portable-wpa81+win81/xunit.execution.universal.pdb", + "lib/portable-wpa81+win81/xunit.execution.universal.pri", + "lib/portable-wpa81+win81/xunit.execution.universal.xml", + "lib/wp8/xunit.execution.wp8.dll", + "lib/wp8/xunit.execution.wp8.pdb", + "lib/wp8/xunit.execution.wp8.xml", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.xml", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "sha512": "R6cvKy3mb8QjMxiTHqljsgwf424jYLbU07Ao0NcNHcRMT2OR+a2ldE6WdECiDMseYz/vuIaFQ6ebYRKEfMI/1A==", + "files": [ + "app/project.json", + "app/xunit", + "app/xunit.cmd", + "lib/dnx451/xunit.runner.dnx.dll", + "lib/dnx451/xunit.runner.dnx.xml", + "lib/dnxcore50/xunit.runner.dnx.dll", + "lib/dnxcore50/xunit.runner.dnx.xml", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg.sha512", + "xunit.runner.dnx.nuspec" + ] + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "sha512": "o+hiJTewV+4cA2GoHgbNC/FATjKxo2Z6PPeIdIfc7qysvYtu33POYUdo5XAqlRD9BQ7ojc8t/NOyZg/Qd9kjAg==", + "files": [ + "lib/dnx451/xunit.runner.reporters.dnx.dll", + "lib/dnxcore50/xunit.runner.reporters.dnx.dll", + "lib/net45/xunit.runner.reporters.desktop.dll", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.reporters.nuspec" + ] + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "sha512": "cm5lVNYtypOLgu6Vnd30UWPVNrcILzWmSul7tFrW/xT+ZjPYSES7kvYc80rKAUWXQl/awglhc5IMtAbHJi4abg==", + "files": [ + "lib/dnx451/xunit.runner.utility.dnx.dll", + "lib/dnx451/xunit.runner.utility.dnx.pdb", + "lib/dnx451/xunit.runner.utility.dnx.xml", + "lib/dnxcore50/xunit.runner.utility.dnx.dll", + "lib/dnxcore50/xunit.runner.utility.dnx.pdb", + "lib/dnxcore50/xunit.runner.utility.dnx.xml", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.dll", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.pdb", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.xml", + "lib/monotouch/xunit.runner.utility.MonoTouch.dll", + "lib/monotouch/xunit.runner.utility.MonoTouch.pdb", + "lib/monotouch/xunit.runner.utility.MonoTouch.xml", + "lib/net35/xunit.runner.utility.desktop.dll", + "lib/net35/xunit.runner.utility.desktop.pdb", + "lib/net35/xunit.runner.utility.desktop.xml", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.dll", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pdb", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pri", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.xml", + "lib/wp8/xunit.runner.utility.wp8.dll", + "lib/wp8/xunit.runner.utility.wp8.pdb", + "lib/wp8/xunit.runner.utility.wp8.xml", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.xml", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "EntityFramework.Core.Tests >= 1.0.0", + "EntityFramework.Relational >= 7.0.0-beta6" + ], + ".NETFramework,Version=v4.6": [], + "DNX,Version=v4.5.1": [] + } +} \ No newline at end of file diff --git a/test/EntityFramework.SqlServer.Design.FunctionalTests/project.json b/test/EntityFramework.SqlServer.Design.FunctionalTests/project.json index 6fe5dc7b1af..f0c99cfdabd 100644 --- a/test/EntityFramework.SqlServer.Design.FunctionalTests/project.json +++ b/test/EntityFramework.SqlServer.Design.FunctionalTests/project.json @@ -1,18 +1,18 @@ { - "dependencies": { - "EntityFramework.Commands": "7.0.0-*", - "EntityFramework.Relational.Design": "7.0.0-*", - "EntityFramework.SqlServer": "7.0.0-*", - "EntityFramework.SqlServer.Design": "7.0.0-*", - "EntityFramework.SqlServer.FunctionalTests": "1.0.0", - "Microsoft.Framework.Runtime": "1.0.0-*" - }, - "commands": { - "test": "xunit.runner.dnx" - }, - "frameworks": { - "net46": { }, - "dnx451": { }, - "dnxcore50": { } - } -} + "dependencies": { + "EntityFramework.Commands": "7.0.0-beta6", + "EntityFramework.Relational.Design": "7.0.0-beta6", + "EntityFramework.SqlServer": "7.0.0-beta6", + "EntityFramework.SqlServer.Design": "7.0.0-beta6", + "EntityFramework.SqlServer.FunctionalTests": "1.0.0", + "Microsoft.Framework.Runtime": "1.0.0-beta6" + }, + "commands": { + "test": "xunit.runner.dnx" + }, + "frameworks": { + "net46": {}, + "dnx451": {}, + "dnxcore50": {} + } +} \ No newline at end of file diff --git a/test/EntityFramework.SqlServer.Design.FunctionalTests/project.lock.json b/test/EntityFramework.SqlServer.Design.FunctionalTests/project.lock.json new file mode 100644 index 00000000000..34f036010db --- /dev/null +++ b/test/EntityFramework.SqlServer.Design.FunctionalTests/project.lock.json @@ -0,0 +1,6381 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.6": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.SqlServer.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.AspNet.Razor.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.AspNet.Razor.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta6": {}, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/net45/xunit.execution.desktop.dll": {} + }, + "runtime": { + "lib/net45/xunit.execution.desktop.dll": {} + } + } + }, + "DNX,Version=v4.5.1": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.ComponentModel.DataAnnotations", + "System.Core", + "System.Diagnostics.Debug", + "System.Diagnostics.Tools", + "System.Globalization", + "System.Linq", + "System.Linq.Expressions", + "System.Linq.Queryable", + "System.ObjectModel", + "System.Reflection", + "System.Reflection.Extensions", + "System.Resources.ResourceManager", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading" + ], + "compile": { + "lib/dnx451/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dnx451/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.SqlServer.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta6", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Http": "1.0.0-beta6", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta6", + "Microsoft.Framework.Configuration": "1.0.0-beta6", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta6", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta6", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta6", + "Microsoft.Net.Http.Headers": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta6", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6", + "Microsoft.Net.Http.Headers": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Razor.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Razor.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "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.CommandLineUtils.Sources/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Roslyn.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.Text.Encoding", + "System.Threading.Tasks" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.0.0", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnx451/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.ObjectModel", + "System.Reflection", + "System.Runtime", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Collections.Immutable": "1.1.37-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.ComponentModel.Annotations": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Queryable": "4.0.0-beta-23109", + "System.ObjectModel": "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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "compile": { + "lib/dotnet/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6", + "Microsoft.CSharp": "4.0.0-beta-23109", + "System.Data.Common": "4.0.0-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Relational.dll": {} + } + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6", + "System.Data.SqlClient": "4.0.0-beta-23109", + "System.Text.Encoding.CodePages": "4.0.0-beta-23109", + "System.Threading.Thread": "4.0.0-beta-23109" + }, + "compile": { + "lib/dnxcore50/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/dnxcore50/EntityFramework.SqlServer.dll": {} + } + }, + "Ix-Async/1.2.4": { + "compile": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + } + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "System.IO": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll": {} + } + }, + "Microsoft.AspNet.Hosting/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Physical": "1.0.0-beta6", + "Microsoft.AspNet.Hosting.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Hosting.Server.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Http": "1.0.0-beta6", + "Microsoft.AspNet.Http.Extensions": "1.0.0-beta6", + "Microsoft.Framework.Configuration": "1.0.0-beta6", + "Microsoft.Framework.Configuration.CommandLine": "1.0.0-beta6", + "Microsoft.Framework.Configuration.EnvironmentVariables": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Ini": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Newtonsoft.Json": "6.0.6", + "System.Console": "4.0.0-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FileProviders.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.FeatureModel": "1.0.0-beta6", + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6", + "Microsoft.AspNet.WebUtilities": "1.0.0-beta6", + "Microsoft.Net.Http.Headers": "1.0.0-beta6", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.dll": {} + } + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Http.Features": "1.0.0-beta6", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Globalization.Extensions": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Net.Primitives": "4.0.10-beta-23109", + "System.Net.WebSockets": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Security.Claims": "4.0.0-beta-23109", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23109", + "System.Security.Principal": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta6": { + "dependencies": { + "Microsoft.AspNet.Http.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6", + "Microsoft.Net.Http.Headers": "1.0.0-beta6", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Net.Primitives": "4.0.10-beta-23109", + "System.Net.WebSockets": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Security.Claims": "4.0.0-beta-23109", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23109", + "System.Security.Principal": "4.0.0-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll": {} + } + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109", + "System.Threading.Thread": "4.0.0-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.Razor.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.Razor.dll": {} + } + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.WebEncoders.Core": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": {}, + "Microsoft.CodeAnalysis.Common/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0]" + }, + "compile": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Dynamic.Runtime": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.10-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.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Linq": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.dll": {} + } + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Ini.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Ini.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.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.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta6", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.Dynamic.Runtime": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO.Compression": "4.0.0-beta-23109", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Resources.ReaderWriter": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109", + "System.Threading.Thread": "4.0.0-beta-23109", + "System.Threading.ThreadPool": "4.0.10-beta-23109", + "System.Threading.Timer": "4.0.0-beta-23109", + "System.Xml.ReaderWriter": "4.0.10-beta-23109", + "System.Xml.XDocument": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "System.AppContext": "4.0.0-beta-23109", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Runtime.Loader": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Roslyn.Abstractions": "1.0.0-beta6", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.0.0", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Process": "4.0.0-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.Sockets": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + } + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Contracts": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Globalization.Extensions": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + } + }, + "System.AppContext/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tracing": "4.0.20-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23109": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Console/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Data.Common/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Data.Common.dll": {} + }, + "runtime": { + "lib/dotnet/System.Data.Common.dll": {} + } + }, + "System.Data.SqlClient/4.0.0-beta-23109": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23109", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.0-beta-23109", + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.Data.Common": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "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.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.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Security.Principal.Windows": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.CodePages": "4.0.0-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109", + "System.Threading.Thread": "4.0.0-beta-23109", + "System.Threading.ThreadPool": "4.0.0-beta-23109", + "System.Threading.Timer": "4.0.0-beta-23109", + "System.Xml.ReaderWriter": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Data.SqlClient.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Data.SqlClient.dll": {} + } + }, + "System.Diagnostics.Contracts/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Contracts.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.ObjectModel": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Overlapped": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23109": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Overlapped": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit": "4.0.0-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "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.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23109": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebSockets/4.0.0-beta-23109": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Net.WebSockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.WebSockets.dll": {} + } + }, + "System.ObjectModel/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23109": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23109", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.0-beta-23109", + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tracing": "4.0.20-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23109", + "System.Security.Principal.Windows": "4.0.0-beta-23109", + "System.Security.SecureString": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Overlapped": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109", + "System.Threading.ThreadPool": "4.0.10-beta-23109" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23109": { + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ReaderWriter/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.IO": "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.Text.Encoding": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Resources.ReaderWriter.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ReaderWriter.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23109": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Loader/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Security.Principal": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23109": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23109", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23109": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23109", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Globalization.Calendars": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Runtime.Numerics": "4.0.0-beta-23109", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23109", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23109", + "System.Security.Cryptography.RSA": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Claims": "4.0.0-beta-23109", + "System.Security.Principal": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23109": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.CodePages/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.Encoding.CodePages.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-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.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.Reflection": "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.Text.Encoding": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Xml.ReaderWriter": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnxcore50/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.0-beta-23019", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnxcore50/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Net.Http": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnxcore50/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnxcore50/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.utility.dnx.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "serviceable": true, + "sha512": "u4CXBQEmftJJD7U500i79xS2MwPyptOZLFqBAAwHVp7RuuAB0k2u9iFvdA2kgQZNhzkyooUTcS/+n4EPJalpaw==", + "files": [ + "EntityFramework.InMemory.7.0.0-beta6.nupkg", + "EntityFramework.InMemory.7.0.0-beta6.nupkg.sha512", + "EntityFramework.InMemory.nuspec", + "lib/dotnet/EntityFramework.InMemory.dll", + "lib/dotnet/EntityFramework.InMemory.xml", + "lib/net45/EntityFramework.InMemory.dll", + "lib/net45/EntityFramework.InMemory.xml", + "repo.json" + ] + }, + "EntityFramework.Relational/7.0.0-beta6": { + "serviceable": true, + "sha512": "2CVE3UZjzXDRFYyfVL0lePnK1t2ZyLexNE88SiuUhY4mPC5SOWmDZ7mhLvtXeVJL/7PBpEmDy0qSDZRBpJ/Kiw==", + "files": [ + "EntityFramework.Relational.7.0.0-beta6.nupkg", + "EntityFramework.Relational.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Relational.nuspec", + "lib/dotnet/EntityFramework.Relational.dll", + "lib/dotnet/EntityFramework.Relational.xml", + "lib/net45/EntityFramework.Relational.dll", + "lib/net45/EntityFramework.Relational.xml", + "repo.json" + ] + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "serviceable": true, + "sha512": "69BvxKYVxgO/LK5YTKo9iuK4rt2/ystXVWdHfl3JaZ8DASB+UTacNNDDYeHuo2ZqQCv523AZSReuBGZ5reGBOg==", + "files": [ + "EntityFramework.SqlServer.7.0.0-beta6.nupkg", + "EntityFramework.SqlServer.7.0.0-beta6.nupkg.sha512", + "EntityFramework.SqlServer.nuspec", + "lib/dnxcore50/EntityFramework.SqlServer.dll", + "lib/dnxcore50/EntityFramework.SqlServer.xml", + "lib/net45/EntityFramework.SqlServer.dll", + "lib/net45/EntityFramework.SqlServer.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.AspNet.FeatureModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "6SdDa7Fx/38scBkaOGySzkSMQhk58ERdzouVyxJ9FhhXph2MEMgSuqNACCgTOX6+zFl6ZUwJG0DphQ+iYv2jrw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.FeatureModel.dll", + "lib/dnx451/Microsoft.AspNet.FeatureModel.xml", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.dll", + "lib/dnxcore50/Microsoft.AspNet.FeatureModel.xml", + "Microsoft.AspNet.FeatureModel.1.0.0-beta6.nupkg", + "Microsoft.AspNet.FeatureModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.FeatureModel.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.FileProviders.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "KocyYqntJkcGv4//VyaolXixf/XRInce9xtvbgb7n3+UtKFDU/q0CvSV/8OoLhIoYxTvC61bQcyoCOg6AlSfTg==", + "files": [ + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.FileProviders.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Abstractions.xml", + "lib/net45/Microsoft.AspNet.FileProviders.Abstractions.dll", + "lib/net45/Microsoft.AspNet.FileProviders.Abstractions.xml", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.FileProviders.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.FileProviders.Physical/1.0.0-beta6": { + "serviceable": true, + "sha512": "jQR2r1ZMD80IG++gPq0YElidsvZUiauH6KImIXVM/TD3NGYNeksm97XbKV2r5hUGrTBYfqItmvWRuTCjW6io1Q==", + "files": [ + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/dnx451/Microsoft.AspNet.FileProviders.Physical.xml", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/dnxcore50/Microsoft.AspNet.FileProviders.Physical.xml", + "lib/net45/Microsoft.AspNet.FileProviders.Physical.dll", + "lib/net45/Microsoft.AspNet.FileProviders.Physical.xml", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta6.nupkg", + "Microsoft.AspNet.FileProviders.Physical.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.FileProviders.Physical.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting/1.0.0-beta6": { + "serviceable": true, + "sha512": "q9MmbmxtnXdtWoJreTESNY/fNq2I2KSLD6XPg3vLnFK2qWvCBvNq29qVi67ft2bGLhjpxQLO0NYah4d1yhzpag==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Hosting.dll", + "lib/dnx451/Microsoft.AspNet.Hosting.xml", + "lib/dnxcore50/Microsoft.AspNet.Hosting.dll", + "lib/dnxcore50/Microsoft.AspNet.Hosting.xml", + "Microsoft.AspNet.Hosting.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Hosting.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Hosting.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "gAqZ7jxzQroxKtbVU0Azwp05jt9DqdSYBnc7touWEms3vgS8AX16NU+l4OAPXKlAyKHsmy8P1JNM9zNbPD/kOA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.Hosting.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Abstractions.xml", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Hosting.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Hosting.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Hosting.Server.Abstractions/1.0.0-beta6": { + "sha512": "iXOxv5XEBy/Hpq6ncoZ08qbrf55xiM1aZWyjiP9oASRqIAuHi9d5zh3ehsLKaiUQCfsfFozkPBoSwv7pRg/ZSQ==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.Hosting.Server.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.Hosting.Server.Abstractions.xml", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Hosting.Server.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Hosting.Server.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http/1.0.0-beta6": { + "serviceable": true, + "sha512": "67oPgXxtKkenyJ6cQv1w5SFX1Iy9E5kGJ/nFLZb8y0NFq0q40VU+TSTaNksyAN/7NCLSdpXdZqLRIplkc/VdUw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.dll", + "lib/dnx451/Microsoft.AspNet.Http.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.xml", + "Microsoft.AspNet.Http.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "yb6WdoTelIHfgNuKzHp5uu4qHB7CyXAs+41PFyskNTkWn4TwCXzoCnpJV08X3n2GdjqMCzeb2U2FFafmeZxAkQ==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.dll", + "lib/dnx451/Microsoft.AspNet.Http.Abstractions.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.Abstractions.xml", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Extensions/1.0.0-beta6": { + "serviceable": true, + "sha512": "Ad/hoYInYZLVJ0ch0jXCA4SXLo2AykwSrlr5c1l/9V2YCC4WHWwqFEMuS+3vIRMECHWbHuQJBz2HEcdPWrGoyw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.Extensions.dll", + "lib/dnx451/Microsoft.AspNet.Http.Extensions.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.Extensions.xml", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.Extensions.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.Extensions.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Http.Features/1.0.0-beta6": { + "serviceable": true, + "sha512": "x9m0cW55Y5oFBCgD4Yqwfyu14kw0AkNm2UFgrdCpTy6h7GBaV2nc5sSx6SgoP4fwThco5gac29GpH8IBXOUeYA==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Http.Features.dll", + "lib/dnx451/Microsoft.AspNet.Http.Features.xml", + "lib/dnxcore50/Microsoft.AspNet.Http.Features.dll", + "lib/dnxcore50/Microsoft.AspNet.Http.Features.xml", + "Microsoft.AspNet.Http.Features.1.0.0-beta6.nupkg", + "Microsoft.AspNet.Http.Features.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Http.Features.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "serviceable": true, + "sha512": "GkdomN9ySGxL9FqgD8pdxxljGWvIFOyRPKzbLe+XseKDfpP9YNzkX2+oD2TLcwCl/O7bJcX2F7k0Zlf96fMpfw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Razor.dll", + "lib/dnx451/Microsoft.AspNet.Razor.xml", + "lib/dnxcore50/Microsoft.AspNet.Razor.dll", + "lib/dnxcore50/Microsoft.AspNet.Razor.xml", + "lib/net45/Microsoft.AspNet.Razor.dll", + "lib/net45/Microsoft.AspNet.Razor.xml", + "Microsoft.AspNet.Razor.4.0.0-beta6.nupkg", + "Microsoft.AspNet.Razor.4.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Razor.nuspec", + "repo.json" + ] + }, + "Microsoft.AspNet.WebUtilities/1.0.0-beta6": { + "serviceable": true, + "sha512": "bLN5Nk0K9DB5trMtXUIrvNMxm+VKVPKcUHfM7mGBaKbBSARVvd5KIJTt+8Z9UF1IjjItd4/bV6gRTbo1Fo3/lw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.WebUtilities.dll", + "lib/dnx451/Microsoft.AspNet.WebUtilities.xml", + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.dll", + "lib/dnxcore50/Microsoft.AspNet.WebUtilities.xml", + "Microsoft.AspNet.WebUtilities.1.0.0-beta6.nupkg", + "Microsoft.AspNet.WebUtilities.1.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.WebUtilities.nuspec", + "repo.json" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "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.0.0": { + "sha512": "MhxsY8N9veim57uXqcRCJb7X9xZoWhMDU4/EyIqNkS7qfRsLxrzELSpjp6NjFkISZElvwIV2Ehi3UxyJui/gPw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "sha512": "KZ70r7EF+Dn8qp2p1CiBJGVoIG6el7Q9cLhnXuq+3oLcnMvUk2XzimB36AgO/Qg/liqRzf992WmFWhwqZSaIEg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "MO4Lu8aMS1vL4Omp/gIMl2hr4sdV1l99p6xhAExGnS3MlFEa5JYPDL5mpdeg/osDH+1gAhb11xMJTYP7Ya3cAA==", + "files": [ + "lib/dotnet/Microsoft.CSharp.dll", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg.sha512", + "Microsoft.CSharp.nuspec", + "ref/dotnet/de/Microsoft.CSharp.xml", + "ref/dotnet/es/Microsoft.CSharp.xml", + "ref/dotnet/fr/Microsoft.CSharp.xml", + "ref/dotnet/it/Microsoft.CSharp.xml", + "ref/dotnet/ja/Microsoft.CSharp.xml", + "ref/dotnet/ko/Microsoft.CSharp.xml", + "ref/dotnet/Microsoft.CSharp.dll", + "ref/dotnet/Microsoft.CSharp.xml", + "ref/dotnet/ru/Microsoft.CSharp.xml", + "ref/dotnet/zh-hans/Microsoft.CSharp.xml", + "ref/dotnet/zh-hant/Microsoft.CSharp.xml", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta6": { + "sha512": "SoI/xicmO2Nutc3y1Wxg2GIR18M5IDqYjUR5plULxb8XCMDeJ8oYKAicpEeHuc/GNUHiICmac0U4li50DTVqBA==", + "files": [ + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.xml", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.xml", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta6.nupkg", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.CommandLineUtils.Sources.nuspec", + "shared/AnsiConsole.cs", + "shared/CommandArgument.cs", + "shared/CommandLineApplication.cs", + "shared/CommandOption.cs", + "shared/CommandOptionType.cs" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.CommandLine/1.0.0-beta6": { + "serviceable": true, + "sha512": "9DX3AnuzuNl4QZLP/U/zkW03cASmOKJafcAXf1c/DUTJ7nRq9jUyVk9myJYd7+t0nmXXS1majXAHG3oQ/RGfTw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.dll", + "lib/dnx451/Microsoft.Framework.Configuration.CommandLine.xml", + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.dll", + "lib/dotnet/Microsoft.Framework.Configuration.CommandLine.xml", + "lib/net45/Microsoft.Framework.Configuration.CommandLine.dll", + "lib/net45/Microsoft.Framework.Configuration.CommandLine.xml", + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.CommandLine.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.CommandLine.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.EnvironmentVariables/1.0.0-beta6": { + "serviceable": true, + "sha512": "wUYZglLlkxL6xpbOHv6TqeJeT3GwpOxNRw3gkWOpM7OVrhAORm1pWnQ4qA+kWs5RDXSEntv47dK95MIypfIWKQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/dnx451/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/dotnet/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "lib/net45/Microsoft.Framework.Configuration.EnvironmentVariables.dll", + "lib/net45/Microsoft.Framework.Configuration.EnvironmentVariables.xml", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.EnvironmentVariables.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.EnvironmentVariables.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Ini/1.0.0-beta6": { + "serviceable": true, + "sha512": "czas9Cge4+tptJ3TCA8TSFZBuXS7CAXvEJu6ssD467uZ2QHZF/1EF4aUnJs9BJ5cTZ8+/baROjXL1jVS+QVDuA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Ini.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Ini.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Ini.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Ini.xml", + "lib/net45/Microsoft.Framework.Configuration.Ini.dll", + "lib/net45/Microsoft.Framework.Configuration.Ini.xml", + "Microsoft.Framework.Configuration.Ini.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Ini.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Ini.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta6": { + "serviceable": true, + "sha512": "mFE984JJush0TlSoLzDNwwHl18aEWons1JuPDTpMYVBOIbNmlQdBFhhKYGQbGWDruadjcaHm7YJL0b546CKwvA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "w4Cwg6jgPd3XFGOgBGU3GVGVAwUcMglSDTlI23M8uI7yhDRSDbxZ2HPbjTEBMoj+IYdkfunZWFdA67tdk8L8Tg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta6": { + "sha512": "+y/7JAz5lC3cmxeNe88Bi80jw6gA2f092y7vk8J6GXOWcUV+I3QoBl0p2Hne5T2YDfZALtzuyVGqsXIaM1X93A==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta6": { + "serviceable": true, + "sha512": "g7YYfc144kPoo9y+tiKgiavtAcgPOdfxYpyyGhrtxeOvgjmbSCtbM+QJN4KwGUZ3cX3Lq3mcFAPoD4YbSxHYIA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Roslyn/1.0.0-beta6": { + "serviceable": true, + "sha512": "P15pRq5zhTX6VB3yKJATfHf9/QpLSJZRnof81fj0BlEx0sTZdYVojbd1FSLKaG8aKb0B82TZrwk49UqIsKvSMA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.xml", + "Microsoft.Framework.Runtime.Roslyn.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Roslyn.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Roslyn.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Roslyn.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "gEHCvzynTJl20HUNR0Ag2K5i07oQUk+XIakcagbS6dsz7SQO2YFPmCoxUAp4puqjfsb4XZ8koZHQfLsEDGJd2A==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.xml", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Microsoft.Framework.WebEncoders.Core/1.0.0-beta6": { + "serviceable": true, + "sha512": "OvCNyGPZq645VdMzHZ8vLdlYIdl7KlZfVrCu+30DfwSCGV36ByJkUPHer3wU688jWFPx2S1OO7f82fJENYwz8Q==", + "files": [ + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.dll", + "lib/dnx451/Microsoft.Framework.WebEncoders.Core.xml", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.dll", + "lib/dnxcore50/Microsoft.Framework.WebEncoders.Core.xml", + "lib/net45/Microsoft.Framework.WebEncoders.Core.dll", + "lib/net45/Microsoft.Framework.WebEncoders.Core.xml", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta6.nupkg", + "Microsoft.Framework.WebEncoders.Core.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.WebEncoders.Core.nuspec", + "repo.json" + ] + }, + "Microsoft.Net.Http.Headers/1.0.0-beta6": { + "serviceable": true, + "sha512": "PeBHRiu9gSlP31Z1V3WEmIEb+1YJDdNdQY7xsSA98d3GnZqi+7ZERXVNcDDYMI16QViA/+Gq10HtYti8GwDHtQ==", + "files": [ + "lib/dnx451/Microsoft.Net.Http.Headers.dll", + "lib/dnx451/Microsoft.Net.Http.Headers.xml", + "lib/dnxcore50/Microsoft.Net.Http.Headers.dll", + "lib/dnxcore50/Microsoft.Net.Http.Headers.xml", + "lib/net45/Microsoft.Net.Http.Headers.dll", + "lib/net45/Microsoft.Net.Http.Headers.xml", + "Microsoft.Net.Http.Headers.1.0.0-beta6.nupkg", + "Microsoft.Net.Http.Headers.1.0.0-beta6.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec", + "repo.json" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "GsSRwzgrK2WJHUyd83AtKEX+Hv8ecmnwerJzinTXNqddsI48ClaeAyBgUnvRh5e/R8zzfIFqSHD1iEXSOSjAgQ==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23109.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23109.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/de/Microsoft.Win32.Primitives.xml", + "ref/dotnet/es/Microsoft.Win32.Primitives.xml", + "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", + "ref/dotnet/it/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.AppContext/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "kbBS5q5Qnk8C47zB0XLbi0BpQMx8IO1mQtKhU2zCriambR8aN+3BeelasL5SQBHc0CsOVr0ETCPh9zrzMnBdRQ==", + "files": [ + "lib/DNXCore50/System.AppContext.dll", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "ref/dotnet/de/System.AppContext.xml", + "ref/dotnet/es/System.AppContext.xml", + "ref/dotnet/fr/System.AppContext.xml", + "ref/dotnet/it/System.AppContext.xml", + "ref/dotnet/ja/System.AppContext.xml", + "ref/dotnet/ko/System.AppContext.xml", + "ref/dotnet/ru/System.AppContext.xml", + "ref/dotnet/System.AppContext.dll", + "ref/dotnet/System.AppContext.xml", + "ref/dotnet/zh-hans/System.AppContext.xml", + "ref/dotnet/zh-hant/System.AppContext.xml", + "ref/net46/System.AppContext.dll", + "System.AppContext.4.0.0-beta-23109.nupkg", + "System.AppContext.4.0.0-beta-23109.nupkg.sha512", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "2/VX+2QEyyIpvGDzuIXX8V0vSl/Llt673DR48nNmeA6BoMuwL4Eu4F1Meh9fPp80nhcjifqVK8g7/UQDn/0PFw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23109.nupkg", + "System.Collections.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "fRXR5y4dg9zPovFpSQZkc6gnyMNlQJVQ8lKqPDPFSIelhqWxv2VyY87s5Vd9ViGwKrFwekDwCQFug9ny8qCHuA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Collections.Concurrent.xml", + "ref/dotnet/es/System.Collections.Concurrent.xml", + "ref/dotnet/fr/System.Collections.Concurrent.xml", + "ref/dotnet/it/System.Collections.Concurrent.xml", + "ref/dotnet/ja/System.Collections.Concurrent.xml", + "ref/dotnet/ko/System.Collections.Concurrent.xml", + "ref/dotnet/ru/System.Collections.Concurrent.xml", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/dotnet/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Z+VGG3YaL4PxuBn/Nbjul1OoaCBzvkylexTwIW6s8arj3c17XkCeJvZ1BIn66lzDpAQYMGZmv97UMT6OboRoVg==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/de/System.Collections.NonGeneric.xml", + "ref/dotnet/es/System.Collections.NonGeneric.xml", + "ref/dotnet/fr/System.Collections.NonGeneric.xml", + "ref/dotnet/it/System.Collections.NonGeneric.xml", + "ref/dotnet/ja/System.Collections.NonGeneric.xml", + "ref/dotnet/ko/System.Collections.NonGeneric.xml", + "ref/dotnet/ru/System.Collections.NonGeneric.xml", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", + "ref/net46/System.Collections.NonGeneric.dll", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "JFzHUvX28tQbud0c9AP+SFeOroBG9x7tgc0OYu0Z5nQotnIiwP5nHXq9DoK3N2y0MoRUt8jy2FwkRMAYgiQuNQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.ComponentModel.xml", + "ref/dotnet/es/System.ComponentModel.xml", + "ref/dotnet/fr/System.ComponentModel.xml", + "ref/dotnet/it/System.ComponentModel.xml", + "ref/dotnet/ja/System.ComponentModel.xml", + "ref/dotnet/ko/System.ComponentModel.xml", + "ref/dotnet/ru/System.ComponentModel.xml", + "ref/dotnet/System.ComponentModel.dll", + "ref/dotnet/System.ComponentModel.xml", + "ref/dotnet/zh-hans/System.ComponentModel.xml", + "ref/dotnet/zh-hant/System.ComponentModel.xml", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.0-beta-23109.nupkg", + "System.ComponentModel.4.0.0-beta-23109.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "tfq+u00KcRXrvtYS4v7Bi4NgfFXt0sx5IgqqgeWCOFtwhDTVWgL3XJN/lanFtANnG7+zVU3+B5mvjH1pblGHxg==", + "files": [ + "lib/dotnet/System.ComponentModel.Annotations.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ComponentModel.Annotations.xml", + "ref/dotnet/es/System.ComponentModel.Annotations.xml", + "ref/dotnet/fr/System.ComponentModel.Annotations.xml", + "ref/dotnet/it/System.ComponentModel.Annotations.xml", + "ref/dotnet/ja/System.ComponentModel.Annotations.xml", + "ref/dotnet/ko/System.ComponentModel.Annotations.xml", + "ref/dotnet/ru/System.ComponentModel.Annotations.xml", + "ref/dotnet/System.ComponentModel.Annotations.dll", + "ref/dotnet/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", + "ref/net46/_._", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg.sha512", + "System.ComponentModel.Annotations.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "M5Ac5DJJ/xUy5N/9XlyOYJ2Y+C0ZvajUcgcywvWJKSFXsGwTPGHkri5ajXnJ6aLjQYggUrzJJ/tQEsO2jxec9Q==", + "files": [ + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/dotnet/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/net46/_._", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23109.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23109.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec" + ] + }, + "System.Console/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "ytlRZBI9ZoHiGwmyOg9bGlxvuGQ72YjKsjMWVfMOS57pupJySse2FHIAFMM3RShpY1y36/IUYVDjoPsFKuRn0Q==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/de/System.Console.xml", + "ref/dotnet/es/System.Console.xml", + "ref/dotnet/fr/System.Console.xml", + "ref/dotnet/it/System.Console.xml", + "ref/dotnet/ja/System.Console.xml", + "ref/dotnet/ko/System.Console.xml", + "ref/dotnet/ru/System.Console.xml", + "ref/dotnet/System.Console.dll", + "ref/dotnet/System.Console.xml", + "ref/dotnet/zh-hans/System.Console.xml", + "ref/dotnet/zh-hant/System.Console.xml", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23109.nupkg", + "System.Console.4.0.0-beta-23109.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Data.Common/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "oWJT16F9TqEP1dQDNZUSuJ1gH17YyR8wTD+zfz03oflnAUWlyH2QM/px/X10GPZAn9Qz58EYR/maNzJIX9FSOA==", + "files": [ + "lib/dotnet/System.Data.Common.dll", + "lib/net46/System.Data.Common.dll", + "ref/dotnet/de/System.Data.Common.xml", + "ref/dotnet/es/System.Data.Common.xml", + "ref/dotnet/fr/System.Data.Common.xml", + "ref/dotnet/it/System.Data.Common.xml", + "ref/dotnet/ja/System.Data.Common.xml", + "ref/dotnet/ko/System.Data.Common.xml", + "ref/dotnet/ru/System.Data.Common.xml", + "ref/dotnet/System.Data.Common.dll", + "ref/dotnet/System.Data.Common.xml", + "ref/dotnet/zh-hans/System.Data.Common.xml", + "ref/dotnet/zh-hant/System.Data.Common.xml", + "ref/net46/System.Data.Common.dll", + "System.Data.Common.4.0.0-beta-23109.nupkg", + "System.Data.Common.4.0.0-beta-23109.nupkg.sha512", + "System.Data.Common.nuspec" + ] + }, + "System.Data.SqlClient/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "c56D/dcp+BS22hpnZs8zfUBA0PAs9ftJp7IYLY8b1or798Rl+oT5swf/R8bs2rbeG0cE4Dq7ixr0dm5YdANVxQ==", + "files": [ + "lib/DNXCore50/System.Data.SqlClient.dll", + "lib/net46/System.Data.SqlClient.dll", + "ref/dotnet/de/System.Data.SqlClient.xml", + "ref/dotnet/es/System.Data.SqlClient.xml", + "ref/dotnet/fr/System.Data.SqlClient.xml", + "ref/dotnet/it/System.Data.SqlClient.xml", + "ref/dotnet/ja/System.Data.SqlClient.xml", + "ref/dotnet/ko/System.Data.SqlClient.xml", + "ref/dotnet/ru/System.Data.SqlClient.xml", + "ref/dotnet/System.Data.SqlClient.dll", + "ref/dotnet/System.Data.SqlClient.xml", + "ref/dotnet/zh-hans/System.Data.SqlClient.xml", + "ref/dotnet/zh-hant/System.Data.SqlClient.xml", + "ref/net46/System.Data.SqlClient.dll", + "runtime.json", + "System.Data.SqlClient.4.0.0-beta-23109.nupkg", + "System.Data.SqlClient.4.0.0-beta-23109.nupkg.sha512", + "System.Data.SqlClient.nuspec" + ] + }, + "System.Diagnostics.Contracts/4.0.0-beta-23109": { + "sha512": "kvQ39S26PRGerulw6LayNGxleSvNB0koSkcoHqZQdf8YLbKWFYR84G8lZJr0uhPIKJrLiNw0VXvHa87bNHk8IQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Diagnostics.Contracts.xml", + "ref/dotnet/es/System.Diagnostics.Contracts.xml", + "ref/dotnet/fr/System.Diagnostics.Contracts.xml", + "ref/dotnet/it/System.Diagnostics.Contracts.xml", + "ref/dotnet/ja/System.Diagnostics.Contracts.xml", + "ref/dotnet/ko/System.Diagnostics.Contracts.xml", + "ref/dotnet/ru/System.Diagnostics.Contracts.xml", + "ref/dotnet/System.Diagnostics.Contracts.dll", + "ref/dotnet/System.Diagnostics.Contracts.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Contracts.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Contracts.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/netcore50/System.Diagnostics.Contracts.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll", + "System.Diagnostics.Contracts.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Contracts.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "woJsNwCtAqYac5zp+6Wy40HAp7kYr8zhaFvHl3gECjQf+VGeGYaHgDV1ATVcyMG1h6XvmX0wtmD5Qds51CRJoA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "sha512": "1vuXv89pElI0JeDhnXokMyy9VkLpkDFa+oU3selb5uhHfzVswH1etFBumZ0VKKvTOAnm8AS/3ZDXAVlRjywq3A==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Process.dll", + "lib/net46/System.Diagnostics.Process.dll", + "ref/dotnet/System.Diagnostics.Process.dll", + "ref/net46/System.Diagnostics.Process.dll", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Process.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6tFdP3p3SV6DZOagwW5ThfUF+zp5pUIyW4CY2K4B2RxV6HGVyY/8J2EuZGrcEP3wdO5fXnb9MmdOZa5Tn01Hmg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Diagnostics.Tools.xml", + "ref/dotnet/es/System.Diagnostics.Tools.xml", + "ref/dotnet/fr/System.Diagnostics.Tools.xml", + "ref/dotnet/it/System.Diagnostics.Tools.xml", + "ref/dotnet/ja/System.Diagnostics.Tools.xml", + "ref/dotnet/ko/System.Diagnostics.Tools.xml", + "ref/dotnet/ru/System.Diagnostics.Tools.xml", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/dotnet/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "sha512": "MZxMo9Skg9oZrJYwGpRfeOfrTfHxmTPWhj8XIXdIryfArzwG1FjZgzOrkWWcON0PdV9OywZYGly09nUCs/JdhA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.TraceSource.dll", + "lib/net46/System.Diagnostics.TraceSource.dll", + "ref/dotnet/System.Diagnostics.TraceSource.dll", + "ref/net46/System.Diagnostics.TraceSource.dll", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.TraceSource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "sNauLSBFewFLjULHeplEr7FCmmfPbcc1jfz1Mynjy445bYiP/IW1q9X14a//oV/uQG7p82S9qHyfPxoxmt3pxQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/de/System.Diagnostics.Tracing.xml", + "ref/dotnet/es/System.Diagnostics.Tracing.xml", + "ref/dotnet/fr/System.Diagnostics.Tracing.xml", + "ref/dotnet/it/System.Diagnostics.Tracing.xml", + "ref/dotnet/ja/System.Diagnostics.Tracing.xml", + "ref/dotnet/ko/System.Diagnostics.Tracing.xml", + "ref/dotnet/ru/System.Diagnostics.Tracing.xml", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "u+HhRVqhMblXkyKZP1A8Y13AxzZhVC7wSNxgSvQ/2XeAA/OfDLYdUxuAT+KL13CNszaedzZxTOVZmZWpLmzFow==", + "files": [ + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "ref/dotnet/de/System.Dynamic.Runtime.xml", + "ref/dotnet/es/System.Dynamic.Runtime.xml", + "ref/dotnet/fr/System.Dynamic.Runtime.xml", + "ref/dotnet/it/System.Dynamic.Runtime.xml", + "ref/dotnet/ja/System.Dynamic.Runtime.xml", + "ref/dotnet/ko/System.Dynamic.Runtime.xml", + "ref/dotnet/ru/System.Dynamic.Runtime.xml", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.xml", + "ref/dotnet/zh-hans/System.Dynamic.Runtime.xml", + "ref/dotnet/zh-hant/System.Dynamic.Runtime.xml", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", + "System.Dynamic.Runtime.4.0.10-beta-23109.nupkg", + "System.Dynamic.Runtime.4.0.10-beta-23109.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23109": { + "sha512": "l4QNrgLmC4KHGLcfriJ2EmsM2j18xefJzCnLU6YqVdBFaYzsJGwqmHyIr4nqw9DBjdWEtzdHLEbvpLeEay0ZWQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23109.nupkg", + "System.Globalization.4.0.10-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23109": { + "sha512": "4qBOXdU+8MdHqm6Qsnlco/IF2j4XuKl3MCbhzUK4Hac0b9Jkh3XWRTHyy9OFzB5+WdYGGRFMAzD5AFOrI0tBCA==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/de/System.Globalization.Calendars.xml", + "ref/dotnet/es/System.Globalization.Calendars.xml", + "ref/dotnet/fr/System.Globalization.Calendars.xml", + "ref/dotnet/it/System.Globalization.Calendars.xml", + "ref/dotnet/ja/System.Globalization.Calendars.xml", + "ref/dotnet/ko/System.Globalization.Calendars.xml", + "ref/dotnet/ru/System.Globalization.Calendars.xml", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hans/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hant/System.Globalization.Calendars.xml", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0-beta-23109.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Q0BD+jsPZFtcR5DMcyERM2TggHJm9fJNGIMypTTh/6i6jET/c0B1MPnOyOUrHIbLuYrEwyiKDNJz0yw7Ps3hbg==", + "files": [ + "lib/dotnet/System.Globalization.Extensions.dll", + "lib/net46/System.Globalization.Extensions.dll", + "ref/dotnet/de/System.Globalization.Extensions.xml", + "ref/dotnet/es/System.Globalization.Extensions.xml", + "ref/dotnet/fr/System.Globalization.Extensions.xml", + "ref/dotnet/it/System.Globalization.Extensions.xml", + "ref/dotnet/ja/System.Globalization.Extensions.xml", + "ref/dotnet/ko/System.Globalization.Extensions.xml", + "ref/dotnet/ru/System.Globalization.Extensions.xml", + "ref/dotnet/System.Globalization.Extensions.dll", + "ref/dotnet/System.Globalization.Extensions.xml", + "ref/dotnet/zh-hans/System.Globalization.Extensions.xml", + "ref/dotnet/zh-hant/System.Globalization.Extensions.xml", + "ref/net46/System.Globalization.Extensions.dll", + "System.Globalization.Extensions.4.0.0-beta-23109.nupkg", + "System.Globalization.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.Extensions.nuspec" + ] + }, + "System.IO/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "DVHSyfJO8mC9CpZFjjuaOWazALkWFnI6b/fqTQCjNe1dp2XasuvTRiV/qIOJB+uyDVex8sH8QMRUDS6ukimyLA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/de/System.IO.xml", + "ref/dotnet/es/System.IO.xml", + "ref/dotnet/fr/System.IO.xml", + "ref/dotnet/it/System.IO.xml", + "ref/dotnet/ja/System.IO.xml", + "ref/dotnet/ko/System.IO.xml", + "ref/dotnet/ru/System.IO.xml", + "ref/dotnet/System.IO.dll", + "ref/dotnet/System.IO.xml", + "ref/dotnet/zh-hans/System.IO.xml", + "ref/dotnet/zh-hant/System.IO.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23109.nupkg", + "System.IO.4.0.10-beta-23109.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.Compression/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "kxDCzu/6/xGkpDk1Zk/NqbxngQd7B1fv53KlWutVBKWD/TwZOtGJbfDuW2eQ13IaYJAoqubMln902wICe2yzKg==", + "files": [ + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "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/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "runtime.json", + "System.IO.Compression.4.0.0-beta-23109.nupkg", + "System.IO.Compression.4.0.0-beta-23109.nupkg.sha512", + "System.IO.Compression.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "OusDe4B1/Q3BYY4QzNfztnyPPK9a1OGsQVZBg41C1bk8F2S3AOtXCx0GUwAfKbVxxS4dOdIgxWw1JN5m+IlpAA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/de/System.IO.FileSystem.xml", + "ref/dotnet/es/System.IO.FileSystem.xml", + "ref/dotnet/fr/System.IO.FileSystem.xml", + "ref/dotnet/it/System.IO.FileSystem.xml", + "ref/dotnet/ja/System.IO.FileSystem.xml", + "ref/dotnet/ko/System.IO.FileSystem.xml", + "ref/dotnet/ru/System.IO.FileSystem.xml", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.xml", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "1JFc6+hsLnlYgACgluhMi19zFkNruPgWoLDq30z7qMKgs3FZqShvXDZLTQ1Hk+cnenUoUU/8P8yRdmbdQaf4yg==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Z89LYjhXGyFYuJ5ohPTV3telH1sPugfnyzOM2GILpMAXGrG/KCMpFeLLNXQ9jaJXBmS5nT9xoGqt5hsSrscS/w==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/de/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/es/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/fr/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/it/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/ja/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/ko/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/ru/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Watcher.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Watcher.xml", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "System.IO.FileSystem.Watcher.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "cy+sQJW809QnFHIXt5Y/If45u362gwiNqHldnJS70l7VCjyR4Bo3UgZMZl+bowSupWxqXk69cwCQhRUyFu2hVw==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/de/System.Linq.Expressions.xml", + "ref/dotnet/es/System.Linq.Expressions.xml", + "ref/dotnet/fr/System.Linq.Expressions.xml", + "ref/dotnet/it/System.Linq.Expressions.xml", + "ref/dotnet/ja/System.Linq.Expressions.xml", + "ref/dotnet/ko/System.Linq.Expressions.xml", + "ref/dotnet/ru/System.Linq.Expressions.xml", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.xml", + "ref/dotnet/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet/zh-hant/System.Linq.Expressions.xml", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Mu6nIhw5k/zAMigeCh4aqma3kwXLoyPREVD6RxVPhGu2QJjAEeih0GWumoDjtdFp0B5Q6sYeakWDAds7NmzWQg==", + "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.0-beta-23019": { + "sha512": "8mt4X1eIjTMrKVINJuzuFYf7C4GrYFC+tlvc2zH5HtxKPpbFZamMUdJ19ORxZ9ds053aqQASdiha7eH86PN+eg==", + "files": [ + "lib/DNXCore50/System.Net.Http.dll", + "lib/net45/_._", + "lib/netcore50/System.Net.Http.dll", + "lib/win8/_._", + "ref/dotnet/System.Net.Http.dll", + "ref/net45/_._", + "ref/netcore50/System.Net.Http.dll", + "ref/win8/_._", + "System.Net.Http.4.0.0-beta-23019.nupkg", + "System.Net.Http.4.0.0-beta-23019.nupkg.sha512", + "System.Net.Http.nuspec" + ] + }, + "System.Net.Primitives/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "Btf+WQXkAQpm6rF/aeNhr8zXUCAsnZuHLVOzVIvnXS4wA32ZsmOa0iCnAjhVGAz7BNOYsjpvKWAHyxO58k+l3g==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/de/System.Net.Primitives.xml", + "ref/dotnet/es/System.Net.Primitives.xml", + "ref/dotnet/fr/System.Net.Primitives.xml", + "ref/dotnet/it/System.Net.Primitives.xml", + "ref/dotnet/ja/System.Net.Primitives.xml", + "ref/dotnet/ko/System.Net.Primitives.xml", + "ref/dotnet/ru/System.Net.Primitives.xml", + "ref/dotnet/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.xml", + "ref/dotnet/zh-hans/System.Net.Primitives.xml", + "ref/dotnet/zh-hant/System.Net.Primitives.xml", + "ref/net46/_._", + "System.Net.Primitives.4.0.10-beta-23109.nupkg", + "System.Net.Primitives.4.0.10-beta-23109.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "sha512": "4NWuSdsFSf21iJkd+NQaE2OwtNaKGdXIbBbQmfE43evHl6fUII38wwNnooWtF0avCEyU6BOdUTiwoZAUZyQwcA==", + "files": [ + "lib/DNXCore50/System.Net.Sockets.dll", + "ref/dotnet/System.Net.Sockets.dll", + "System.Net.Sockets.4.0.10-beta-23019.nupkg", + "System.Net.Sockets.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Sockets.nuspec" + ] + }, + "System.Net.WebSockets/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "oeNoZE8gMn6cz+6cK6K2or4nKR+HUa0lxfgEd5UkFvnr6hwU2islJ+K9oRdm6u3sQVEHfQSAuBKSIBekKuBX2w==", + "files": [ + "lib/DNXCore50/System.Net.WebSockets.dll", + "lib/net46/System.Net.WebSockets.dll", + "ref/dotnet/de/System.Net.WebSockets.xml", + "ref/dotnet/es/System.Net.WebSockets.xml", + "ref/dotnet/fr/System.Net.WebSockets.xml", + "ref/dotnet/it/System.Net.WebSockets.xml", + "ref/dotnet/ja/System.Net.WebSockets.xml", + "ref/dotnet/ko/System.Net.WebSockets.xml", + "ref/dotnet/ru/System.Net.WebSockets.xml", + "ref/dotnet/System.Net.WebSockets.dll", + "ref/dotnet/System.Net.WebSockets.xml", + "ref/dotnet/zh-hans/System.Net.WebSockets.xml", + "ref/dotnet/zh-hant/System.Net.WebSockets.xml", + "ref/net46/System.Net.WebSockets.dll", + "System.Net.WebSockets.4.0.0-beta-23109.nupkg", + "System.Net.WebSockets.4.0.0-beta-23109.nupkg.sha512", + "System.Net.WebSockets.nuspec" + ] + }, + "System.ObjectModel/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "mnrhXE8nT5mX/ndEJ5BsdLCgN6CofKiwQvr9Olsp/s3crY5/lXYM73N2bNSvsFcHD1o0XhaCOn18Vekv6SYTpg==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ObjectModel.xml", + "ref/dotnet/es/System.ObjectModel.xml", + "ref/dotnet/fr/System.ObjectModel.xml", + "ref/dotnet/it/System.ObjectModel.xml", + "ref/dotnet/ja/System.ObjectModel.xml", + "ref/dotnet/ko/System.ObjectModel.xml", + "ref/dotnet/ru/System.ObjectModel.xml", + "ref/dotnet/System.ObjectModel.dll", + "ref/dotnet/System.ObjectModel.xml", + "ref/dotnet/zh-hans/System.ObjectModel.xml", + "ref/dotnet/zh-hant/System.ObjectModel.xml", + "ref/net46/_._", + "System.ObjectModel.4.0.10-beta-23109.nupkg", + "System.ObjectModel.4.0.10-beta-23109.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Networking/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "xJxSwEnJe2lmzuahgRjQJY7WcPFFBp60d4TLY9LejGgBbR1yGiQo094nZPkVYChQTz3TtKayLvZZOdNVpONhKQ==", + "files": [ + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.4.0.0-beta-23109.nupkg", + "System.Private.Networking.4.0.0-beta-23109.nupkg.sha512", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "y6M7TxwDXBD2in5cCf+KzucZyx7YE7SJMcU24atzYnpwP2xFASUYCeI6NRg5bYcw2Do5HKBz+XdE9WiZrwpnFg==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23109.nupkg", + "System.Private.Uri.4.0.0-beta-23109.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23109": { + "sha512": "aeXO8gjPb46LaP727cXDcCZ2mZoMxguq2UhE25wJoO1Je8Q8D2JFonNk85oVlgXCdEM6XgrtRnsnhvj8PmTBNg==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/de/System.Reflection.xml", + "ref/dotnet/es/System.Reflection.xml", + "ref/dotnet/fr/System.Reflection.xml", + "ref/dotnet/it/System.Reflection.xml", + "ref/dotnet/ja/System.Reflection.xml", + "ref/dotnet/ko/System.Reflection.xml", + "ref/dotnet/ru/System.Reflection.xml", + "ref/dotnet/System.Reflection.dll", + "ref/dotnet/System.Reflection.xml", + "ref/dotnet/zh-hans/System.Reflection.xml", + "ref/dotnet/zh-hant/System.Reflection.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23109.nupkg", + "System.Reflection.4.0.10-beta-23109.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "sha512": "H8QtiSXFHNiQIPZe3PdNJPIjuH9O/A8+/52bw2RIKgV8rMrshmi2LufTvYCb+V5YPBFYWg2Yt8nRISEY4+uV5Q==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/de/System.Reflection.Emit.xml", + "ref/dotnet/es/System.Reflection.Emit.xml", + "ref/dotnet/fr/System.Reflection.Emit.xml", + "ref/dotnet/it/System.Reflection.Emit.xml", + "ref/dotnet/ja/System.Reflection.Emit.xml", + "ref/dotnet/ko/System.Reflection.Emit.xml", + "ref/dotnet/ru/System.Reflection.Emit.xml", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.xml", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "sha512": "tJO27blFXyvYwDLbK7GvgFC94XjeY6MnRitBI4w8LHfEc/gVdRmCC8gzkE8KEmkecnIWIt9VTSJ3p4lGgafKKA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/wp80/_._", + "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/net45/_._", + "ref/wp80/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "sXo3+qJ7TukCF/rDFYKjEog4iVb75dXJztu/lkvhMHgYnviPSbi9zg78FQUFhB6BOvntwnknrgNJhhtl3x9a7A==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Extensions.xml", + "ref/dotnet/es/System.Reflection.Extensions.xml", + "ref/dotnet/fr/System.Reflection.Extensions.xml", + "ref/dotnet/it/System.Reflection.Extensions.xml", + "ref/dotnet/ja/System.Reflection.Extensions.xml", + "ref/dotnet/ko/System.Reflection.Extensions.xml", + "ref/dotnet/ru/System.Reflection.Extensions.xml", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/dotnet/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "R5oBDNgUtSV9KTPCxwHWiTyryX/9mngnPbLWwFOEF5xcNd3Qlu6/3LiauGsIzGtXV8vOpRl9tfyIFy8t4ix4Gw==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Primitives.xml", + "ref/dotnet/es/System.Reflection.Primitives.xml", + "ref/dotnet/fr/System.Reflection.Primitives.xml", + "ref/dotnet/it/System.Reflection.Primitives.xml", + "ref/dotnet/ja/System.Reflection.Primitives.xml", + "ref/dotnet/ko/System.Reflection.Primitives.xml", + "ref/dotnet/ru/System.Reflection.Primitives.xml", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "lTuPMxeoT/Jqb1QtsIuSomLiJpQP3Y4DqqxLPncrMvLrejwdF25QSbhXdx5twgvBDqwSVL8wYtqiOqKe02u7FA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/de/System.Reflection.TypeExtensions.xml", + "ref/dotnet/es/System.Reflection.TypeExtensions.xml", + "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", + "ref/dotnet/it/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ReaderWriter/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Iw4iWE7qe1DG2Hw5J9x0k5A6BwVqvPrvlOpnamurz0O1H1OSEJdXnLD8sRJ3osXnTO/fn9Agvkwn1Snk+aU7HQ==", + "files": [ + "lib/DNXCore50/System.Resources.ReaderWriter.dll", + "lib/net46/System.Resources.ReaderWriter.dll", + "ref/dotnet/de/System.Resources.ReaderWriter.xml", + "ref/dotnet/es/System.Resources.ReaderWriter.xml", + "ref/dotnet/fr/System.Resources.ReaderWriter.xml", + "ref/dotnet/it/System.Resources.ReaderWriter.xml", + "ref/dotnet/ja/System.Resources.ReaderWriter.xml", + "ref/dotnet/ko/System.Resources.ReaderWriter.xml", + "ref/dotnet/ru/System.Resources.ReaderWriter.xml", + "ref/dotnet/System.Resources.ReaderWriter.dll", + "ref/dotnet/System.Resources.ReaderWriter.xml", + "ref/dotnet/zh-hans/System.Resources.ReaderWriter.xml", + "ref/dotnet/zh-hant/System.Resources.ReaderWriter.xml", + "ref/net46/System.Resources.ReaderWriter.dll", + "System.Resources.ReaderWriter.4.0.0-beta-23109.nupkg", + "System.Resources.ReaderWriter.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ReaderWriter.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "6usAb6nZEPKugl3z5JR/RZrouH5/340n3tM0lhRfxVE/k3B3Sfh/sHSPiAOorrZgGm4cIDDhXTCGJQSWYphu3g==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/de/System.Runtime.xml", + "ref/dotnet/es/System.Runtime.xml", + "ref/dotnet/fr/System.Runtime.xml", + "ref/dotnet/it/System.Runtime.xml", + "ref/dotnet/ja/System.Runtime.xml", + "ref/dotnet/ko/System.Runtime.xml", + "ref/dotnet/ru/System.Runtime.xml", + "ref/dotnet/System.Runtime.dll", + "ref/dotnet/System.Runtime.xml", + "ref/dotnet/zh-hans/System.Runtime.xml", + "ref/dotnet/zh-hant/System.Runtime.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23109.nupkg", + "System.Runtime.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "JkRMtSY5YFGhP9eY7ZFIj40Ha5lGOwSxrk90k0ZAuIFn6qEPNe0NKu/C8laV7Cqy4Lv5IYzkVUGrfOqg3MOG9A==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/de/System.Runtime.Extensions.xml", + "ref/dotnet/es/System.Runtime.Extensions.xml", + "ref/dotnet/fr/System.Runtime.Extensions.xml", + "ref/dotnet/it/System.Runtime.Extensions.xml", + "ref/dotnet/ja/System.Runtime.Extensions.xml", + "ref/dotnet/ko/System.Runtime.Extensions.xml", + "ref/dotnet/ru/System.Runtime.Extensions.xml", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "XfjBv5hxBDVXvgPzBXiMpHprnmd5trdBAG4o7DEi/3GPXIlety4G0sfmlxeiTr7njKr0wF4ERdLIfzPesS5PAw==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "fxRLTR5kbqOZuSeT5ggVBYc6HIEGmEwh+Uw1ijp2qD3yMiMPmxvtI5aP5t0yZHEmwUrB37lGB+oaPpcXLH5Feg==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/de/System.Runtime.InteropServices.xml", + "ref/dotnet/es/System.Runtime.InteropServices.xml", + "ref/dotnet/fr/System.Runtime.InteropServices.xml", + "ref/dotnet/it/System.Runtime.InteropServices.xml", + "ref/dotnet/ja/System.Runtime.InteropServices.xml", + "ref/dotnet/ko/System.Runtime.InteropServices.xml", + "ref/dotnet/ru/System.Runtime.InteropServices.xml", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0-beta-23109": { + "sha512": "elSUKGByumkZUjTk08eIG/nqXUVvikQLLWfItam0kEca6z6FTleFKZ3X0xqQkBlHaUT0GYk24CxXWUM/P9oqXQ==", + "files": [ + "lib/DNXCore50/System.Runtime.Loader.dll", + "ref/dotnet/de/System.Runtime.Loader.xml", + "ref/dotnet/es/System.Runtime.Loader.xml", + "ref/dotnet/fr/System.Runtime.Loader.xml", + "ref/dotnet/it/System.Runtime.Loader.xml", + "ref/dotnet/ja/System.Runtime.Loader.xml", + "ref/dotnet/ko/System.Runtime.Loader.xml", + "ref/dotnet/ru/System.Runtime.Loader.xml", + "ref/dotnet/System.Runtime.Loader.dll", + "ref/dotnet/System.Runtime.Loader.xml", + "ref/dotnet/zh-hans/System.Runtime.Loader.xml", + "ref/dotnet/zh-hant/System.Runtime.Loader.xml", + "System.Runtime.Loader.4.0.0-beta-23109.nupkg", + "System.Runtime.Loader.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Loader.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "l4yWLk7mSm1eUWuZRJaQ5jfPE67GI9DNR6hAKc3Dr3QnwzlzH0zyOqF1wY+2Jo0402LS+std02n2aLvbNNjQFg==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Runtime.Numerics.xml", + "ref/dotnet/es/System.Runtime.Numerics.xml", + "ref/dotnet/fr/System.Runtime.Numerics.xml", + "ref/dotnet/it/System.Runtime.Numerics.xml", + "ref/dotnet/ja/System.Runtime.Numerics.xml", + "ref/dotnet/ko/System.Runtime.Numerics.xml", + "ref/dotnet/ru/System.Runtime.Numerics.xml", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/dotnet/System.Runtime.Numerics.xml", + "ref/dotnet/zh-hans/System.Runtime.Numerics.xml", + "ref/dotnet/zh-hant/System.Runtime.Numerics.xml", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "System.Runtime.Numerics.4.0.0-beta-23109.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Security.Claims/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6oI/9RzVy/6AVHRzuSm9oOOm3O/iS+pWDby0YTuepAtW7aT1VZiYbar0Nzi7wUJLIE+EuUWgGUgVQni0inIUSw==", + "files": [ + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/de/System.Security.Claims.xml", + "ref/dotnet/es/System.Security.Claims.xml", + "ref/dotnet/fr/System.Security.Claims.xml", + "ref/dotnet/it/System.Security.Claims.xml", + "ref/dotnet/ja/System.Security.Claims.xml", + "ref/dotnet/ko/System.Security.Claims.xml", + "ref/dotnet/ru/System.Security.Claims.xml", + "ref/dotnet/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.xml", + "ref/dotnet/zh-hans/System.Security.Claims.xml", + "ref/dotnet/zh-hant/System.Security.Claims.xml", + "ref/net46/System.Security.Claims.dll", + "System.Security.Claims.4.0.0-beta-23109.nupkg", + "System.Security.Claims.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "mEzuexl2Wn+c0RHiPNlsuUecqV1lQ9Z005vcbFHec36zEGEbshbmiiGBZQWE2Gmb9ddINAo6Ob6NnUVAWSpw4A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/de/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/es/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/fr/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/it/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/ja/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/ko/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/ru/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "System.Security.Cryptography.Encoding.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Lewf25aZTItYvFz8RtCFdNAniNQ737gkTPU9IObuzbOeX8MMGHRf9Le4AQ2SdkTTTljjhebGybF5KCKZ784DLA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/de/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/es/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/fr/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/it/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/ja/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/ko/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/ru/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Encryption.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Encryption.xml", + "ref/net46/System.Security.Cryptography.Encryption.dll", + "System.Security.Cryptography.Encryption.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "cFQ8ewUVBb/bv2EbH64xNjmyLo1OmWGsrj4dbHDrdm+Huu2yGvsF/sdPTtHacX7cAi5iyJIv7tT3h149rQHlhg==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/de/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/es/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/fr/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/it/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/ja/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/ko/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/ru/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Hashing.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Hashing.xml", + "ref/net46/System.Security.Cryptography.Hashing.dll", + "System.Security.Cryptography.Hashing.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "nwFw1zaKhA82wYjIrAQdB67ap7SnH4OThYrEG6TYgX4UJyMIxG24pegcs8aaWupAUozmLXpDVOmtAkV6oL1LBQ==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/de/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/es/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/fr/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/it/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/ja/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/ko/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/ru/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.Hashing.Algorithms.xml", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "eBEb851icqj4elt5iPbiO6cnLflOWr0tRRHEq/ekxr1P2zNkI2TntVWC+lu5MOYgRj92XRNt2H+pCootjKruMw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/de/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/es/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/fr/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/it/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/ja/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/ko/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/ru/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.RandomNumberGenerator.xml", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "sGincwuZQugP8U3hlzYbRoJ2zKZGZ2dJ/EAQ/pKryCOIlFDur18oXjRvOvTT010Yt7Y/psjCbQlHRmA8EvEKHQ==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/de/System.Security.Cryptography.RSA.xml", + "ref/dotnet/es/System.Security.Cryptography.RSA.xml", + "ref/dotnet/fr/System.Security.Cryptography.RSA.xml", + "ref/dotnet/it/System.Security.Cryptography.RSA.xml", + "ref/dotnet/ja/System.Security.Cryptography.RSA.xml", + "ref/dotnet/ko/System.Security.Cryptography.RSA.xml", + "ref/dotnet/ru/System.Security.Cryptography.RSA.xml", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.RSA.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.RSA.xml", + "ref/net46/System.Security.Cryptography.RSA.dll", + "System.Security.Cryptography.RSA.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "/N8VmWLwPrb17IFAdOdRzJ578wNYl5rIlbcBNQzabO4EVm1S72WOBWlpyKbCFeS1ejO1S+x4RMc99XQ2jLBj/A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/de/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/es/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/it/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/dotnet/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23109.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "j94G8UrhEtW+RigEzZkayd9fcT9v/J35/V+rGzm6vmRjLE4e12+jwFUqFC9ZowElO4ZqaCoBgxu7uogHRmrKbQ==", + "files": [ + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Security.Principal.xml", + "ref/dotnet/es/System.Security.Principal.xml", + "ref/dotnet/fr/System.Security.Principal.xml", + "ref/dotnet/it/System.Security.Principal.xml", + "ref/dotnet/ja/System.Security.Principal.xml", + "ref/dotnet/ko/System.Security.Principal.xml", + "ref/dotnet/ru/System.Security.Principal.xml", + "ref/dotnet/System.Security.Principal.dll", + "ref/dotnet/System.Security.Principal.xml", + "ref/dotnet/zh-hans/System.Security.Principal.xml", + "ref/dotnet/zh-hant/System.Security.Principal.xml", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Security.Principal.4.0.0-beta-23109.nupkg", + "System.Security.Principal.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "/u7MPH/6bERVU88hsQJFoxva/OnPcS5fUrzj8OWH016zKnUElOVq76GoUdghmN5HCAmRpjqmryvZLt8+b2mrjQ==", + "files": [ + "lib/DNXCore50/System.Security.Principal.Windows.dll", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/dotnet/de/System.Security.Principal.Windows.xml", + "ref/dotnet/es/System.Security.Principal.Windows.xml", + "ref/dotnet/fr/System.Security.Principal.Windows.xml", + "ref/dotnet/it/System.Security.Principal.Windows.xml", + "ref/dotnet/ja/System.Security.Principal.Windows.xml", + "ref/dotnet/ko/System.Security.Principal.Windows.xml", + "ref/dotnet/ru/System.Security.Principal.Windows.xml", + "ref/dotnet/System.Security.Principal.Windows.dll", + "ref/dotnet/System.Security.Principal.Windows.xml", + "ref/dotnet/zh-hans/System.Security.Principal.Windows.xml", + "ref/dotnet/zh-hant/System.Security.Principal.Windows.xml", + "ref/net46/System.Security.Principal.Windows.dll", + "System.Security.Principal.Windows.4.0.0-beta-23109.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Principal.Windows.nuspec" + ] + }, + "System.Security.SecureString/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "ZRmBb18JXF2sfEop6zESpMH+yCPnr3lPfB3o7pyU4hnoMPIzwGJq8T9pIWG0y1x+fB1RtsaXUXPf3T1ACR2T5w==", + "files": [ + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/de/System.Security.SecureString.xml", + "ref/dotnet/es/System.Security.SecureString.xml", + "ref/dotnet/fr/System.Security.SecureString.xml", + "ref/dotnet/it/System.Security.SecureString.xml", + "ref/dotnet/ja/System.Security.SecureString.xml", + "ref/dotnet/ko/System.Security.SecureString.xml", + "ref/dotnet/ru/System.Security.SecureString.xml", + "ref/dotnet/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.xml", + "ref/dotnet/zh-hans/System.Security.SecureString.xml", + "ref/dotnet/zh-hant/System.Security.SecureString.xml", + "ref/net46/System.Security.SecureString.dll", + "System.Security.SecureString.4.0.0-beta-23109.nupkg", + "System.Security.SecureString.4.0.0-beta-23109.nupkg.sha512", + "System.Security.SecureString.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "sha512": "oymPt96KPPXO/Scxow+x8cKczVw0KXfExKTXQlwT+j3sS1j/JuV+rZq2sQ54fqOi2R4d9aFPESsoN830sA6VCw==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/de/System.Text.Encoding.xml", + "ref/dotnet/es/System.Text.Encoding.xml", + "ref/dotnet/fr/System.Text.Encoding.xml", + "ref/dotnet/it/System.Text.Encoding.xml", + "ref/dotnet/ja/System.Text.Encoding.xml", + "ref/dotnet/ko/System.Text.Encoding.xml", + "ref/dotnet/ru/System.Text.Encoding.xml", + "ref/dotnet/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "PoB/L0tth9mKUS1ky1LQVd+nniazNmnhbzmPZL+US+06QvQRhZlpZfUR+WN2ssWYpHFiL4Zt30lzf4qEiTBP4w==", + "files": [ + "lib/dotnet/System.Text.Encoding.CodePages.dll", + "ref/dotnet/de/System.Text.Encoding.CodePages.xml", + "ref/dotnet/es/System.Text.Encoding.CodePages.xml", + "ref/dotnet/fr/System.Text.Encoding.CodePages.xml", + "ref/dotnet/it/System.Text.Encoding.CodePages.xml", + "ref/dotnet/ja/System.Text.Encoding.CodePages.xml", + "ref/dotnet/ko/System.Text.Encoding.CodePages.xml", + "ref/dotnet/ru/System.Text.Encoding.CodePages.xml", + "ref/dotnet/System.Text.Encoding.CodePages.dll", + "ref/dotnet/System.Text.Encoding.CodePages.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.CodePages.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.CodePages.xml", + "System.Text.Encoding.CodePages.4.0.0-beta-23109.nupkg", + "System.Text.Encoding.CodePages.4.0.0-beta-23109.nupkg.sha512", + "System.Text.Encoding.CodePages.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "sha512": "F6GZqICZ654MsqVPCL8h+fvDZJmXnu1I1PYY9686yG+lbcZzs9aavqMUjv1Lu5wOdiTKnmn7LADZYzPD6y1p+w==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/de/System.Text.Encoding.Extensions.xml", + "ref/dotnet/es/System.Text.Encoding.Extensions.xml", + "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", + "ref/dotnet/it/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "F+tfzB34KhZnjS3ActdL57CQVD9oYGhAZm8AREL+KvbJTh1Y8/tlyCyI2xoH6KdJzIPcXC50yu4OkHNbpcutEw==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Text.RegularExpressions.xml", + "ref/dotnet/es/System.Text.RegularExpressions.xml", + "ref/dotnet/fr/System.Text.RegularExpressions.xml", + "ref/dotnet/it/System.Text.RegularExpressions.xml", + "ref/dotnet/ja/System.Text.RegularExpressions.xml", + "ref/dotnet/ko/System.Text.RegularExpressions.xml", + "ref/dotnet/ru/System.Text.RegularExpressions.xml", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/dotnet/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "TSViw+K20yh9DmwzZpvuCUc2m2ju1eVAJ10pTw2gB/aP4kkrX2nGf4A9BkwkxupPXFA2OtO9LbbEqdp4YbBnjQ==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/de/System.Threading.xml", + "ref/dotnet/es/System.Threading.xml", + "ref/dotnet/fr/System.Threading.xml", + "ref/dotnet/it/System.Threading.xml", + "ref/dotnet/ja/System.Threading.xml", + "ref/dotnet/ko/System.Threading.xml", + "ref/dotnet/ru/System.Threading.xml", + "ref/dotnet/System.Threading.dll", + "ref/dotnet/System.Threading.xml", + "ref/dotnet/zh-hans/System.Threading.xml", + "ref/dotnet/zh-hant/System.Threading.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23109.nupkg", + "System.Threading.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "IMVmv9x4lBiy+jz31dU7KT/aTDlKZabAEDFAxQOTv//v1RYu5XZXZLIiTZqyVUKxxHgB0PUnuSDl5VxUDKysfQ==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/de/System.Threading.Overlapped.xml", + "ref/dotnet/es/System.Threading.Overlapped.xml", + "ref/dotnet/fr/System.Threading.Overlapped.xml", + "ref/dotnet/it/System.Threading.Overlapped.xml", + "ref/dotnet/ja/System.Threading.Overlapped.xml", + "ref/dotnet/ko/System.Threading.Overlapped.xml", + "ref/dotnet/ru/System.Threading.Overlapped.xml", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "J7lBqLLy1A85KZUgFz0fS8u6BO+pnWun2OAkrNqcUQbgCiKDC9v92u9q6a6AB9znum+GCdzH3cyEftNtIVNd1Q==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/de/System.Threading.Tasks.xml", + "ref/dotnet/es/System.Threading.Tasks.xml", + "ref/dotnet/fr/System.Threading.Tasks.xml", + "ref/dotnet/it/System.Threading.Tasks.xml", + "ref/dotnet/ja/System.Threading.Tasks.xml", + "ref/dotnet/ko/System.Threading.Tasks.xml", + "ref/dotnet/ru/System.Threading.Tasks.xml", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.xml", + "ref/dotnet/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet/zh-hant/System.Threading.Tasks.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23109": { + "sha512": "pOob5Fz4cRJ/bfBs2+ehmS99VGCN5Ei2mf7bl17STagcDGHUZBAzVLz8Kamq0hwQGX2pCFkuUZH+2Ycdts2PSQ==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/de/System.Threading.Thread.xml", + "ref/dotnet/es/System.Threading.Thread.xml", + "ref/dotnet/fr/System.Threading.Thread.xml", + "ref/dotnet/it/System.Threading.Thread.xml", + "ref/dotnet/ja/System.Threading.Thread.xml", + "ref/dotnet/ko/System.Threading.Thread.xml", + "ref/dotnet/ru/System.Threading.Thread.xml", + "ref/dotnet/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.xml", + "ref/dotnet/zh-hans/System.Threading.Thread.xml", + "ref/dotnet/zh-hant/System.Threading.Thread.xml", + "ref/net46/System.Threading.Thread.dll", + "System.Threading.Thread.4.0.0-beta-23109.nupkg", + "System.Threading.Thread.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23109": { + "sha512": "+PySIYrGo5TYk6/+SUq84cnhaJ/12z1DgguacLOjixDn7e1qVo8g2zSk/APEZFqj3CEE5OvGmYPhWPXgRaAgyw==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/de/System.Threading.ThreadPool.xml", + "ref/dotnet/es/System.Threading.ThreadPool.xml", + "ref/dotnet/fr/System.Threading.ThreadPool.xml", + "ref/dotnet/it/System.Threading.ThreadPool.xml", + "ref/dotnet/ja/System.Threading.ThreadPool.xml", + "ref/dotnet/ko/System.Threading.ThreadPool.xml", + "ref/dotnet/ru/System.Threading.ThreadPool.xml", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.xml", + "ref/dotnet/zh-hans/System.Threading.ThreadPool.xml", + "ref/dotnet/zh-hant/System.Threading.ThreadPool.xml", + "ref/net46/System.Threading.ThreadPool.dll", + "System.Threading.ThreadPool.4.0.10-beta-23109.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.0-beta-23109": { + "sha512": "m0IORsRdO5kQqdA3C1EGLvD3NPaAj+B0FaM0KnAj0Cxg53baGGmYpNwh6mPf4sB8Pl4VBUtVaxlLN18MuyNQKQ==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Threading.Timer.xml", + "ref/dotnet/es/System.Threading.Timer.xml", + "ref/dotnet/fr/System.Threading.Timer.xml", + "ref/dotnet/it/System.Threading.Timer.xml", + "ref/dotnet/ja/System.Threading.Timer.xml", + "ref/dotnet/ko/System.Threading.Timer.xml", + "ref/dotnet/ru/System.Threading.Timer.xml", + "ref/dotnet/System.Threading.Timer.dll", + "ref/dotnet/System.Threading.Timer.xml", + "ref/dotnet/zh-hans/System.Threading.Timer.xml", + "ref/dotnet/zh-hant/System.Threading.Timer.xml", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/win81/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.0-beta-23109.nupkg", + "System.Threading.Timer.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "uWZ0HN71H+GNmmFopGZWPHVdysx0XmMWJWP35pidrTQFaAVaNDHtH8OG9WuM0VVGW3LBZsCNdtxE+F1eA/3acw==", + "files": [ + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Xml.ReaderWriter.xml", + "ref/dotnet/es/System.Xml.ReaderWriter.xml", + "ref/dotnet/fr/System.Xml.ReaderWriter.xml", + "ref/dotnet/it/System.Xml.ReaderWriter.xml", + "ref/dotnet/ja/System.Xml.ReaderWriter.xml", + "ref/dotnet/ko/System.Xml.ReaderWriter.xml", + "ref/dotnet/ru/System.Xml.ReaderWriter.xml", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/dotnet/System.Xml.ReaderWriter.xml", + "ref/dotnet/zh-hans/System.Xml.ReaderWriter.xml", + "ref/dotnet/zh-hant/System.Xml.ReaderWriter.xml", + "ref/net46/_._", + "System.Xml.ReaderWriter.4.0.10-beta-23109.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23109.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "fimRLfc8RBcCXRfePrZPHuADlwt6qIUr4m5WsGFFzhRW2TiYiaHD+3xqyVnBN7/ZEDQhG7TTZwlGYBeeIM6Etw==", + "files": [ + "lib/dotnet/System.Xml.XDocument.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Xml.XDocument.xml", + "ref/dotnet/es/System.Xml.XDocument.xml", + "ref/dotnet/fr/System.Xml.XDocument.xml", + "ref/dotnet/it/System.Xml.XDocument.xml", + "ref/dotnet/ja/System.Xml.XDocument.xml", + "ref/dotnet/ko/System.Xml.XDocument.xml", + "ref/dotnet/ru/System.Xml.XDocument.xml", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/dotnet/System.Xml.XDocument.xml", + "ref/dotnet/zh-hans/System.Xml.XDocument.xml", + "ref/dotnet/zh-hant/System.Xml.XDocument.xml", + "ref/net46/_._", + "System.Xml.XDocument.4.0.10-beta-23109.nupkg", + "System.Xml.XDocument.4.0.10-beta-23109.nupkg.sha512", + "System.Xml.XDocument.nuspec" + ] + }, + "xunit.abstractions/2.0.0": { + "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0.nupkg", + "xunit.abstractions.2.0.0.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.1.0-beta3-build3029": { + "sha512": "AMS7Fv77DayXVRCBMmVEDwOXPcbxk8dCBA/iACsve+6+UQqopMtNyAynyIcXPFRK/peeitUKID4ChOXWisJmUw==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.1.0-beta3-build3029.nupkg", + "xunit.assert.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "sha512": "lsPro5U3NLasHI/RwqjKzXiRlh9N0IOlR3cluwXYVtihXbGtySeSnU/Fh5MTcWYxh+MVpoNop5zDD0/A2nrHsA==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "sha512": "WuUYamK4RHrHxihvNuX7NkryMhQrpH1+ziJ/mPIQbm18zevSgre8BwUuVZvmLZa8uVob3xS4dvAah2+HCgLiXg==", + "files": [ + "lib/dnx451/xunit.execution.dnx.dll", + "lib/dnx451/xunit.execution.dnx.pdb", + "lib/dnx451/xunit.execution.dnx.xml", + "lib/dnxcore50/xunit.execution.dnx.dll", + "lib/dnxcore50/xunit.execution.dnx.pdb", + "lib/dnxcore50/xunit.execution.dnx.xml", + "lib/monoandroid/xunit.execution.MonoAndroid.dll", + "lib/monoandroid/xunit.execution.MonoAndroid.pdb", + "lib/monoandroid/xunit.execution.MonoAndroid.xml", + "lib/monotouch/xunit.execution.MonoTouch.dll", + "lib/monotouch/xunit.execution.MonoTouch.pdb", + "lib/monotouch/xunit.execution.MonoTouch.xml", + "lib/net45/xunit.execution.desktop.dll", + "lib/net45/xunit.execution.desktop.pdb", + "lib/net45/xunit.execution.desktop.xml", + "lib/portable-wpa81+win81/xunit.execution.universal.dll", + "lib/portable-wpa81+win81/xunit.execution.universal.pdb", + "lib/portable-wpa81+win81/xunit.execution.universal.pri", + "lib/portable-wpa81+win81/xunit.execution.universal.xml", + "lib/wp8/xunit.execution.wp8.dll", + "lib/wp8/xunit.execution.wp8.pdb", + "lib/wp8/xunit.execution.wp8.xml", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.xml", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "sha512": "R6cvKy3mb8QjMxiTHqljsgwf424jYLbU07Ao0NcNHcRMT2OR+a2ldE6WdECiDMseYz/vuIaFQ6ebYRKEfMI/1A==", + "files": [ + "app/project.json", + "app/xunit", + "app/xunit.cmd", + "lib/dnx451/xunit.runner.dnx.dll", + "lib/dnx451/xunit.runner.dnx.xml", + "lib/dnxcore50/xunit.runner.dnx.dll", + "lib/dnxcore50/xunit.runner.dnx.xml", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg.sha512", + "xunit.runner.dnx.nuspec" + ] + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "sha512": "o+hiJTewV+4cA2GoHgbNC/FATjKxo2Z6PPeIdIfc7qysvYtu33POYUdo5XAqlRD9BQ7ojc8t/NOyZg/Qd9kjAg==", + "files": [ + "lib/dnx451/xunit.runner.reporters.dnx.dll", + "lib/dnxcore50/xunit.runner.reporters.dnx.dll", + "lib/net45/xunit.runner.reporters.desktop.dll", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.reporters.nuspec" + ] + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "sha512": "cm5lVNYtypOLgu6Vnd30UWPVNrcILzWmSul7tFrW/xT+ZjPYSES7kvYc80rKAUWXQl/awglhc5IMtAbHJi4abg==", + "files": [ + "lib/dnx451/xunit.runner.utility.dnx.dll", + "lib/dnx451/xunit.runner.utility.dnx.pdb", + "lib/dnx451/xunit.runner.utility.dnx.xml", + "lib/dnxcore50/xunit.runner.utility.dnx.dll", + "lib/dnxcore50/xunit.runner.utility.dnx.pdb", + "lib/dnxcore50/xunit.runner.utility.dnx.xml", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.dll", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.pdb", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.xml", + "lib/monotouch/xunit.runner.utility.MonoTouch.dll", + "lib/monotouch/xunit.runner.utility.MonoTouch.pdb", + "lib/monotouch/xunit.runner.utility.MonoTouch.xml", + "lib/net35/xunit.runner.utility.desktop.dll", + "lib/net35/xunit.runner.utility.desktop.pdb", + "lib/net35/xunit.runner.utility.desktop.xml", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.dll", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pdb", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pri", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.xml", + "lib/wp8/xunit.runner.utility.wp8.dll", + "lib/wp8/xunit.runner.utility.wp8.pdb", + "lib/wp8/xunit.runner.utility.wp8.xml", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.xml", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "EntityFramework.Commands >= 7.0.0-beta6", + "EntityFramework.Relational.Design >= 7.0.0-beta6", + "EntityFramework.SqlServer >= 7.0.0-beta6", + "EntityFramework.SqlServer.Design >= 7.0.0-beta6", + "EntityFramework.SqlServer.FunctionalTests >= 1.0.0", + "Microsoft.Framework.Runtime >= 1.0.0-beta6" + ], + ".NETFramework,Version=v4.6": [], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [] + } +} \ No newline at end of file diff --git a/test/EntityFramework.SqlServer.Design.Tests/project.json b/test/EntityFramework.SqlServer.Design.Tests/project.json index 448f0369c95..c8f0c0452df 100644 --- a/test/EntityFramework.SqlServer.Design.Tests/project.json +++ b/test/EntityFramework.SqlServer.Design.Tests/project.json @@ -1,13 +1,13 @@ { - "dependencies": { - "EntityFramework.Core.Tests": "1.0.0", - "EntityFramework.SqlServer.Design": "7.0.0-*" - }, - "commands": { - "test": "xunit.runner.dnx" - }, - "frameworks": { - "net46": { }, - "dnx451": { } - } -} + "dependencies": { + "EntityFramework.Core.Tests": "1.0.0", + "EntityFramework.SqlServer.Design": "7.0.0-beta6" + }, + "commands": { + "test": "xunit.runner.dnx" + }, + "frameworks": { + "net46": {}, + "dnx451": {} + } +} \ No newline at end of file diff --git a/test/EntityFramework.SqlServer.Design.Tests/project.lock.json b/test/EntityFramework.SqlServer.Design.Tests/project.lock.json new file mode 100644 index 00000000000..cd59caf77d7 --- /dev/null +++ b/test/EntityFramework.SqlServer.Design.Tests/project.lock.json @@ -0,0 +1,2100 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.6": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.SqlServer.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.AspNet.Razor.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.AspNet.Razor.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Moq/4.2.1312.1622": { + "compile": { + "lib/net40/Moq.dll": {} + }, + "runtime": { + "lib/net40/Moq.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/net45/xunit.execution.desktop.dll": {} + }, + "runtime": { + "lib/net45/xunit.execution.desktop.dll": {} + } + } + }, + "DNX,Version=v4.5.1": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.ComponentModel.DataAnnotations", + "System.Core", + "System.Diagnostics.Debug", + "System.Diagnostics.Tools", + "System.Globalization", + "System.Linq", + "System.Linq.Expressions", + "System.Linq.Queryable", + "System.ObjectModel", + "System.Reflection", + "System.Reflection.Extensions", + "System.Resources.ResourceManager", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading" + ], + "compile": { + "lib/dnx451/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dnx451/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.SqlServer.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.AspNet.Razor.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.AspNet.Razor.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "[1.0.0]", + "System.Collections.Immutable": "1.1.36", + "System.Reflection.Metadata": "1.0.21" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.0.0]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "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.CommandLineUtils.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Roslyn.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.Text.Encoding", + "System.Threading.Tasks" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.dll": {} + } + }, + "Microsoft.Framework.Runtime.Roslyn.Abstractions/1.0.0-beta6": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "1.0.0", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Moq/4.2.1312.1622": { + "compile": { + "lib/net40/Moq.dll": {} + }, + "runtime": { + "lib/net40/Moq.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Reflection.Metadata/1.0.21": { + "dependencies": { + "System.Collections.Immutable": "1.1.36" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnx451/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.ObjectModel", + "System.Reflection", + "System.Runtime", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "serviceable": true, + "sha512": "u4CXBQEmftJJD7U500i79xS2MwPyptOZLFqBAAwHVp7RuuAB0k2u9iFvdA2kgQZNhzkyooUTcS/+n4EPJalpaw==", + "files": [ + "EntityFramework.InMemory.7.0.0-beta6.nupkg", + "EntityFramework.InMemory.7.0.0-beta6.nupkg.sha512", + "EntityFramework.InMemory.nuspec", + "lib/dotnet/EntityFramework.InMemory.dll", + "lib/dotnet/EntityFramework.InMemory.xml", + "lib/net45/EntityFramework.InMemory.dll", + "lib/net45/EntityFramework.InMemory.xml", + "repo.json" + ] + }, + "EntityFramework.Relational/7.0.0-beta6": { + "serviceable": true, + "sha512": "2CVE3UZjzXDRFYyfVL0lePnK1t2ZyLexNE88SiuUhY4mPC5SOWmDZ7mhLvtXeVJL/7PBpEmDy0qSDZRBpJ/Kiw==", + "files": [ + "EntityFramework.Relational.7.0.0-beta6.nupkg", + "EntityFramework.Relational.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Relational.nuspec", + "lib/dotnet/EntityFramework.Relational.dll", + "lib/dotnet/EntityFramework.Relational.xml", + "lib/net45/EntityFramework.Relational.dll", + "lib/net45/EntityFramework.Relational.xml", + "repo.json" + ] + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "serviceable": true, + "sha512": "69BvxKYVxgO/LK5YTKo9iuK4rt2/ystXVWdHfl3JaZ8DASB+UTacNNDDYeHuo2ZqQCv523AZSReuBGZ5reGBOg==", + "files": [ + "EntityFramework.SqlServer.7.0.0-beta6.nupkg", + "EntityFramework.SqlServer.7.0.0-beta6.nupkg.sha512", + "EntityFramework.SqlServer.nuspec", + "lib/dnxcore50/EntityFramework.SqlServer.dll", + "lib/dnxcore50/EntityFramework.SqlServer.xml", + "lib/net45/EntityFramework.SqlServer.dll", + "lib/net45/EntityFramework.SqlServer.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.AspNet.Razor/4.0.0-beta6": { + "serviceable": true, + "sha512": "GkdomN9ySGxL9FqgD8pdxxljGWvIFOyRPKzbLe+XseKDfpP9YNzkX2+oD2TLcwCl/O7bJcX2F7k0Zlf96fMpfw==", + "files": [ + "lib/dnx451/Microsoft.AspNet.Razor.dll", + "lib/dnx451/Microsoft.AspNet.Razor.xml", + "lib/dnxcore50/Microsoft.AspNet.Razor.dll", + "lib/dnxcore50/Microsoft.AspNet.Razor.xml", + "lib/net45/Microsoft.AspNet.Razor.dll", + "lib/net45/Microsoft.AspNet.Razor.xml", + "Microsoft.AspNet.Razor.4.0.0-beta6.nupkg", + "Microsoft.AspNet.Razor.4.0.0-beta6.nupkg.sha512", + "Microsoft.AspNet.Razor.nuspec", + "repo.json" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/1.0.0": { + "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.0.0": { + "sha512": "MhxsY8N9veim57uXqcRCJb7X9xZoWhMDU4/EyIqNkS7qfRsLxrzELSpjp6NjFkISZElvwIV2Ehi3UxyJui/gPw==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml", + "Microsoft.CodeAnalysis.Common.1.0.0.nupkg", + "Microsoft.CodeAnalysis.Common.1.0.0.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.0.0": { + "sha512": "KZ70r7EF+Dn8qp2p1CiBJGVoIG6el7Q9cLhnXuq+3oLcnMvUk2XzimB36AgO/Qg/liqRzf992WmFWhwqZSaIEg==", + "files": [ + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml", + "Microsoft.CodeAnalysis.CSharp.1.0.0.nupkg", + "Microsoft.CodeAnalysis.CSharp.1.0.0.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta5": { + "sha512": "sZIlSWm9r2CFDI5JB21lKwa8Hq7DZPBYx3LcBnuxZnhSh2AwrhrS88YUZSMP6QCV+PHMwj0udTdnS1eZ2DbM7w==", + "files": [ + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.xml", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.xml", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.CommandLineUtils.Sources.nuspec", + "shared/AnsiConsole.cs", + "shared/CommandArgument.cs", + "shared/CommandLineApplication.cs", + "shared/CommandOption.cs", + "shared/CommandOptionType.cs" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "w4Cwg6jgPd3XFGOgBGU3GVGVAwUcMglSDTlI23M8uI7yhDRSDbxZ2HPbjTEBMoj+IYdkfunZWFdA67tdk8L8Tg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta6": { + "sha512": "+y/7JAz5lC3cmxeNe88Bi80jw6gA2f092y7vk8J6GXOWcUV+I3QoBl0p2Hne5T2YDfZALtzuyVGqsXIaM1X93A==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Roslyn/1.0.0-beta6": { + "serviceable": true, + "sha512": "P15pRq5zhTX6VB3yKJATfHf9/QpLSJZRnof81fj0BlEx0sTZdYVojbd1FSLKaG8aKb0B82TZrwk49UqIsKvSMA==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.xml", + "Microsoft.Framework.Runtime.Roslyn.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Roslyn.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Roslyn.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Roslyn.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "gEHCvzynTJl20HUNR0Ag2K5i07oQUk+XIakcagbS6dsz7SQO2YFPmCoxUAp4puqjfsb4XZ8koZHQfLsEDGJd2A==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Roslyn.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Roslyn.Abstractions.xml", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Roslyn.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Moq/4.2.1312.1622": { + "sha512": "mPAjm1Kv9jX745D3hEYDBycRT0T8gnAJE2dutbfP9meyHiRrCgQarHajEvKh5SMKM1D3RcHGr/Pg3JJEtKhu9Q==", + "files": [ + "lib/net35/Moq.dll", + "lib/net35/Moq.xml", + "lib/net40/Moq.dll", + "lib/net40/Moq.xml", + "lib/sl4/Moq.Silverlight.dll", + "lib/sl4/Moq.Silverlight.xml", + "Moq.4.2.1312.1622.nupkg", + "Moq.4.2.1312.1622.nupkg.sha512", + "Moq.nuspec" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.21": { + "serviceable": true, + "sha512": "CAhcY0EJFLXfxo5YRV/ytkTOeTBho8zKjLu+9LvEI5NIVmanp1yMUzYQdjvXpHbyV0Qt1KuLXcTCc9t9FVH3Wg==", + "files": [ + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "License-Stable.rtf", + "System.Reflection.Metadata.1.0.21.nupkg", + "System.Reflection.Metadata.1.0.21.nupkg.sha512", + "System.Reflection.Metadata.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "xunit.abstractions/2.0.0": { + "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0.nupkg", + "xunit.abstractions.2.0.0.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.1.0-beta3-build3029": { + "sha512": "AMS7Fv77DayXVRCBMmVEDwOXPcbxk8dCBA/iACsve+6+UQqopMtNyAynyIcXPFRK/peeitUKID4ChOXWisJmUw==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.1.0-beta3-build3029.nupkg", + "xunit.assert.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "sha512": "lsPro5U3NLasHI/RwqjKzXiRlh9N0IOlR3cluwXYVtihXbGtySeSnU/Fh5MTcWYxh+MVpoNop5zDD0/A2nrHsA==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "sha512": "WuUYamK4RHrHxihvNuX7NkryMhQrpH1+ziJ/mPIQbm18zevSgre8BwUuVZvmLZa8uVob3xS4dvAah2+HCgLiXg==", + "files": [ + "lib/dnx451/xunit.execution.dnx.dll", + "lib/dnx451/xunit.execution.dnx.pdb", + "lib/dnx451/xunit.execution.dnx.xml", + "lib/dnxcore50/xunit.execution.dnx.dll", + "lib/dnxcore50/xunit.execution.dnx.pdb", + "lib/dnxcore50/xunit.execution.dnx.xml", + "lib/monoandroid/xunit.execution.MonoAndroid.dll", + "lib/monoandroid/xunit.execution.MonoAndroid.pdb", + "lib/monoandroid/xunit.execution.MonoAndroid.xml", + "lib/monotouch/xunit.execution.MonoTouch.dll", + "lib/monotouch/xunit.execution.MonoTouch.pdb", + "lib/monotouch/xunit.execution.MonoTouch.xml", + "lib/net45/xunit.execution.desktop.dll", + "lib/net45/xunit.execution.desktop.pdb", + "lib/net45/xunit.execution.desktop.xml", + "lib/portable-wpa81+win81/xunit.execution.universal.dll", + "lib/portable-wpa81+win81/xunit.execution.universal.pdb", + "lib/portable-wpa81+win81/xunit.execution.universal.pri", + "lib/portable-wpa81+win81/xunit.execution.universal.xml", + "lib/wp8/xunit.execution.wp8.dll", + "lib/wp8/xunit.execution.wp8.pdb", + "lib/wp8/xunit.execution.wp8.xml", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.xml", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "sha512": "R6cvKy3mb8QjMxiTHqljsgwf424jYLbU07Ao0NcNHcRMT2OR+a2ldE6WdECiDMseYz/vuIaFQ6ebYRKEfMI/1A==", + "files": [ + "app/project.json", + "app/xunit", + "app/xunit.cmd", + "lib/dnx451/xunit.runner.dnx.dll", + "lib/dnx451/xunit.runner.dnx.xml", + "lib/dnxcore50/xunit.runner.dnx.dll", + "lib/dnxcore50/xunit.runner.dnx.xml", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg.sha512", + "xunit.runner.dnx.nuspec" + ] + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "sha512": "o+hiJTewV+4cA2GoHgbNC/FATjKxo2Z6PPeIdIfc7qysvYtu33POYUdo5XAqlRD9BQ7ojc8t/NOyZg/Qd9kjAg==", + "files": [ + "lib/dnx451/xunit.runner.reporters.dnx.dll", + "lib/dnxcore50/xunit.runner.reporters.dnx.dll", + "lib/net45/xunit.runner.reporters.desktop.dll", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.reporters.nuspec" + ] + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "sha512": "cm5lVNYtypOLgu6Vnd30UWPVNrcILzWmSul7tFrW/xT+ZjPYSES7kvYc80rKAUWXQl/awglhc5IMtAbHJi4abg==", + "files": [ + "lib/dnx451/xunit.runner.utility.dnx.dll", + "lib/dnx451/xunit.runner.utility.dnx.pdb", + "lib/dnx451/xunit.runner.utility.dnx.xml", + "lib/dnxcore50/xunit.runner.utility.dnx.dll", + "lib/dnxcore50/xunit.runner.utility.dnx.pdb", + "lib/dnxcore50/xunit.runner.utility.dnx.xml", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.dll", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.pdb", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.xml", + "lib/monotouch/xunit.runner.utility.MonoTouch.dll", + "lib/monotouch/xunit.runner.utility.MonoTouch.pdb", + "lib/monotouch/xunit.runner.utility.MonoTouch.xml", + "lib/net35/xunit.runner.utility.desktop.dll", + "lib/net35/xunit.runner.utility.desktop.pdb", + "lib/net35/xunit.runner.utility.desktop.xml", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.dll", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pdb", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pri", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.xml", + "lib/wp8/xunit.runner.utility.wp8.dll", + "lib/wp8/xunit.runner.utility.wp8.pdb", + "lib/wp8/xunit.runner.utility.wp8.xml", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.xml", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "EntityFramework.Core.Tests >= 1.0.0", + "EntityFramework.SqlServer.Design >= 7.0.0-beta6" + ], + ".NETFramework,Version=v4.6": [], + "DNX,Version=v4.5.1": [] + } +} \ No newline at end of file diff --git a/test/EntityFramework.SqlServer.FunctionalTests/project.json b/test/EntityFramework.SqlServer.FunctionalTests/project.json index 626a74d87d6..73d216fc4e7 100644 --- a/test/EntityFramework.SqlServer.FunctionalTests/project.json +++ b/test/EntityFramework.SqlServer.FunctionalTests/project.json @@ -1,14 +1,14 @@ { - "dependencies": { - "EntityFramework.Relational.FunctionalTests": "7.0.0-*", - "EntityFramework.SqlServer": "7.0.0-*" - }, - "commands": { - "test": "xunit.runner.dnx" - }, - "frameworks": { - "net46": { }, - "dnx451": { }, - "dnxcore50": { } - } -} + "dependencies": { + "EntityFramework.Relational.FunctionalTests": "7.0.0-beta6", + "EntityFramework.SqlServer": "7.0.0-beta6" + }, + "commands": { + "test": "xunit.runner.dnx" + }, + "frameworks": { + "net46": {}, + "dnx451": {}, + "dnxcore50": {} + } +} \ No newline at end of file diff --git a/test/EntityFramework.SqlServer.FunctionalTests/project.lock.json b/test/EntityFramework.SqlServer.FunctionalTests/project.lock.json new file mode 100644 index 00000000000..345999d0ca0 --- /dev/null +++ b/test/EntityFramework.SqlServer.FunctionalTests/project.lock.json @@ -0,0 +1,4974 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.6": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.SqlServer.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/net45/xunit.execution.desktop.dll": {} + }, + "runtime": { + "lib/net45/xunit.execution.desktop.dll": {} + } + } + }, + "DNX,Version=v4.5.1": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.ComponentModel.DataAnnotations", + "System.Core", + "System.Diagnostics.Debug", + "System.Diagnostics.Tools", + "System.Globalization", + "System.Linq", + "System.Linq.Expressions", + "System.Linq.Queryable", + "System.ObjectModel", + "System.Reflection", + "System.Reflection.Extensions", + "System.Resources.ResourceManager", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading" + ], + "compile": { + "lib/dnx451/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dnx451/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.SqlServer.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "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.CommandLineUtils.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnx451/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.ObjectModel", + "System.Reflection", + "System.Runtime", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Collections.Immutable": "1.1.37-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.ComponentModel.Annotations": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Queryable": "4.0.0-beta-23109", + "System.ObjectModel": "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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "compile": { + "lib/dotnet/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6", + "Microsoft.CSharp": "4.0.0-beta-23109", + "System.Data.Common": "4.0.0-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Relational.dll": {} + } + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6", + "System.Data.SqlClient": "4.0.0-beta-23109", + "System.Text.Encoding.CodePages": "4.0.0-beta-23109", + "System.Threading.Thread": "4.0.0-beta-23109" + }, + "compile": { + "lib/dnxcore50/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/dnxcore50/EntityFramework.SqlServer.dll": {} + } + }, + "Ix-Async/1.2.4": { + "compile": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + } + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Dynamic.Runtime": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.10-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.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Linq": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.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.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Dynamic.Runtime": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Resources.ReaderWriter": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Threading.Timer": "4.0.0-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019", + "System.Xml.XmlSerializer": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.AppContext": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Loader": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Process": "4.0.0-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.Sockets": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + } + }, + "System.AppContext/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tracing": "4.0.20-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Data.Common/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Data.Common.dll": {} + }, + "runtime": { + "lib/dotnet/System.Data.Common.dll": {} + } + }, + "System.Data.SqlClient/4.0.0-beta-23109": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23109", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.0-beta-23109", + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.Data.Common": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "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.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.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Security.Principal.Windows": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.CodePages": "4.0.0-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109", + "System.Threading.Thread": "4.0.0-beta-23109", + "System.Threading.ThreadPool": "4.0.0-beta-23109", + "System.Threading.Timer": "4.0.0-beta-23109", + "System.Xml.ReaderWriter": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Data.SqlClient.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Data.SqlClient.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Overlapped": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit": "4.0.0-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "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.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23109": { + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ReaderWriter.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ReaderWriter.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23109": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Security.Principal": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.0-beta-23109", + "System.Security.Claims": "4.0.0-beta-23109", + "System.Security.Principal": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.CodePages/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.Encoding.CodePages.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Xml.ReaderWriter": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XmlDocument": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnxcore50/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.0-beta-23019", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnxcore50/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Net.Http": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnxcore50/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnxcore50/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.utility.dnx.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "serviceable": true, + "sha512": "u4CXBQEmftJJD7U500i79xS2MwPyptOZLFqBAAwHVp7RuuAB0k2u9iFvdA2kgQZNhzkyooUTcS/+n4EPJalpaw==", + "files": [ + "EntityFramework.InMemory.7.0.0-beta6.nupkg", + "EntityFramework.InMemory.7.0.0-beta6.nupkg.sha512", + "EntityFramework.InMemory.nuspec", + "lib/dotnet/EntityFramework.InMemory.dll", + "lib/dotnet/EntityFramework.InMemory.xml", + "lib/net45/EntityFramework.InMemory.dll", + "lib/net45/EntityFramework.InMemory.xml", + "repo.json" + ] + }, + "EntityFramework.Relational/7.0.0-beta6": { + "serviceable": true, + "sha512": "2CVE3UZjzXDRFYyfVL0lePnK1t2ZyLexNE88SiuUhY4mPC5SOWmDZ7mhLvtXeVJL/7PBpEmDy0qSDZRBpJ/Kiw==", + "files": [ + "EntityFramework.Relational.7.0.0-beta6.nupkg", + "EntityFramework.Relational.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Relational.nuspec", + "lib/dotnet/EntityFramework.Relational.dll", + "lib/dotnet/EntityFramework.Relational.xml", + "lib/net45/EntityFramework.Relational.dll", + "lib/net45/EntityFramework.Relational.xml", + "repo.json" + ] + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "serviceable": true, + "sha512": "69BvxKYVxgO/LK5YTKo9iuK4rt2/ystXVWdHfl3JaZ8DASB+UTacNNDDYeHuo2ZqQCv523AZSReuBGZ5reGBOg==", + "files": [ + "EntityFramework.SqlServer.7.0.0-beta6.nupkg", + "EntityFramework.SqlServer.7.0.0-beta6.nupkg.sha512", + "EntityFramework.SqlServer.nuspec", + "lib/dnxcore50/EntityFramework.SqlServer.dll", + "lib/dnxcore50/EntityFramework.SqlServer.xml", + "lib/net45/EntityFramework.SqlServer.dll", + "lib/net45/EntityFramework.SqlServer.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "MO4Lu8aMS1vL4Omp/gIMl2hr4sdV1l99p6xhAExGnS3MlFEa5JYPDL5mpdeg/osDH+1gAhb11xMJTYP7Ya3cAA==", + "files": [ + "lib/dotnet/Microsoft.CSharp.dll", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg.sha512", + "Microsoft.CSharp.nuspec", + "ref/dotnet/de/Microsoft.CSharp.xml", + "ref/dotnet/es/Microsoft.CSharp.xml", + "ref/dotnet/fr/Microsoft.CSharp.xml", + "ref/dotnet/it/Microsoft.CSharp.xml", + "ref/dotnet/ja/Microsoft.CSharp.xml", + "ref/dotnet/ko/Microsoft.CSharp.xml", + "ref/dotnet/Microsoft.CSharp.dll", + "ref/dotnet/Microsoft.CSharp.xml", + "ref/dotnet/ru/Microsoft.CSharp.xml", + "ref/dotnet/zh-hans/Microsoft.CSharp.xml", + "ref/dotnet/zh-hant/Microsoft.CSharp.xml", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta5": { + "sha512": "sZIlSWm9r2CFDI5JB21lKwa8Hq7DZPBYx3LcBnuxZnhSh2AwrhrS88YUZSMP6QCV+PHMwj0udTdnS1eZ2DbM7w==", + "files": [ + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.xml", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.xml", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.CommandLineUtils.Sources.nuspec", + "shared/AnsiConsole.cs", + "shared/CommandArgument.cs", + "shared/CommandLineApplication.cs", + "shared/CommandOption.cs", + "shared/CommandOptionType.cs" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "GsSRwzgrK2WJHUyd83AtKEX+Hv8ecmnwerJzinTXNqddsI48ClaeAyBgUnvRh5e/R8zzfIFqSHD1iEXSOSjAgQ==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23109.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23109.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/de/Microsoft.Win32.Primitives.xml", + "ref/dotnet/es/Microsoft.Win32.Primitives.xml", + "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", + "ref/dotnet/it/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.AppContext/4.0.0-beta-23019": { + "sha512": "dtYrJWnRhdNNbuTQf8ZhL9FhR+zef7ExSEHwqCF7e3YTPcL3XhUF7SD4Ij2rF3DJNMWT/r/8dgAs/9mNmOD66w==", + "files": [ + "lib/DNXCore50/System.AppContext.dll", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "ref/dotnet/System.AppContext.dll", + "ref/net46/System.AppContext.dll", + "System.AppContext.4.0.0-beta-23019.nupkg", + "System.AppContext.4.0.0-beta-23019.nupkg.sha512", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "2/VX+2QEyyIpvGDzuIXX8V0vSl/Llt673DR48nNmeA6BoMuwL4Eu4F1Meh9fPp80nhcjifqVK8g7/UQDn/0PFw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23109.nupkg", + "System.Collections.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "fRXR5y4dg9zPovFpSQZkc6gnyMNlQJVQ8lKqPDPFSIelhqWxv2VyY87s5Vd9ViGwKrFwekDwCQFug9ny8qCHuA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Collections.Concurrent.xml", + "ref/dotnet/es/System.Collections.Concurrent.xml", + "ref/dotnet/fr/System.Collections.Concurrent.xml", + "ref/dotnet/it/System.Collections.Concurrent.xml", + "ref/dotnet/ja/System.Collections.Concurrent.xml", + "ref/dotnet/ko/System.Collections.Concurrent.xml", + "ref/dotnet/ru/System.Collections.Concurrent.xml", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/dotnet/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Z+VGG3YaL4PxuBn/Nbjul1OoaCBzvkylexTwIW6s8arj3c17XkCeJvZ1BIn66lzDpAQYMGZmv97UMT6OboRoVg==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/de/System.Collections.NonGeneric.xml", + "ref/dotnet/es/System.Collections.NonGeneric.xml", + "ref/dotnet/fr/System.Collections.NonGeneric.xml", + "ref/dotnet/it/System.Collections.NonGeneric.xml", + "ref/dotnet/ja/System.Collections.NonGeneric.xml", + "ref/dotnet/ko/System.Collections.NonGeneric.xml", + "ref/dotnet/ru/System.Collections.NonGeneric.xml", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", + "ref/net46/System.Collections.NonGeneric.dll", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "JFzHUvX28tQbud0c9AP+SFeOroBG9x7tgc0OYu0Z5nQotnIiwP5nHXq9DoK3N2y0MoRUt8jy2FwkRMAYgiQuNQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.ComponentModel.xml", + "ref/dotnet/es/System.ComponentModel.xml", + "ref/dotnet/fr/System.ComponentModel.xml", + "ref/dotnet/it/System.ComponentModel.xml", + "ref/dotnet/ja/System.ComponentModel.xml", + "ref/dotnet/ko/System.ComponentModel.xml", + "ref/dotnet/ru/System.ComponentModel.xml", + "ref/dotnet/System.ComponentModel.dll", + "ref/dotnet/System.ComponentModel.xml", + "ref/dotnet/zh-hans/System.ComponentModel.xml", + "ref/dotnet/zh-hant/System.ComponentModel.xml", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.0-beta-23109.nupkg", + "System.ComponentModel.4.0.0-beta-23109.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "tfq+u00KcRXrvtYS4v7Bi4NgfFXt0sx5IgqqgeWCOFtwhDTVWgL3XJN/lanFtANnG7+zVU3+B5mvjH1pblGHxg==", + "files": [ + "lib/dotnet/System.ComponentModel.Annotations.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ComponentModel.Annotations.xml", + "ref/dotnet/es/System.ComponentModel.Annotations.xml", + "ref/dotnet/fr/System.ComponentModel.Annotations.xml", + "ref/dotnet/it/System.ComponentModel.Annotations.xml", + "ref/dotnet/ja/System.ComponentModel.Annotations.xml", + "ref/dotnet/ko/System.ComponentModel.Annotations.xml", + "ref/dotnet/ru/System.ComponentModel.Annotations.xml", + "ref/dotnet/System.ComponentModel.Annotations.dll", + "ref/dotnet/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", + "ref/net46/_._", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg.sha512", + "System.ComponentModel.Annotations.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Data.Common/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "oWJT16F9TqEP1dQDNZUSuJ1gH17YyR8wTD+zfz03oflnAUWlyH2QM/px/X10GPZAn9Qz58EYR/maNzJIX9FSOA==", + "files": [ + "lib/dotnet/System.Data.Common.dll", + "lib/net46/System.Data.Common.dll", + "ref/dotnet/de/System.Data.Common.xml", + "ref/dotnet/es/System.Data.Common.xml", + "ref/dotnet/fr/System.Data.Common.xml", + "ref/dotnet/it/System.Data.Common.xml", + "ref/dotnet/ja/System.Data.Common.xml", + "ref/dotnet/ko/System.Data.Common.xml", + "ref/dotnet/ru/System.Data.Common.xml", + "ref/dotnet/System.Data.Common.dll", + "ref/dotnet/System.Data.Common.xml", + "ref/dotnet/zh-hans/System.Data.Common.xml", + "ref/dotnet/zh-hant/System.Data.Common.xml", + "ref/net46/System.Data.Common.dll", + "System.Data.Common.4.0.0-beta-23109.nupkg", + "System.Data.Common.4.0.0-beta-23109.nupkg.sha512", + "System.Data.Common.nuspec" + ] + }, + "System.Data.SqlClient/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "c56D/dcp+BS22hpnZs8zfUBA0PAs9ftJp7IYLY8b1or798Rl+oT5swf/R8bs2rbeG0cE4Dq7ixr0dm5YdANVxQ==", + "files": [ + "lib/DNXCore50/System.Data.SqlClient.dll", + "lib/net46/System.Data.SqlClient.dll", + "ref/dotnet/de/System.Data.SqlClient.xml", + "ref/dotnet/es/System.Data.SqlClient.xml", + "ref/dotnet/fr/System.Data.SqlClient.xml", + "ref/dotnet/it/System.Data.SqlClient.xml", + "ref/dotnet/ja/System.Data.SqlClient.xml", + "ref/dotnet/ko/System.Data.SqlClient.xml", + "ref/dotnet/ru/System.Data.SqlClient.xml", + "ref/dotnet/System.Data.SqlClient.dll", + "ref/dotnet/System.Data.SqlClient.xml", + "ref/dotnet/zh-hans/System.Data.SqlClient.xml", + "ref/dotnet/zh-hant/System.Data.SqlClient.xml", + "ref/net46/System.Data.SqlClient.dll", + "runtime.json", + "System.Data.SqlClient.4.0.0-beta-23109.nupkg", + "System.Data.SqlClient.4.0.0-beta-23109.nupkg.sha512", + "System.Data.SqlClient.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "woJsNwCtAqYac5zp+6Wy40HAp7kYr8zhaFvHl3gECjQf+VGeGYaHgDV1ATVcyMG1h6XvmX0wtmD5Qds51CRJoA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "sha512": "1vuXv89pElI0JeDhnXokMyy9VkLpkDFa+oU3selb5uhHfzVswH1etFBumZ0VKKvTOAnm8AS/3ZDXAVlRjywq3A==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Process.dll", + "lib/net46/System.Diagnostics.Process.dll", + "ref/dotnet/System.Diagnostics.Process.dll", + "ref/net46/System.Diagnostics.Process.dll", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Process.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6tFdP3p3SV6DZOagwW5ThfUF+zp5pUIyW4CY2K4B2RxV6HGVyY/8J2EuZGrcEP3wdO5fXnb9MmdOZa5Tn01Hmg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Diagnostics.Tools.xml", + "ref/dotnet/es/System.Diagnostics.Tools.xml", + "ref/dotnet/fr/System.Diagnostics.Tools.xml", + "ref/dotnet/it/System.Diagnostics.Tools.xml", + "ref/dotnet/ja/System.Diagnostics.Tools.xml", + "ref/dotnet/ko/System.Diagnostics.Tools.xml", + "ref/dotnet/ru/System.Diagnostics.Tools.xml", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/dotnet/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "sha512": "MZxMo9Skg9oZrJYwGpRfeOfrTfHxmTPWhj8XIXdIryfArzwG1FjZgzOrkWWcON0PdV9OywZYGly09nUCs/JdhA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.TraceSource.dll", + "lib/net46/System.Diagnostics.TraceSource.dll", + "ref/dotnet/System.Diagnostics.TraceSource.dll", + "ref/net46/System.Diagnostics.TraceSource.dll", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.TraceSource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "sNauLSBFewFLjULHeplEr7FCmmfPbcc1jfz1Mynjy445bYiP/IW1q9X14a//oV/uQG7p82S9qHyfPxoxmt3pxQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/de/System.Diagnostics.Tracing.xml", + "ref/dotnet/es/System.Diagnostics.Tracing.xml", + "ref/dotnet/fr/System.Diagnostics.Tracing.xml", + "ref/dotnet/it/System.Diagnostics.Tracing.xml", + "ref/dotnet/ja/System.Diagnostics.Tracing.xml", + "ref/dotnet/ko/System.Diagnostics.Tracing.xml", + "ref/dotnet/ru/System.Diagnostics.Tracing.xml", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "sha512": "yhXko8+R8fy0RERn6xQltYEhChBNyGEQgntwjHqNBc3x1M7wvg+Ye72Bh1QVQfnMIXZ0tG8XSrQs8hJe8KjYjg==", + "files": [ + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23109": { + "sha512": "l4QNrgLmC4KHGLcfriJ2EmsM2j18xefJzCnLU6YqVdBFaYzsJGwqmHyIr4nqw9DBjdWEtzdHLEbvpLeEay0ZWQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23109.nupkg", + "System.Globalization.4.0.10-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.IO/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "DVHSyfJO8mC9CpZFjjuaOWazALkWFnI6b/fqTQCjNe1dp2XasuvTRiV/qIOJB+uyDVex8sH8QMRUDS6ukimyLA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/de/System.IO.xml", + "ref/dotnet/es/System.IO.xml", + "ref/dotnet/fr/System.IO.xml", + "ref/dotnet/it/System.IO.xml", + "ref/dotnet/ja/System.IO.xml", + "ref/dotnet/ko/System.IO.xml", + "ref/dotnet/ru/System.IO.xml", + "ref/dotnet/System.IO.dll", + "ref/dotnet/System.IO.xml", + "ref/dotnet/zh-hans/System.IO.xml", + "ref/dotnet/zh-hant/System.IO.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23109.nupkg", + "System.IO.4.0.10-beta-23109.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._", + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "OusDe4B1/Q3BYY4QzNfztnyPPK9a1OGsQVZBg41C1bk8F2S3AOtXCx0GUwAfKbVxxS4dOdIgxWw1JN5m+IlpAA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/de/System.IO.FileSystem.xml", + "ref/dotnet/es/System.IO.FileSystem.xml", + "ref/dotnet/fr/System.IO.FileSystem.xml", + "ref/dotnet/it/System.IO.FileSystem.xml", + "ref/dotnet/ja/System.IO.FileSystem.xml", + "ref/dotnet/ko/System.IO.FileSystem.xml", + "ref/dotnet/ru/System.IO.FileSystem.xml", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.xml", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "1JFc6+hsLnlYgACgluhMi19zFkNruPgWoLDq30z7qMKgs3FZqShvXDZLTQ1Hk+cnenUoUU/8P8yRdmbdQaf4yg==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "sha512": "+xsD0H46/EB88848d9cHel2WVbUWlM/Y/k+tuY5lp2jXSwV8zMJ6F3TjMqeUZwWtUUavw+AN7D0a4ZoGVs/Rcw==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "cy+sQJW809QnFHIXt5Y/If45u362gwiNqHldnJS70l7VCjyR4Bo3UgZMZl+bowSupWxqXk69cwCQhRUyFu2hVw==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/de/System.Linq.Expressions.xml", + "ref/dotnet/es/System.Linq.Expressions.xml", + "ref/dotnet/fr/System.Linq.Expressions.xml", + "ref/dotnet/it/System.Linq.Expressions.xml", + "ref/dotnet/ja/System.Linq.Expressions.xml", + "ref/dotnet/ko/System.Linq.Expressions.xml", + "ref/dotnet/ru/System.Linq.Expressions.xml", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.xml", + "ref/dotnet/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet/zh-hant/System.Linq.Expressions.xml", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Mu6nIhw5k/zAMigeCh4aqma3kwXLoyPREVD6RxVPhGu2QJjAEeih0GWumoDjtdFp0B5Q6sYeakWDAds7NmzWQg==", + "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.0-beta-23019": { + "sha512": "8mt4X1eIjTMrKVINJuzuFYf7C4GrYFC+tlvc2zH5HtxKPpbFZamMUdJ19ORxZ9ds053aqQASdiha7eH86PN+eg==", + "files": [ + "lib/DNXCore50/System.Net.Http.dll", + "lib/net45/_._", + "lib/netcore50/System.Net.Http.dll", + "lib/win8/_._", + "ref/dotnet/System.Net.Http.dll", + "ref/net45/_._", + "ref/netcore50/System.Net.Http.dll", + "ref/win8/_._", + "System.Net.Http.4.0.0-beta-23019.nupkg", + "System.Net.Http.4.0.0-beta-23019.nupkg.sha512", + "System.Net.Http.nuspec" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._", + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "sha512": "4NWuSdsFSf21iJkd+NQaE2OwtNaKGdXIbBbQmfE43evHl6fUII38wwNnooWtF0avCEyU6BOdUTiwoZAUZyQwcA==", + "files": [ + "lib/DNXCore50/System.Net.Sockets.dll", + "ref/dotnet/System.Net.Sockets.dll", + "System.Net.Sockets.4.0.10-beta-23019.nupkg", + "System.Net.Sockets.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Sockets.nuspec" + ] + }, + "System.ObjectModel/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "mnrhXE8nT5mX/ndEJ5BsdLCgN6CofKiwQvr9Olsp/s3crY5/lXYM73N2bNSvsFcHD1o0XhaCOn18Vekv6SYTpg==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ObjectModel.xml", + "ref/dotnet/es/System.ObjectModel.xml", + "ref/dotnet/fr/System.ObjectModel.xml", + "ref/dotnet/it/System.ObjectModel.xml", + "ref/dotnet/ja/System.ObjectModel.xml", + "ref/dotnet/ko/System.ObjectModel.xml", + "ref/dotnet/ru/System.ObjectModel.xml", + "ref/dotnet/System.ObjectModel.dll", + "ref/dotnet/System.ObjectModel.xml", + "ref/dotnet/zh-hans/System.ObjectModel.xml", + "ref/dotnet/zh-hant/System.ObjectModel.xml", + "ref/net46/_._", + "System.ObjectModel.4.0.10-beta-23109.nupkg", + "System.ObjectModel.4.0.10-beta-23109.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "y6M7TxwDXBD2in5cCf+KzucZyx7YE7SJMcU24atzYnpwP2xFASUYCeI6NRg5bYcw2Do5HKBz+XdE9WiZrwpnFg==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23109.nupkg", + "System.Private.Uri.4.0.0-beta-23109.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23109": { + "sha512": "aeXO8gjPb46LaP727cXDcCZ2mZoMxguq2UhE25wJoO1Je8Q8D2JFonNk85oVlgXCdEM6XgrtRnsnhvj8PmTBNg==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/de/System.Reflection.xml", + "ref/dotnet/es/System.Reflection.xml", + "ref/dotnet/fr/System.Reflection.xml", + "ref/dotnet/it/System.Reflection.xml", + "ref/dotnet/ja/System.Reflection.xml", + "ref/dotnet/ko/System.Reflection.xml", + "ref/dotnet/ru/System.Reflection.xml", + "ref/dotnet/System.Reflection.dll", + "ref/dotnet/System.Reflection.xml", + "ref/dotnet/zh-hans/System.Reflection.xml", + "ref/dotnet/zh-hant/System.Reflection.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23109.nupkg", + "System.Reflection.4.0.10-beta-23109.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "sha512": "H8QtiSXFHNiQIPZe3PdNJPIjuH9O/A8+/52bw2RIKgV8rMrshmi2LufTvYCb+V5YPBFYWg2Yt8nRISEY4+uV5Q==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/de/System.Reflection.Emit.xml", + "ref/dotnet/es/System.Reflection.Emit.xml", + "ref/dotnet/fr/System.Reflection.Emit.xml", + "ref/dotnet/it/System.Reflection.Emit.xml", + "ref/dotnet/ja/System.Reflection.Emit.xml", + "ref/dotnet/ko/System.Reflection.Emit.xml", + "ref/dotnet/ru/System.Reflection.Emit.xml", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.xml", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "sha512": "tJO27blFXyvYwDLbK7GvgFC94XjeY6MnRitBI4w8LHfEc/gVdRmCC8gzkE8KEmkecnIWIt9VTSJ3p4lGgafKKA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/wp80/_._", + "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/net45/_._", + "ref/wp80/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "sXo3+qJ7TukCF/rDFYKjEog4iVb75dXJztu/lkvhMHgYnviPSbi9zg78FQUFhB6BOvntwnknrgNJhhtl3x9a7A==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Extensions.xml", + "ref/dotnet/es/System.Reflection.Extensions.xml", + "ref/dotnet/fr/System.Reflection.Extensions.xml", + "ref/dotnet/it/System.Reflection.Extensions.xml", + "ref/dotnet/ja/System.Reflection.Extensions.xml", + "ref/dotnet/ko/System.Reflection.Extensions.xml", + "ref/dotnet/ru/System.Reflection.Extensions.xml", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/dotnet/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "R5oBDNgUtSV9KTPCxwHWiTyryX/9mngnPbLWwFOEF5xcNd3Qlu6/3LiauGsIzGtXV8vOpRl9tfyIFy8t4ix4Gw==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Primitives.xml", + "ref/dotnet/es/System.Reflection.Primitives.xml", + "ref/dotnet/fr/System.Reflection.Primitives.xml", + "ref/dotnet/it/System.Reflection.Primitives.xml", + "ref/dotnet/ja/System.Reflection.Primitives.xml", + "ref/dotnet/ko/System.Reflection.Primitives.xml", + "ref/dotnet/ru/System.Reflection.Primitives.xml", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "lTuPMxeoT/Jqb1QtsIuSomLiJpQP3Y4DqqxLPncrMvLrejwdF25QSbhXdx5twgvBDqwSVL8wYtqiOqKe02u7FA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/de/System.Reflection.TypeExtensions.xml", + "ref/dotnet/es/System.Reflection.TypeExtensions.xml", + "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", + "ref/dotnet/it/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "sha512": "9J0+T+ChJ9rlYTcrJiTOLfTJHuHuenol1eOJgiF8yJK1rDozU2Wnex5kXus5Z8/SerMSCUofUOx4c2WYX/tNow==", + "files": [ + "lib/DNXCore50/System.Resources.ReaderWriter.dll", + "lib/net46/System.Resources.ReaderWriter.dll", + "ref/dotnet/System.Resources.ReaderWriter.dll", + "ref/net46/System.Resources.ReaderWriter.dll", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ReaderWriter.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "6usAb6nZEPKugl3z5JR/RZrouH5/340n3tM0lhRfxVE/k3B3Sfh/sHSPiAOorrZgGm4cIDDhXTCGJQSWYphu3g==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/de/System.Runtime.xml", + "ref/dotnet/es/System.Runtime.xml", + "ref/dotnet/fr/System.Runtime.xml", + "ref/dotnet/it/System.Runtime.xml", + "ref/dotnet/ja/System.Runtime.xml", + "ref/dotnet/ko/System.Runtime.xml", + "ref/dotnet/ru/System.Runtime.xml", + "ref/dotnet/System.Runtime.dll", + "ref/dotnet/System.Runtime.xml", + "ref/dotnet/zh-hans/System.Runtime.xml", + "ref/dotnet/zh-hant/System.Runtime.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23109.nupkg", + "System.Runtime.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "JkRMtSY5YFGhP9eY7ZFIj40Ha5lGOwSxrk90k0ZAuIFn6qEPNe0NKu/C8laV7Cqy4Lv5IYzkVUGrfOqg3MOG9A==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/de/System.Runtime.Extensions.xml", + "ref/dotnet/es/System.Runtime.Extensions.xml", + "ref/dotnet/fr/System.Runtime.Extensions.xml", + "ref/dotnet/it/System.Runtime.Extensions.xml", + "ref/dotnet/ja/System.Runtime.Extensions.xml", + "ref/dotnet/ko/System.Runtime.Extensions.xml", + "ref/dotnet/ru/System.Runtime.Extensions.xml", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "XfjBv5hxBDVXvgPzBXiMpHprnmd5trdBAG4o7DEi/3GPXIlety4G0sfmlxeiTr7njKr0wF4ERdLIfzPesS5PAw==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "fxRLTR5kbqOZuSeT5ggVBYc6HIEGmEwh+Uw1ijp2qD3yMiMPmxvtI5aP5t0yZHEmwUrB37lGB+oaPpcXLH5Feg==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/de/System.Runtime.InteropServices.xml", + "ref/dotnet/es/System.Runtime.InteropServices.xml", + "ref/dotnet/fr/System.Runtime.InteropServices.xml", + "ref/dotnet/it/System.Runtime.InteropServices.xml", + "ref/dotnet/ja/System.Runtime.InteropServices.xml", + "ref/dotnet/ko/System.Runtime.InteropServices.xml", + "ref/dotnet/ru/System.Runtime.InteropServices.xml", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "sha512": "YuxWBHBbvN5ILjno2DBjgW2NXQscfJFvIfQEOGHwChM5Q9//EO0LZfErH7fTk1n0IVcorDu/HTnkqr2NuK/t5w==", + "files": [ + "lib/DNXCore50/System.Runtime.Loader.dll", + "ref/dotnet/System.Runtime.Loader.dll", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Loader.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Security.Claims/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6oI/9RzVy/6AVHRzuSm9oOOm3O/iS+pWDby0YTuepAtW7aT1VZiYbar0Nzi7wUJLIE+EuUWgGUgVQni0inIUSw==", + "files": [ + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/de/System.Security.Claims.xml", + "ref/dotnet/es/System.Security.Claims.xml", + "ref/dotnet/fr/System.Security.Claims.xml", + "ref/dotnet/it/System.Security.Claims.xml", + "ref/dotnet/ja/System.Security.Claims.xml", + "ref/dotnet/ko/System.Security.Claims.xml", + "ref/dotnet/ru/System.Security.Claims.xml", + "ref/dotnet/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.xml", + "ref/dotnet/zh-hans/System.Security.Claims.xml", + "ref/dotnet/zh-hant/System.Security.Claims.xml", + "ref/net46/System.Security.Claims.dll", + "System.Security.Claims.4.0.0-beta-23109.nupkg", + "System.Security.Claims.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "j94G8UrhEtW+RigEzZkayd9fcT9v/J35/V+rGzm6vmRjLE4e12+jwFUqFC9ZowElO4ZqaCoBgxu7uogHRmrKbQ==", + "files": [ + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Security.Principal.xml", + "ref/dotnet/es/System.Security.Principal.xml", + "ref/dotnet/fr/System.Security.Principal.xml", + "ref/dotnet/it/System.Security.Principal.xml", + "ref/dotnet/ja/System.Security.Principal.xml", + "ref/dotnet/ko/System.Security.Principal.xml", + "ref/dotnet/ru/System.Security.Principal.xml", + "ref/dotnet/System.Security.Principal.dll", + "ref/dotnet/System.Security.Principal.xml", + "ref/dotnet/zh-hans/System.Security.Principal.xml", + "ref/dotnet/zh-hant/System.Security.Principal.xml", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Security.Principal.4.0.0-beta-23109.nupkg", + "System.Security.Principal.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "/u7MPH/6bERVU88hsQJFoxva/OnPcS5fUrzj8OWH016zKnUElOVq76GoUdghmN5HCAmRpjqmryvZLt8+b2mrjQ==", + "files": [ + "lib/DNXCore50/System.Security.Principal.Windows.dll", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/dotnet/de/System.Security.Principal.Windows.xml", + "ref/dotnet/es/System.Security.Principal.Windows.xml", + "ref/dotnet/fr/System.Security.Principal.Windows.xml", + "ref/dotnet/it/System.Security.Principal.Windows.xml", + "ref/dotnet/ja/System.Security.Principal.Windows.xml", + "ref/dotnet/ko/System.Security.Principal.Windows.xml", + "ref/dotnet/ru/System.Security.Principal.Windows.xml", + "ref/dotnet/System.Security.Principal.Windows.dll", + "ref/dotnet/System.Security.Principal.Windows.xml", + "ref/dotnet/zh-hans/System.Security.Principal.Windows.xml", + "ref/dotnet/zh-hant/System.Security.Principal.Windows.xml", + "ref/net46/System.Security.Principal.Windows.dll", + "System.Security.Principal.Windows.4.0.0-beta-23109.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23109.nupkg.sha512", + "System.Security.Principal.Windows.nuspec" + ] + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll", + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "sha512": "oymPt96KPPXO/Scxow+x8cKczVw0KXfExKTXQlwT+j3sS1j/JuV+rZq2sQ54fqOi2R4d9aFPESsoN830sA6VCw==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/de/System.Text.Encoding.xml", + "ref/dotnet/es/System.Text.Encoding.xml", + "ref/dotnet/fr/System.Text.Encoding.xml", + "ref/dotnet/it/System.Text.Encoding.xml", + "ref/dotnet/ja/System.Text.Encoding.xml", + "ref/dotnet/ko/System.Text.Encoding.xml", + "ref/dotnet/ru/System.Text.Encoding.xml", + "ref/dotnet/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "PoB/L0tth9mKUS1ky1LQVd+nniazNmnhbzmPZL+US+06QvQRhZlpZfUR+WN2ssWYpHFiL4Zt30lzf4qEiTBP4w==", + "files": [ + "lib/dotnet/System.Text.Encoding.CodePages.dll", + "ref/dotnet/de/System.Text.Encoding.CodePages.xml", + "ref/dotnet/es/System.Text.Encoding.CodePages.xml", + "ref/dotnet/fr/System.Text.Encoding.CodePages.xml", + "ref/dotnet/it/System.Text.Encoding.CodePages.xml", + "ref/dotnet/ja/System.Text.Encoding.CodePages.xml", + "ref/dotnet/ko/System.Text.Encoding.CodePages.xml", + "ref/dotnet/ru/System.Text.Encoding.CodePages.xml", + "ref/dotnet/System.Text.Encoding.CodePages.dll", + "ref/dotnet/System.Text.Encoding.CodePages.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.CodePages.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.CodePages.xml", + "System.Text.Encoding.CodePages.4.0.0-beta-23109.nupkg", + "System.Text.Encoding.CodePages.4.0.0-beta-23109.nupkg.sha512", + "System.Text.Encoding.CodePages.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "sha512": "F6GZqICZ654MsqVPCL8h+fvDZJmXnu1I1PYY9686yG+lbcZzs9aavqMUjv1Lu5wOdiTKnmn7LADZYzPD6y1p+w==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/de/System.Text.Encoding.Extensions.xml", + "ref/dotnet/es/System.Text.Encoding.Extensions.xml", + "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", + "ref/dotnet/it/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "F+tfzB34KhZnjS3ActdL57CQVD9oYGhAZm8AREL+KvbJTh1Y8/tlyCyI2xoH6KdJzIPcXC50yu4OkHNbpcutEw==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Text.RegularExpressions.xml", + "ref/dotnet/es/System.Text.RegularExpressions.xml", + "ref/dotnet/fr/System.Text.RegularExpressions.xml", + "ref/dotnet/it/System.Text.RegularExpressions.xml", + "ref/dotnet/ja/System.Text.RegularExpressions.xml", + "ref/dotnet/ko/System.Text.RegularExpressions.xml", + "ref/dotnet/ru/System.Text.RegularExpressions.xml", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/dotnet/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "TSViw+K20yh9DmwzZpvuCUc2m2ju1eVAJ10pTw2gB/aP4kkrX2nGf4A9BkwkxupPXFA2OtO9LbbEqdp4YbBnjQ==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/de/System.Threading.xml", + "ref/dotnet/es/System.Threading.xml", + "ref/dotnet/fr/System.Threading.xml", + "ref/dotnet/it/System.Threading.xml", + "ref/dotnet/ja/System.Threading.xml", + "ref/dotnet/ko/System.Threading.xml", + "ref/dotnet/ru/System.Threading.xml", + "ref/dotnet/System.Threading.dll", + "ref/dotnet/System.Threading.xml", + "ref/dotnet/zh-hans/System.Threading.xml", + "ref/dotnet/zh-hant/System.Threading.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23109.nupkg", + "System.Threading.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "IMVmv9x4lBiy+jz31dU7KT/aTDlKZabAEDFAxQOTv//v1RYu5XZXZLIiTZqyVUKxxHgB0PUnuSDl5VxUDKysfQ==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/de/System.Threading.Overlapped.xml", + "ref/dotnet/es/System.Threading.Overlapped.xml", + "ref/dotnet/fr/System.Threading.Overlapped.xml", + "ref/dotnet/it/System.Threading.Overlapped.xml", + "ref/dotnet/ja/System.Threading.Overlapped.xml", + "ref/dotnet/ko/System.Threading.Overlapped.xml", + "ref/dotnet/ru/System.Threading.Overlapped.xml", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "J7lBqLLy1A85KZUgFz0fS8u6BO+pnWun2OAkrNqcUQbgCiKDC9v92u9q6a6AB9znum+GCdzH3cyEftNtIVNd1Q==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/de/System.Threading.Tasks.xml", + "ref/dotnet/es/System.Threading.Tasks.xml", + "ref/dotnet/fr/System.Threading.Tasks.xml", + "ref/dotnet/it/System.Threading.Tasks.xml", + "ref/dotnet/ja/System.Threading.Tasks.xml", + "ref/dotnet/ko/System.Threading.Tasks.xml", + "ref/dotnet/ru/System.Threading.Tasks.xml", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.xml", + "ref/dotnet/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet/zh-hant/System.Threading.Tasks.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23109": { + "sha512": "pOob5Fz4cRJ/bfBs2+ehmS99VGCN5Ei2mf7bl17STagcDGHUZBAzVLz8Kamq0hwQGX2pCFkuUZH+2Ycdts2PSQ==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/de/System.Threading.Thread.xml", + "ref/dotnet/es/System.Threading.Thread.xml", + "ref/dotnet/fr/System.Threading.Thread.xml", + "ref/dotnet/it/System.Threading.Thread.xml", + "ref/dotnet/ja/System.Threading.Thread.xml", + "ref/dotnet/ko/System.Threading.Thread.xml", + "ref/dotnet/ru/System.Threading.Thread.xml", + "ref/dotnet/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.xml", + "ref/dotnet/zh-hans/System.Threading.Thread.xml", + "ref/dotnet/zh-hant/System.Threading.Thread.xml", + "ref/net46/System.Threading.Thread.dll", + "System.Threading.Thread.4.0.0-beta-23109.nupkg", + "System.Threading.Thread.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.0-beta-23109": { + "sha512": "m0IORsRdO5kQqdA3C1EGLvD3NPaAj+B0FaM0KnAj0Cxg53baGGmYpNwh6mPf4sB8Pl4VBUtVaxlLN18MuyNQKQ==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Threading.Timer.xml", + "ref/dotnet/es/System.Threading.Timer.xml", + "ref/dotnet/fr/System.Threading.Timer.xml", + "ref/dotnet/it/System.Threading.Timer.xml", + "ref/dotnet/ja/System.Threading.Timer.xml", + "ref/dotnet/ko/System.Threading.Timer.xml", + "ref/dotnet/ru/System.Threading.Timer.xml", + "ref/dotnet/System.Threading.Timer.dll", + "ref/dotnet/System.Threading.Timer.xml", + "ref/dotnet/zh-hans/System.Threading.Timer.xml", + "ref/dotnet/zh-hant/System.Threading.Timer.xml", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/win81/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.0-beta-23109.nupkg", + "System.Threading.Timer.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.0-beta-23019": { + "sha512": "YsRwtb9uO6N8ndtnHPVi0oXSd7MkIVWiRdIHGzyBQ2qwMrQedBRW7u6P1LWo9DDcloOhwqmS6/HinClygHhbNg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "License.rtf", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/win8/_._", + "System.Xml.XDocument.4.0.0-beta-23019.nupkg", + "System.Xml.XDocument.4.0.0-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "sha512": "b1SOLM9FhBCL4gW3OP5b/HV1JVb1hfsF4D4wBxyUIZMXcP3kbm4F+bYvOB0cSeJ1F8oVnCCGivSk1/aSEQ86XQ==", + "files": [ + "lib/dotnet/System.Xml.XmlDocument.dll", + "lib/net46/System.Xml.XmlDocument.dll", + "ref/dotnet/System.Xml.XmlDocument.dll", + "ref/net46/System.Xml.XmlDocument.dll", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg.sha512", + "System.Xml.XmlDocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "sha512": "BqXNr12cUj02qymL4Nhowcsfz840wLSMPfU0T8i0JGPPIx38txMwUA2pnrYWsYmDmyIgw7GGUhrjXz6WJpjgwg==", + "files": [ + "lib/DNXCore50/System.Xml.XmlSerializer.dll", + "lib/net46/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "ref/dotnet/System.Xml.XmlSerializer.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XmlSerializer.nuspec" + ] + }, + "xunit.abstractions/2.0.0": { + "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0.nupkg", + "xunit.abstractions.2.0.0.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.1.0-beta3-build3029": { + "sha512": "AMS7Fv77DayXVRCBMmVEDwOXPcbxk8dCBA/iACsve+6+UQqopMtNyAynyIcXPFRK/peeitUKID4ChOXWisJmUw==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.1.0-beta3-build3029.nupkg", + "xunit.assert.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "sha512": "lsPro5U3NLasHI/RwqjKzXiRlh9N0IOlR3cluwXYVtihXbGtySeSnU/Fh5MTcWYxh+MVpoNop5zDD0/A2nrHsA==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "sha512": "WuUYamK4RHrHxihvNuX7NkryMhQrpH1+ziJ/mPIQbm18zevSgre8BwUuVZvmLZa8uVob3xS4dvAah2+HCgLiXg==", + "files": [ + "lib/dnx451/xunit.execution.dnx.dll", + "lib/dnx451/xunit.execution.dnx.pdb", + "lib/dnx451/xunit.execution.dnx.xml", + "lib/dnxcore50/xunit.execution.dnx.dll", + "lib/dnxcore50/xunit.execution.dnx.pdb", + "lib/dnxcore50/xunit.execution.dnx.xml", + "lib/monoandroid/xunit.execution.MonoAndroid.dll", + "lib/monoandroid/xunit.execution.MonoAndroid.pdb", + "lib/monoandroid/xunit.execution.MonoAndroid.xml", + "lib/monotouch/xunit.execution.MonoTouch.dll", + "lib/monotouch/xunit.execution.MonoTouch.pdb", + "lib/monotouch/xunit.execution.MonoTouch.xml", + "lib/net45/xunit.execution.desktop.dll", + "lib/net45/xunit.execution.desktop.pdb", + "lib/net45/xunit.execution.desktop.xml", + "lib/portable-wpa81+win81/xunit.execution.universal.dll", + "lib/portable-wpa81+win81/xunit.execution.universal.pdb", + "lib/portable-wpa81+win81/xunit.execution.universal.pri", + "lib/portable-wpa81+win81/xunit.execution.universal.xml", + "lib/wp8/xunit.execution.wp8.dll", + "lib/wp8/xunit.execution.wp8.pdb", + "lib/wp8/xunit.execution.wp8.xml", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.xml", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "sha512": "R6cvKy3mb8QjMxiTHqljsgwf424jYLbU07Ao0NcNHcRMT2OR+a2ldE6WdECiDMseYz/vuIaFQ6ebYRKEfMI/1A==", + "files": [ + "app/project.json", + "app/xunit", + "app/xunit.cmd", + "lib/dnx451/xunit.runner.dnx.dll", + "lib/dnx451/xunit.runner.dnx.xml", + "lib/dnxcore50/xunit.runner.dnx.dll", + "lib/dnxcore50/xunit.runner.dnx.xml", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg.sha512", + "xunit.runner.dnx.nuspec" + ] + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "sha512": "o+hiJTewV+4cA2GoHgbNC/FATjKxo2Z6PPeIdIfc7qysvYtu33POYUdo5XAqlRD9BQ7ojc8t/NOyZg/Qd9kjAg==", + "files": [ + "lib/dnx451/xunit.runner.reporters.dnx.dll", + "lib/dnxcore50/xunit.runner.reporters.dnx.dll", + "lib/net45/xunit.runner.reporters.desktop.dll", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.reporters.nuspec" + ] + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "sha512": "cm5lVNYtypOLgu6Vnd30UWPVNrcILzWmSul7tFrW/xT+ZjPYSES7kvYc80rKAUWXQl/awglhc5IMtAbHJi4abg==", + "files": [ + "lib/dnx451/xunit.runner.utility.dnx.dll", + "lib/dnx451/xunit.runner.utility.dnx.pdb", + "lib/dnx451/xunit.runner.utility.dnx.xml", + "lib/dnxcore50/xunit.runner.utility.dnx.dll", + "lib/dnxcore50/xunit.runner.utility.dnx.pdb", + "lib/dnxcore50/xunit.runner.utility.dnx.xml", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.dll", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.pdb", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.xml", + "lib/monotouch/xunit.runner.utility.MonoTouch.dll", + "lib/monotouch/xunit.runner.utility.MonoTouch.pdb", + "lib/monotouch/xunit.runner.utility.MonoTouch.xml", + "lib/net35/xunit.runner.utility.desktop.dll", + "lib/net35/xunit.runner.utility.desktop.pdb", + "lib/net35/xunit.runner.utility.desktop.xml", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.dll", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pdb", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pri", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.xml", + "lib/wp8/xunit.runner.utility.wp8.dll", + "lib/wp8/xunit.runner.utility.wp8.pdb", + "lib/wp8/xunit.runner.utility.wp8.xml", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.xml", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "EntityFramework.Relational.FunctionalTests >= 7.0.0-beta6", + "EntityFramework.SqlServer >= 7.0.0-beta6" + ], + ".NETFramework,Version=v4.6": [], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [] + } +} \ No newline at end of file diff --git a/test/EntityFramework.SqlServer.Tests/project.json b/test/EntityFramework.SqlServer.Tests/project.json index 3a9bc15ed04..e4e18433800 100644 --- a/test/EntityFramework.SqlServer.Tests/project.json +++ b/test/EntityFramework.SqlServer.Tests/project.json @@ -1,13 +1,13 @@ { - "dependencies": { - "EntityFramework.Relational.Tests": "1.0.0", - "EntityFramework.SqlServer": "7.0.0-*" - }, - "commands": { - "test": "xunit.runner.dnx" - }, - "frameworks": { - "net46": { }, - "dnx451": { } - } -} + "dependencies": { + "EntityFramework.Relational.Tests": "1.0.0", + "EntityFramework.SqlServer": "7.0.0-beta6" + }, + "commands": { + "test": "xunit.runner.dnx" + }, + "frameworks": { + "net46": {}, + "dnx451": {} + } +} \ No newline at end of file diff --git a/test/EntityFramework.SqlServer.Tests/project.lock.json b/test/EntityFramework.SqlServer.Tests/project.lock.json new file mode 100644 index 00000000000..cb53ac9b6ae --- /dev/null +++ b/test/EntityFramework.SqlServer.Tests/project.lock.json @@ -0,0 +1,1856 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.6": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.SqlServer.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Moq/4.2.1312.1622": { + "compile": { + "lib/net40/Moq.dll": {} + }, + "runtime": { + "lib/net40/Moq.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/net45/xunit.execution.desktop.dll": {} + }, + "runtime": { + "lib/net45/xunit.execution.desktop.dll": {} + } + } + }, + "DNX,Version=v4.5.1": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.ComponentModel.DataAnnotations", + "System.Core", + "System.Diagnostics.Debug", + "System.Diagnostics.Tools", + "System.Globalization", + "System.Linq", + "System.Linq.Expressions", + "System.Linq.Queryable", + "System.ObjectModel", + "System.Reflection", + "System.Reflection.Extensions", + "System.Resources.ResourceManager", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading" + ], + "compile": { + "lib/dnx451/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dnx451/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Relational": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.SqlServer.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.SqlServer.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "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.CommandLineUtils.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Moq/4.2.1312.1622": { + "compile": { + "lib/net40/Moq.dll": {} + }, + "runtime": { + "lib/net40/Moq.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnx451/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.ObjectModel", + "System.Reflection", + "System.Runtime", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "serviceable": true, + "sha512": "u4CXBQEmftJJD7U500i79xS2MwPyptOZLFqBAAwHVp7RuuAB0k2u9iFvdA2kgQZNhzkyooUTcS/+n4EPJalpaw==", + "files": [ + "EntityFramework.InMemory.7.0.0-beta6.nupkg", + "EntityFramework.InMemory.7.0.0-beta6.nupkg.sha512", + "EntityFramework.InMemory.nuspec", + "lib/dotnet/EntityFramework.InMemory.dll", + "lib/dotnet/EntityFramework.InMemory.xml", + "lib/net45/EntityFramework.InMemory.dll", + "lib/net45/EntityFramework.InMemory.xml", + "repo.json" + ] + }, + "EntityFramework.Relational/7.0.0-beta6": { + "serviceable": true, + "sha512": "2CVE3UZjzXDRFYyfVL0lePnK1t2ZyLexNE88SiuUhY4mPC5SOWmDZ7mhLvtXeVJL/7PBpEmDy0qSDZRBpJ/Kiw==", + "files": [ + "EntityFramework.Relational.7.0.0-beta6.nupkg", + "EntityFramework.Relational.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Relational.nuspec", + "lib/dotnet/EntityFramework.Relational.dll", + "lib/dotnet/EntityFramework.Relational.xml", + "lib/net45/EntityFramework.Relational.dll", + "lib/net45/EntityFramework.Relational.xml", + "repo.json" + ] + }, + "EntityFramework.SqlServer/7.0.0-beta6": { + "serviceable": true, + "sha512": "69BvxKYVxgO/LK5YTKo9iuK4rt2/ystXVWdHfl3JaZ8DASB+UTacNNDDYeHuo2ZqQCv523AZSReuBGZ5reGBOg==", + "files": [ + "EntityFramework.SqlServer.7.0.0-beta6.nupkg", + "EntityFramework.SqlServer.7.0.0-beta6.nupkg.sha512", + "EntityFramework.SqlServer.nuspec", + "lib/dnxcore50/EntityFramework.SqlServer.dll", + "lib/dnxcore50/EntityFramework.SqlServer.xml", + "lib/net45/EntityFramework.SqlServer.dll", + "lib/net45/EntityFramework.SqlServer.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta5": { + "sha512": "sZIlSWm9r2CFDI5JB21lKwa8Hq7DZPBYx3LcBnuxZnhSh2AwrhrS88YUZSMP6QCV+PHMwj0udTdnS1eZ2DbM7w==", + "files": [ + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.xml", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.xml", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.CommandLineUtils.Sources.nuspec", + "shared/AnsiConsole.cs", + "shared/CommandArgument.cs", + "shared/CommandLineApplication.cs", + "shared/CommandOption.cs", + "shared/CommandOptionType.cs" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta5": { + "serviceable": true, + "sha512": "w8FtN1i6dcKxCEF3fX2CYNA9LfkQ+vpGqmGAzRJn1Xg3N+73rywlIl7ijZLgCHS8MH0XO8KqpUCVR05UtVvJPg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Moq/4.2.1312.1622": { + "sha512": "mPAjm1Kv9jX745D3hEYDBycRT0T8gnAJE2dutbfP9meyHiRrCgQarHajEvKh5SMKM1D3RcHGr/Pg3JJEtKhu9Q==", + "files": [ + "lib/net35/Moq.dll", + "lib/net35/Moq.xml", + "lib/net40/Moq.dll", + "lib/net40/Moq.xml", + "lib/sl4/Moq.Silverlight.dll", + "lib/sl4/Moq.Silverlight.xml", + "Moq.4.2.1312.1622.nupkg", + "Moq.4.2.1312.1622.nupkg.sha512", + "Moq.nuspec" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "xunit.abstractions/2.0.0": { + "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0.nupkg", + "xunit.abstractions.2.0.0.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.1.0-beta3-build3029": { + "sha512": "AMS7Fv77DayXVRCBMmVEDwOXPcbxk8dCBA/iACsve+6+UQqopMtNyAynyIcXPFRK/peeitUKID4ChOXWisJmUw==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.1.0-beta3-build3029.nupkg", + "xunit.assert.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "sha512": "lsPro5U3NLasHI/RwqjKzXiRlh9N0IOlR3cluwXYVtihXbGtySeSnU/Fh5MTcWYxh+MVpoNop5zDD0/A2nrHsA==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "sha512": "WuUYamK4RHrHxihvNuX7NkryMhQrpH1+ziJ/mPIQbm18zevSgre8BwUuVZvmLZa8uVob3xS4dvAah2+HCgLiXg==", + "files": [ + "lib/dnx451/xunit.execution.dnx.dll", + "lib/dnx451/xunit.execution.dnx.pdb", + "lib/dnx451/xunit.execution.dnx.xml", + "lib/dnxcore50/xunit.execution.dnx.dll", + "lib/dnxcore50/xunit.execution.dnx.pdb", + "lib/dnxcore50/xunit.execution.dnx.xml", + "lib/monoandroid/xunit.execution.MonoAndroid.dll", + "lib/monoandroid/xunit.execution.MonoAndroid.pdb", + "lib/monoandroid/xunit.execution.MonoAndroid.xml", + "lib/monotouch/xunit.execution.MonoTouch.dll", + "lib/monotouch/xunit.execution.MonoTouch.pdb", + "lib/monotouch/xunit.execution.MonoTouch.xml", + "lib/net45/xunit.execution.desktop.dll", + "lib/net45/xunit.execution.desktop.pdb", + "lib/net45/xunit.execution.desktop.xml", + "lib/portable-wpa81+win81/xunit.execution.universal.dll", + "lib/portable-wpa81+win81/xunit.execution.universal.pdb", + "lib/portable-wpa81+win81/xunit.execution.universal.pri", + "lib/portable-wpa81+win81/xunit.execution.universal.xml", + "lib/wp8/xunit.execution.wp8.dll", + "lib/wp8/xunit.execution.wp8.pdb", + "lib/wp8/xunit.execution.wp8.xml", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.xml", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "sha512": "R6cvKy3mb8QjMxiTHqljsgwf424jYLbU07Ao0NcNHcRMT2OR+a2ldE6WdECiDMseYz/vuIaFQ6ebYRKEfMI/1A==", + "files": [ + "app/project.json", + "app/xunit", + "app/xunit.cmd", + "lib/dnx451/xunit.runner.dnx.dll", + "lib/dnx451/xunit.runner.dnx.xml", + "lib/dnxcore50/xunit.runner.dnx.dll", + "lib/dnxcore50/xunit.runner.dnx.xml", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg.sha512", + "xunit.runner.dnx.nuspec" + ] + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "sha512": "o+hiJTewV+4cA2GoHgbNC/FATjKxo2Z6PPeIdIfc7qysvYtu33POYUdo5XAqlRD9BQ7ojc8t/NOyZg/Qd9kjAg==", + "files": [ + "lib/dnx451/xunit.runner.reporters.dnx.dll", + "lib/dnxcore50/xunit.runner.reporters.dnx.dll", + "lib/net45/xunit.runner.reporters.desktop.dll", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.reporters.nuspec" + ] + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "sha512": "cm5lVNYtypOLgu6Vnd30UWPVNrcILzWmSul7tFrW/xT+ZjPYSES7kvYc80rKAUWXQl/awglhc5IMtAbHJi4abg==", + "files": [ + "lib/dnx451/xunit.runner.utility.dnx.dll", + "lib/dnx451/xunit.runner.utility.dnx.pdb", + "lib/dnx451/xunit.runner.utility.dnx.xml", + "lib/dnxcore50/xunit.runner.utility.dnx.dll", + "lib/dnxcore50/xunit.runner.utility.dnx.pdb", + "lib/dnxcore50/xunit.runner.utility.dnx.xml", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.dll", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.pdb", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.xml", + "lib/monotouch/xunit.runner.utility.MonoTouch.dll", + "lib/monotouch/xunit.runner.utility.MonoTouch.pdb", + "lib/monotouch/xunit.runner.utility.MonoTouch.xml", + "lib/net35/xunit.runner.utility.desktop.dll", + "lib/net35/xunit.runner.utility.desktop.pdb", + "lib/net35/xunit.runner.utility.desktop.xml", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.dll", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pdb", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pri", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.xml", + "lib/wp8/xunit.runner.utility.wp8.dll", + "lib/wp8/xunit.runner.utility.wp8.pdb", + "lib/wp8/xunit.runner.utility.wp8.xml", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.xml", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "EntityFramework.Relational.Tests >= 1.0.0", + "EntityFramework.SqlServer >= 7.0.0-beta6" + ], + ".NETFramework,Version=v4.6": [], + "DNX,Version=v4.5.1": [] + } +} \ No newline at end of file diff --git a/test/EntityFramework.Sqlite.FunctionalTests/project.json b/test/EntityFramework.Sqlite.FunctionalTests/project.json index d0397c2209b..3e99e17a99d 100644 --- a/test/EntityFramework.Sqlite.FunctionalTests/project.json +++ b/test/EntityFramework.Sqlite.FunctionalTests/project.json @@ -1,14 +1,14 @@ { - "dependencies": { - "EntityFramework.Relational.FunctionalTests": "7.0.0-*", - "EntityFramework.Sqlite": "7.0.0-*" - }, - "commands": { - "test": "xunit.runner.dnx" - }, - "frameworks": { - "net46": { }, - "dnx451": { }, - "dnxcore50": { } - } -} + "dependencies": { + "EntityFramework.Relational.FunctionalTests": "7.0.0-beta6", + "EntityFramework.Sqlite": "7.0.0-beta6" + }, + "commands": { + "test": "xunit.runner.dnx" + }, + "frameworks": { + "net46": {}, + "dnx451": {}, + "dnxcore50": {} + } +} \ No newline at end of file diff --git a/test/EntityFramework.Sqlite.FunctionalTests/project.lock.json b/test/EntityFramework.Sqlite.FunctionalTests/project.lock.json new file mode 100644 index 00000000000..22a30c79f62 --- /dev/null +++ b/test/EntityFramework.Sqlite.FunctionalTests/project.lock.json @@ -0,0 +1,4822 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.6": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Data.Sqlite/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data" + ], + "compile": { + "lib/net45/Microsoft.Data.Sqlite.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Data.Sqlite.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/net45/xunit.execution.desktop.dll": {} + }, + "runtime": { + "lib/net45/xunit.execution.desktop.dll": {} + } + } + }, + "DNX,Version=v4.5.1": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.ComponentModel.DataAnnotations", + "System.Core", + "System.Diagnostics.Debug", + "System.Diagnostics.Tools", + "System.Globalization", + "System.Linq", + "System.Linq.Expressions", + "System.Linq.Queryable", + "System.ObjectModel", + "System.Reflection", + "System.Reflection.Extensions", + "System.Resources.ResourceManager", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading" + ], + "compile": { + "lib/dnx451/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dnx451/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Data.Sqlite/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data" + ], + "compile": { + "lib/dnx451/Microsoft.Data.Sqlite.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Data.Sqlite.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "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.CommandLineUtils.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnx451/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.ObjectModel", + "System.Reflection", + "System.Runtime", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + } + } + }, + "DNXCore,Version=v5.0": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Collections.Immutable": "1.1.37-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.ComponentModel.Annotations": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tools": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Queryable": "4.0.0-beta-23109", + "System.ObjectModel": "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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "compile": { + "lib/dotnet/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6", + "Microsoft.CSharp": "4.0.0-beta-23109", + "System.Data.Common": "4.0.0-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/dotnet/EntityFramework.Relational.dll": {} + } + }, + "Ix-Async/1.2.4": { + "compile": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll": {} + } + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Dynamic.Runtime": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.10-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.InteropServices": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Data.Sqlite/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6", + "System.AppContext": "4.0.0-beta-23109", + "System.Data.Common": "4.0.0-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Data.Sqlite.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Data.Sqlite.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections": "4.0.10-beta-23019", + "System.ComponentModel": "4.0.0-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Linq": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.Concurrent": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Linq.Expressions": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.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.Threading": "4.0.10-beta-23109" + }, + "compile": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.Dynamic.Runtime": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.IO.FileSystem.Watcher": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Resources.ReaderWriter": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019", + "System.Threading.Timer": "4.0.0-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.10-beta-23019", + "System.Xml.XmlSerializer": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "dependencies": { + "System.ComponentModel": "4.0.0-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.Reflection": "4.0.10-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "System.AppContext": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Runtime.Loader": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Process": "4.0.0-beta-23019", + "System.Diagnostics.TraceSource": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Net.Sockets": "4.0.10-beta-23019" + }, + "compile": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnxcore50/Microsoft.Framework.TestHost.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019" + }, + "compile": { + "ref/dotnet/Microsoft.Win32.Registry.dll": {} + }, + "runtime": { + "lib/DNXCore50/Microsoft.Win32.Registry.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll": {} + } + }, + "System.AppContext/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Diagnostics.Tracing": "4.0.20-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.ComponentModel/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.ComponentModel": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.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", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Console/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Console.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Console.dll": {} + } + }, + "System.Data.Common/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Collections.NonGeneric": "4.0.0-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Text.RegularExpressions": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Data.Common.dll": {} + }, + "runtime": { + "lib/dotnet/System.Data.Common.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Debug.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "Microsoft.Win32.Registry": "4.0.0-beta-23019", + "System.Collections": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019", + "System.Threading.Thread": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Process.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Process.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tools.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Diagnostics.TraceSource.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.TraceSource.dll": {} + } + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Diagnostics.Tracing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} + } + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Linq.Expressions": "4.0.10-beta-23019", + "System.ObjectModel": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Reflection.Emit": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Globalization.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Globalization.Calendars.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Globalization.Calendars.dll": {} + } + }, + "System.IO/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.Compression.dll": {} + } + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.IO": "4.0.10-beta-23109", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109", + "System.Runtime.InteropServices": "4.0.20-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109", + "System.Text.Encoding.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109", + "System.Threading.Overlapped": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.Watcher.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.dll": {} + }, + "runtime": { + "lib/dotnet/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.IO": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.ObjectModel": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit": "4.0.0-beta-23109", + "System.Reflection.Extensions": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Reflection.TypeExtensions": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Linq.Expressions.dll": {} + } + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "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.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.Compression": "4.0.0-beta-23019", + "System.Net.Primitives": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Http.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Http.dll": {} + } + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "dependencies": { + "System.Private.Networking": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Net.Sockets.dll": {} + } + }, + "System.ObjectModel/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Diagnostics.Debug": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.Networking/4.0.0-beta-23019": { + "dependencies": { + "Microsoft.Win32.Primitives": "4.0.0-beta-23019", + "System.Collections": "4.0.0-beta-23019", + "System.Collections.Concurrent": "4.0.0-beta-23019", + "System.Collections.NonGeneric": "4.0.0-beta-23019", + "System.ComponentModel.EventBasedAsync": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Diagnostics.Tracing": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.X509Certificates": "4.0.0-beta-23019", + "System.Security.Principal.Windows": "4.0.0-beta-23019", + "System.Security.SecureString": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019", + "System.Threading.Overlapped": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019", + "System.Threading.ThreadPool": "4.0.10-beta-23019" + }, + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Networking.dll": {} + } + }, + "System.Private.Uri/4.0.0-beta-23109": { + "compile": { + "ref/dnxcore50/_._": {} + }, + "runtime": { + "lib/DNXCore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "dependencies": { + "System.IO": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Emit.ILGeneration": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.Primitives.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Resources.ReaderWriter.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ReaderWriter.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23109", + "System.Reflection": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Resources.ResourceManager.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.0.20-beta-23109": { + "dependencies": { + "System.Private.Uri": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.dll": {} + } + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.20-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.Handles.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "dependencies": { + "System.Reflection": "4.0.0-beta-23109", + "System.Reflection.Primitives": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Runtime.Loader.dll": {} + } + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.Claims/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll": {} + } + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "dependencies": { + "System.Globalization": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Threading.Tasks": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Encryption.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll": {} + } + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll": {} + } + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.RandomNumberGenerator": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll": {} + } + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.RSA.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.RSA.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "dependencies": { + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Globalization": "4.0.0-beta-23019", + "System.Globalization.Calendars": "4.0.0-beta-23019", + "System.IO": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Runtime.Numerics": "4.0.0-beta-23019", + "System.Security.Cryptography.Encoding": "4.0.0-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Security.Cryptography.RSA": "4.0.0-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Security.Principal/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Principal.dll": {} + } + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.0-beta-23019", + "System.Diagnostics.Debug": "4.0.0-beta-23019", + "System.Reflection": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.Extensions": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019", + "System.Security.Claims": "4.0.0-beta-23019", + "System.Security.Principal": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.Principal.Windows.dll": {} + } + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Handles": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Security.Cryptography.Encryption": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Security.SecureString.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Security.SecureString.dll": {} + } + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Text.Encoding": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.Extensions.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "dependencies": { + "System.Collections": "4.0.10-beta-23109", + "System.Globalization": "4.0.10-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.20-beta-23109", + "System.Runtime.Extensions": "4.0.10-beta-23109", + "System.Threading": "4.0.10-beta-23109" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Threading.Tasks": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.dll": {} + } + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Handles": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Overlapped.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Overlapped.dll": {} + } + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23109" + }, + "compile": { + "ref/dotnet/System.Threading.Tasks.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Thread.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Thread.dll": {} + } + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019", + "System.Runtime.InteropServices": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.ThreadPool.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.ThreadPool.dll": {} + } + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "dependencies": { + "System.Runtime": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Threading.Timer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Threading.Timer.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.IO.FileSystem.Primitives": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Runtime.InteropServices": "4.0.20-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Text.Encoding.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading.Tasks": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.0-beta-23019": { + "dependencies": { + "System.IO": "4.0.0-beta-23019", + "System.Runtime": "4.0.0-beta-23019", + "System.Xml.ReaderWriter": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.Encoding": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "dependencies": { + "System.Collections": "4.0.10-beta-23019", + "System.Diagnostics.Debug": "4.0.10-beta-23019", + "System.Globalization": "4.0.10-beta-23019", + "System.IO": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Reflection.Extensions": "4.0.0-beta-23019", + "System.Reflection.Primitives": "4.0.0-beta-23019", + "System.Reflection.TypeExtensions": "4.0.0-beta-23019", + "System.Resources.ResourceManager": "4.0.0-beta-23019", + "System.Runtime": "4.0.20-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.ReaderWriter": "4.0.10-beta-23019", + "System.Xml.XmlDocument": "4.0.0-beta-23019" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/DNXCore50/System.Xml.XmlSerializer.dll": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnxcore50/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Console": "4.0.0-beta-23019", + "System.Diagnostics.Tools": "4.0.0-beta-23019", + "System.IO.FileSystem": "4.0.0-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.ObjectModel": "4.0.10-beta-23019", + "System.Reflection": "4.0.10-beta-23019", + "System.Runtime.Extensions": "4.0.10-beta-23019", + "System.Security.Cryptography.Hashing": "4.0.0-beta-23019", + "System.Security.Cryptography.Hashing.Algorithms": "4.0.0-beta-23019", + "System.Text.RegularExpressions": "4.0.10-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "System.Xml.XDocument": "4.0.0-beta-23019", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnxcore50/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "System.Collections": "4.0.10-beta-23019", + "System.Collections.Concurrent": "4.0.10-beta-23019", + "System.Linq": "4.0.0-beta-23019", + "System.Net.Http": "4.0.0-beta-23019", + "System.Threading": "4.0.10-beta-23019", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnxcore50/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnxcore50/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnxcore50/xunit.runner.utility.dnx.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "serviceable": true, + "sha512": "u4CXBQEmftJJD7U500i79xS2MwPyptOZLFqBAAwHVp7RuuAB0k2u9iFvdA2kgQZNhzkyooUTcS/+n4EPJalpaw==", + "files": [ + "EntityFramework.InMemory.7.0.0-beta6.nupkg", + "EntityFramework.InMemory.7.0.0-beta6.nupkg.sha512", + "EntityFramework.InMemory.nuspec", + "lib/dotnet/EntityFramework.InMemory.dll", + "lib/dotnet/EntityFramework.InMemory.xml", + "lib/net45/EntityFramework.InMemory.dll", + "lib/net45/EntityFramework.InMemory.xml", + "repo.json" + ] + }, + "EntityFramework.Relational/7.0.0-beta6": { + "serviceable": true, + "sha512": "2CVE3UZjzXDRFYyfVL0lePnK1t2ZyLexNE88SiuUhY4mPC5SOWmDZ7mhLvtXeVJL/7PBpEmDy0qSDZRBpJ/Kiw==", + "files": [ + "EntityFramework.Relational.7.0.0-beta6.nupkg", + "EntityFramework.Relational.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Relational.nuspec", + "lib/dotnet/EntityFramework.Relational.dll", + "lib/dotnet/EntityFramework.Relational.xml", + "lib/net45/EntityFramework.Relational.dll", + "lib/net45/EntityFramework.Relational.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.CSharp/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "MO4Lu8aMS1vL4Omp/gIMl2hr4sdV1l99p6xhAExGnS3MlFEa5JYPDL5mpdeg/osDH+1gAhb11xMJTYP7Ya3cAA==", + "files": [ + "lib/dotnet/Microsoft.CSharp.dll", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg", + "Microsoft.CSharp.4.0.0-beta-23109.nupkg.sha512", + "Microsoft.CSharp.nuspec", + "ref/dotnet/de/Microsoft.CSharp.xml", + "ref/dotnet/es/Microsoft.CSharp.xml", + "ref/dotnet/fr/Microsoft.CSharp.xml", + "ref/dotnet/it/Microsoft.CSharp.xml", + "ref/dotnet/ja/Microsoft.CSharp.xml", + "ref/dotnet/ko/Microsoft.CSharp.xml", + "ref/dotnet/Microsoft.CSharp.dll", + "ref/dotnet/Microsoft.CSharp.xml", + "ref/dotnet/ru/Microsoft.CSharp.xml", + "ref/dotnet/zh-hans/Microsoft.CSharp.xml", + "ref/dotnet/zh-hant/Microsoft.CSharp.xml", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._" + ] + }, + "Microsoft.Data.Sqlite/1.0.0-beta6": { + "serviceable": true, + "sha512": "7yyqsIahqnM+5/9To3vhoYFttNlvDea9ASAayxqN0DxzpMv9Sguty22Qj5yM2DPlY1AGLCGxl0B/Jayp/7ePNQ==", + "files": [ + "lib/dnx451/Microsoft.Data.Sqlite.dll", + "lib/dnx451/Microsoft.Data.Sqlite.xml", + "lib/dnxcore50/Microsoft.Data.Sqlite.dll", + "lib/dnxcore50/Microsoft.Data.Sqlite.xml", + "lib/dotnet/Microsoft.Data.Sqlite.dll", + "lib/dotnet/Microsoft.Data.Sqlite.xml", + "lib/net45/Microsoft.Data.Sqlite.dll", + "lib/net45/Microsoft.Data.Sqlite.xml", + "Microsoft.Data.Sqlite.1.0.0-beta6.nupkg", + "Microsoft.Data.Sqlite.1.0.0-beta6.nupkg.sha512", + "Microsoft.Data.Sqlite.nuspec", + "runtimes/win/native/x86/sqlite3.dll", + "runtimes/win10-arm/native/sqlite3.dll", + "runtimes/win10-x64/native/sqlite3.dll", + "runtimes/win10-x86/native/sqlite3.dll", + "runtimes/win-x86/native/sqlite3.dll" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta5": { + "sha512": "sZIlSWm9r2CFDI5JB21lKwa8Hq7DZPBYx3LcBnuxZnhSh2AwrhrS88YUZSMP6QCV+PHMwj0udTdnS1eZ2DbM7w==", + "files": [ + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.xml", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.xml", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.CommandLineUtils.Sources.nuspec", + "shared/AnsiConsole.cs", + "shared/CommandArgument.cs", + "shared/CommandLineApplication.cs", + "shared/CommandOption.cs", + "shared/CommandOptionType.cs" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "w4Cwg6jgPd3XFGOgBGU3GVGVAwUcMglSDTlI23M8uI7yhDRSDbxZ2HPbjTEBMoj+IYdkfunZWFdA67tdk8L8Tg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.0.0-beta-23019": { + "sha512": "NzGxumVaWmLlNTY6AzQsVHxJjWXCjDnVvXIS+eLKQHhIC43gp9vG7MHmb8qKCntJsXrhx5nVbmQRbZXis9ugkg==", + "files": [ + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/net46/Microsoft.Win32.Primitives.dll", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Primitives.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Primitives.nuspec", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/net46/Microsoft.Win32.Primitives.dll" + ] + }, + "Microsoft.Win32.Registry/4.0.0-beta-23019": { + "sha512": "tjjlSjJbXM2Z2EOh9Q/f7YKp4DyEaIlwsJEDLxxNsvIK/xkoAjXgJjhPT+qWBsgV7Jtx36m6qn7Cx/PTrp+EGQ==", + "files": [ + "lib/DNXCore50/Microsoft.Win32.Registry.dll", + "lib/net46/Microsoft.Win32.Registry.dll", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg", + "Microsoft.Win32.Registry.4.0.0-beta-23019.nupkg.sha512", + "Microsoft.Win32.Registry.nuspec", + "ref/dotnet/Microsoft.Win32.Registry.dll", + "ref/net46/Microsoft.Win32.Registry.dll" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.AppContext/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "kbBS5q5Qnk8C47zB0XLbi0BpQMx8IO1mQtKhU2zCriambR8aN+3BeelasL5SQBHc0CsOVr0ETCPh9zrzMnBdRQ==", + "files": [ + "lib/DNXCore50/System.AppContext.dll", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "ref/dotnet/de/System.AppContext.xml", + "ref/dotnet/es/System.AppContext.xml", + "ref/dotnet/fr/System.AppContext.xml", + "ref/dotnet/it/System.AppContext.xml", + "ref/dotnet/ja/System.AppContext.xml", + "ref/dotnet/ko/System.AppContext.xml", + "ref/dotnet/ru/System.AppContext.xml", + "ref/dotnet/System.AppContext.dll", + "ref/dotnet/System.AppContext.xml", + "ref/dotnet/zh-hans/System.AppContext.xml", + "ref/dotnet/zh-hant/System.AppContext.xml", + "ref/net46/System.AppContext.dll", + "System.AppContext.4.0.0-beta-23109.nupkg", + "System.AppContext.4.0.0-beta-23109.nupkg.sha512", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "2/VX+2QEyyIpvGDzuIXX8V0vSl/Llt673DR48nNmeA6BoMuwL4Eu4F1Meh9fPp80nhcjifqVK8g7/UQDn/0PFw==", + "files": [ + "lib/DNXCore50/System.Collections.dll", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.4.0.10-beta-23109.nupkg", + "System.Collections.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "fRXR5y4dg9zPovFpSQZkc6gnyMNlQJVQ8lKqPDPFSIelhqWxv2VyY87s5Vd9ViGwKrFwekDwCQFug9ny8qCHuA==", + "files": [ + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Collections.Concurrent.xml", + "ref/dotnet/es/System.Collections.Concurrent.xml", + "ref/dotnet/fr/System.Collections.Concurrent.xml", + "ref/dotnet/it/System.Collections.Concurrent.xml", + "ref/dotnet/ja/System.Collections.Concurrent.xml", + "ref/dotnet/ko/System.Collections.Concurrent.xml", + "ref/dotnet/ru/System.Collections.Concurrent.xml", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/dotnet/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", + "ref/net46/_._", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg", + "System.Collections.Concurrent.4.0.10-beta-23109.nupkg.sha512", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Z+VGG3YaL4PxuBn/Nbjul1OoaCBzvkylexTwIW6s8arj3c17XkCeJvZ1BIn66lzDpAQYMGZmv97UMT6OboRoVg==", + "files": [ + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/net46/System.Collections.NonGeneric.dll", + "ref/dotnet/de/System.Collections.NonGeneric.xml", + "ref/dotnet/es/System.Collections.NonGeneric.xml", + "ref/dotnet/fr/System.Collections.NonGeneric.xml", + "ref/dotnet/it/System.Collections.NonGeneric.xml", + "ref/dotnet/ja/System.Collections.NonGeneric.xml", + "ref/dotnet/ko/System.Collections.NonGeneric.xml", + "ref/dotnet/ru/System.Collections.NonGeneric.xml", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", + "ref/net46/System.Collections.NonGeneric.dll", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg", + "System.Collections.NonGeneric.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.ComponentModel/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "JFzHUvX28tQbud0c9AP+SFeOroBG9x7tgc0OYu0Z5nQotnIiwP5nHXq9DoK3N2y0MoRUt8jy2FwkRMAYgiQuNQ==", + "files": [ + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.ComponentModel.xml", + "ref/dotnet/es/System.ComponentModel.xml", + "ref/dotnet/fr/System.ComponentModel.xml", + "ref/dotnet/it/System.ComponentModel.xml", + "ref/dotnet/ja/System.ComponentModel.xml", + "ref/dotnet/ko/System.ComponentModel.xml", + "ref/dotnet/ru/System.ComponentModel.xml", + "ref/dotnet/System.ComponentModel.dll", + "ref/dotnet/System.ComponentModel.xml", + "ref/dotnet/zh-hans/System.ComponentModel.xml", + "ref/dotnet/zh-hant/System.ComponentModel.xml", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.4.0.0-beta-23109.nupkg", + "System.ComponentModel.4.0.0-beta-23109.nupkg.sha512", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.Annotations/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "tfq+u00KcRXrvtYS4v7Bi4NgfFXt0sx5IgqqgeWCOFtwhDTVWgL3XJN/lanFtANnG7+zVU3+B5mvjH1pblGHxg==", + "files": [ + "lib/dotnet/System.ComponentModel.Annotations.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ComponentModel.Annotations.xml", + "ref/dotnet/es/System.ComponentModel.Annotations.xml", + "ref/dotnet/fr/System.ComponentModel.Annotations.xml", + "ref/dotnet/it/System.ComponentModel.Annotations.xml", + "ref/dotnet/ja/System.ComponentModel.Annotations.xml", + "ref/dotnet/ko/System.ComponentModel.Annotations.xml", + "ref/dotnet/ru/System.ComponentModel.Annotations.xml", + "ref/dotnet/System.ComponentModel.Annotations.dll", + "ref/dotnet/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", + "ref/net46/_._", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg", + "System.ComponentModel.Annotations.4.0.10-beta-23109.nupkg.sha512", + "System.ComponentModel.Annotations.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10-beta-23019": { + "sha512": "DNXG9XZ9Ln+2Zu7F5E9xMXu9n9Ov3rKAq8+RJyw5hgHucVOT22ln+ll/aLlZx+ODkU0ULftEZbNsGKQ5h0jVMg==", + "files": [ + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/net46/_._", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/net46/_._", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg", + "System.ComponentModel.EventBasedAsync.4.0.10-beta-23019.nupkg.sha512", + "System.ComponentModel.EventBasedAsync.nuspec" + ] + }, + "System.Console/4.0.0-beta-23019": { + "sha512": "RuoqqvFoPFtGJXb8+yigoz8EmNIUFfrMvb1Ea6uMJbhd5nqCRvzjyyWBaDJBRNhVOCPVQldhU4q2rG2W2IfXDQ==", + "files": [ + "lib/DNXCore50/System.Console.dll", + "lib/net46/System.Console.dll", + "ref/dotnet/System.Console.dll", + "ref/net46/System.Console.dll", + "System.Console.4.0.0-beta-23019.nupkg", + "System.Console.4.0.0-beta-23019.nupkg.sha512", + "System.Console.nuspec" + ] + }, + "System.Data.Common/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "oWJT16F9TqEP1dQDNZUSuJ1gH17YyR8wTD+zfz03oflnAUWlyH2QM/px/X10GPZAn9Qz58EYR/maNzJIX9FSOA==", + "files": [ + "lib/dotnet/System.Data.Common.dll", + "lib/net46/System.Data.Common.dll", + "ref/dotnet/de/System.Data.Common.xml", + "ref/dotnet/es/System.Data.Common.xml", + "ref/dotnet/fr/System.Data.Common.xml", + "ref/dotnet/it/System.Data.Common.xml", + "ref/dotnet/ja/System.Data.Common.xml", + "ref/dotnet/ko/System.Data.Common.xml", + "ref/dotnet/ru/System.Data.Common.xml", + "ref/dotnet/System.Data.Common.dll", + "ref/dotnet/System.Data.Common.xml", + "ref/dotnet/zh-hans/System.Data.Common.xml", + "ref/dotnet/zh-hant/System.Data.Common.xml", + "ref/net46/System.Data.Common.dll", + "System.Data.Common.4.0.0-beta-23109.nupkg", + "System.Data.Common.4.0.0-beta-23109.nupkg.sha512", + "System.Data.Common.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "woJsNwCtAqYac5zp+6Wy40HAp7kYr8zhaFvHl3gECjQf+VGeGYaHgDV1ATVcyMG1h6XvmX0wtmD5Qds51CRJoA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.10-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.Process/4.0.0-beta-23019": { + "sha512": "1vuXv89pElI0JeDhnXokMyy9VkLpkDFa+oU3selb5uhHfzVswH1etFBumZ0VKKvTOAnm8AS/3ZDXAVlRjywq3A==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Process.dll", + "lib/net46/System.Diagnostics.Process.dll", + "ref/dotnet/System.Diagnostics.Process.dll", + "ref/net46/System.Diagnostics.Process.dll", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg", + "System.Diagnostics.Process.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.Process.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "6tFdP3p3SV6DZOagwW5ThfUF+zp5pUIyW4CY2K4B2RxV6HGVyY/8J2EuZGrcEP3wdO5fXnb9MmdOZa5Tn01Hmg==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Diagnostics.Tools.xml", + "ref/dotnet/es/System.Diagnostics.Tools.xml", + "ref/dotnet/fr/System.Diagnostics.Tools.xml", + "ref/dotnet/it/System.Diagnostics.Tools.xml", + "ref/dotnet/ja/System.Diagnostics.Tools.xml", + "ref/dotnet/ko/System.Diagnostics.Tools.xml", + "ref/dotnet/ru/System.Diagnostics.Tools.xml", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/dotnet/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Tools.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.0.0-beta-23019": { + "sha512": "MZxMo9Skg9oZrJYwGpRfeOfrTfHxmTPWhj8XIXdIryfArzwG1FjZgzOrkWWcON0PdV9OywZYGly09nUCs/JdhA==", + "files": [ + "lib/DNXCore50/System.Diagnostics.TraceSource.dll", + "lib/net46/System.Diagnostics.TraceSource.dll", + "ref/dotnet/System.Diagnostics.TraceSource.dll", + "ref/net46/System.Diagnostics.TraceSource.dll", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg", + "System.Diagnostics.TraceSource.4.0.0-beta-23019.nupkg.sha512", + "System.Diagnostics.TraceSource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "sNauLSBFewFLjULHeplEr7FCmmfPbcc1jfz1Mynjy445bYiP/IW1q9X14a//oV/uQG7p82S9qHyfPxoxmt3pxQ==", + "files": [ + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "ref/dotnet/de/System.Diagnostics.Tracing.xml", + "ref/dotnet/es/System.Diagnostics.Tracing.xml", + "ref/dotnet/fr/System.Diagnostics.Tracing.xml", + "ref/dotnet/it/System.Diagnostics.Tracing.xml", + "ref/dotnet/ja/System.Diagnostics.Tracing.xml", + "ref/dotnet/ko/System.Diagnostics.Tracing.xml", + "ref/dotnet/ru/System.Diagnostics.Tracing.xml", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg", + "System.Diagnostics.Tracing.4.0.20-beta-23109.nupkg.sha512", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.10-beta-23019": { + "sha512": "yhXko8+R8fy0RERn6xQltYEhChBNyGEQgntwjHqNBc3x1M7wvg+Ye72Bh1QVQfnMIXZ0tG8XSrQs8hJe8KjYjg==", + "files": [ + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg", + "System.Dynamic.Runtime.4.0.10-beta-23019.nupkg.sha512", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization/4.0.10-beta-23109": { + "sha512": "l4QNrgLmC4KHGLcfriJ2EmsM2j18xefJzCnLU6YqVdBFaYzsJGwqmHyIr4nqw9DBjdWEtzdHLEbvpLeEay0ZWQ==", + "files": [ + "lib/DNXCore50/System.Globalization.dll", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.4.0.10-beta-23109.nupkg", + "System.Globalization.4.0.10-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0-beta-23019": { + "sha512": "jzo2QLUzpaHqmDWA0kXJqEjoLiO9/OdDx910fao+OKDsKrFW9TFX9bk47zq4VE2lcoP1dUa+DiAz2yz62XTr7g==", + "files": [ + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/net46/System.Globalization.Calendars.dll", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg", + "System.Globalization.Calendars.4.0.0-beta-23019.nupkg.sha512", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.IO/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "DVHSyfJO8mC9CpZFjjuaOWazALkWFnI6b/fqTQCjNe1dp2XasuvTRiV/qIOJB+uyDVex8sH8QMRUDS6ukimyLA==", + "files": [ + "lib/DNXCore50/System.IO.dll", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "ref/dotnet/de/System.IO.xml", + "ref/dotnet/es/System.IO.xml", + "ref/dotnet/fr/System.IO.xml", + "ref/dotnet/it/System.IO.xml", + "ref/dotnet/ja/System.IO.xml", + "ref/dotnet/ko/System.IO.xml", + "ref/dotnet/ru/System.IO.xml", + "ref/dotnet/System.IO.dll", + "ref/dotnet/System.IO.xml", + "ref/dotnet/zh-hans/System.IO.xml", + "ref/dotnet/zh-hant/System.IO.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.4.0.10-beta-23109.nupkg", + "System.IO.4.0.10-beta-23109.nupkg.sha512", + "System.IO.nuspec" + ] + }, + "System.IO.Compression/4.0.0-beta-23019": { + "sha512": "WpKuk7P9BIdyWYoslAahQJtyaMgCMZZx7MF+VeuUZaiLtvKR9c5Sx3rXviDpVzAQH7/6yuuu+FNP/k+546Qd5g==", + "files": [ + "lib/dotnet/System.IO.Compression.dll", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "ref/dotnet/System.IO.Compression.dll", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/win8/_._", + "runtime.json", + "System.IO.Compression.4.0.0-beta-23019.nupkg", + "System.IO.Compression.4.0.0-beta-23019.nupkg.sha512", + "System.IO.Compression.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "OusDe4B1/Q3BYY4QzNfztnyPPK9a1OGsQVZBg41C1bk8F2S3AOtXCx0GUwAfKbVxxS4dOdIgxWw1JN5m+IlpAA==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "ref/dotnet/de/System.IO.FileSystem.xml", + "ref/dotnet/es/System.IO.FileSystem.xml", + "ref/dotnet/fr/System.IO.FileSystem.xml", + "ref/dotnet/it/System.IO.FileSystem.xml", + "ref/dotnet/ja/System.IO.FileSystem.xml", + "ref/dotnet/ko/System.IO.FileSystem.xml", + "ref/dotnet/ru/System.IO.FileSystem.xml", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.xml", + "ref/net46/System.IO.FileSystem.dll", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "1JFc6+hsLnlYgACgluhMi19zFkNruPgWoLDq30z7qMKgs3FZqShvXDZLTQ1Hk+cnenUoUU/8P8yRdmbdQaf4yg==", + "files": [ + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg", + "System.IO.FileSystem.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.FileSystem.Watcher/4.0.0-beta-23019": { + "sha512": "+xsD0H46/EB88848d9cHel2WVbUWlM/Y/k+tuY5lp2jXSwV8zMJ6F3TjMqeUZwWtUUavw+AN7D0a4ZoGVs/Rcw==", + "files": [ + "lib/DNXCore50/System.IO.FileSystem.Watcher.dll", + "lib/net46/System.IO.FileSystem.Watcher.dll", + "ref/dotnet/System.IO.FileSystem.Watcher.dll", + "ref/net46/System.IO.FileSystem.Watcher.dll", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg", + "System.IO.FileSystem.Watcher.4.0.0-beta-23019.nupkg.sha512", + "System.IO.FileSystem.Watcher.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "cy+sQJW809QnFHIXt5Y/If45u362gwiNqHldnJS70l7VCjyR4Bo3UgZMZl+bowSupWxqXk69cwCQhRUyFu2hVw==", + "files": [ + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "ref/dotnet/de/System.Linq.Expressions.xml", + "ref/dotnet/es/System.Linq.Expressions.xml", + "ref/dotnet/fr/System.Linq.Expressions.xml", + "ref/dotnet/it/System.Linq.Expressions.xml", + "ref/dotnet/ja/System.Linq.Expressions.xml", + "ref/dotnet/ko/System.Linq.Expressions.xml", + "ref/dotnet/ru/System.Linq.Expressions.xml", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.xml", + "ref/dotnet/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet/zh-hant/System.Linq.Expressions.xml", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg", + "System.Linq.Expressions.4.0.10-beta-23109.nupkg.sha512", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Linq.Queryable/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "Mu6nIhw5k/zAMigeCh4aqma3kwXLoyPREVD6RxVPhGu2QJjAEeih0GWumoDjtdFp0B5Q6sYeakWDAds7NmzWQg==", + "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.0-beta-23019": { + "sha512": "8mt4X1eIjTMrKVINJuzuFYf7C4GrYFC+tlvc2zH5HtxKPpbFZamMUdJ19ORxZ9ds053aqQASdiha7eH86PN+eg==", + "files": [ + "lib/DNXCore50/System.Net.Http.dll", + "lib/net45/_._", + "lib/netcore50/System.Net.Http.dll", + "lib/win8/_._", + "ref/dotnet/System.Net.Http.dll", + "ref/net45/_._", + "ref/netcore50/System.Net.Http.dll", + "ref/win8/_._", + "System.Net.Http.4.0.0-beta-23019.nupkg", + "System.Net.Http.4.0.0-beta-23019.nupkg.sha512", + "System.Net.Http.nuspec" + ] + }, + "System.Net.Primitives/4.0.10-beta-23019": { + "sha512": "Agnm0erfrtY7nd9I5NOK+H+CV7dpGbhPZpM5uSPT+R6LwtC4j8GkdAaWgNRNDU5CHiGD+N1P0x4R4tM9Si4Pqw==", + "files": [ + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.dll", + "ref/net46/_._", + "System.Net.Primitives.4.0.10-beta-23019.nupkg", + "System.Net.Primitives.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.Sockets/4.0.10-beta-23019": { + "sha512": "4NWuSdsFSf21iJkd+NQaE2OwtNaKGdXIbBbQmfE43evHl6fUII38wwNnooWtF0avCEyU6BOdUTiwoZAUZyQwcA==", + "files": [ + "lib/DNXCore50/System.Net.Sockets.dll", + "ref/dotnet/System.Net.Sockets.dll", + "System.Net.Sockets.4.0.10-beta-23019.nupkg", + "System.Net.Sockets.4.0.10-beta-23019.nupkg.sha512", + "System.Net.Sockets.nuspec" + ] + }, + "System.ObjectModel/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "mnrhXE8nT5mX/ndEJ5BsdLCgN6CofKiwQvr9Olsp/s3crY5/lXYM73N2bNSvsFcHD1o0XhaCOn18Vekv6SYTpg==", + "files": [ + "lib/dotnet/System.ObjectModel.dll", + "lib/net46/_._", + "ref/dotnet/de/System.ObjectModel.xml", + "ref/dotnet/es/System.ObjectModel.xml", + "ref/dotnet/fr/System.ObjectModel.xml", + "ref/dotnet/it/System.ObjectModel.xml", + "ref/dotnet/ja/System.ObjectModel.xml", + "ref/dotnet/ko/System.ObjectModel.xml", + "ref/dotnet/ru/System.ObjectModel.xml", + "ref/dotnet/System.ObjectModel.dll", + "ref/dotnet/System.ObjectModel.xml", + "ref/dotnet/zh-hans/System.ObjectModel.xml", + "ref/dotnet/zh-hant/System.ObjectModel.xml", + "ref/net46/_._", + "System.ObjectModel.4.0.10-beta-23109.nupkg", + "System.ObjectModel.4.0.10-beta-23109.nupkg.sha512", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.Networking/4.0.0-beta-23019": { + "sha512": "FrsHPgGsSOU5TCJl7f6DmkZfDxXk2DpE7E+ZrNicC7mOq/eqpFB+Mkb6cEliVYQfqFUUr0d2l/DFDIydexSzUA==", + "files": [ + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.4.0.0-beta-23019.nupkg", + "System.Private.Networking.4.0.0-beta-23019.nupkg.sha512", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.Uri/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "y6M7TxwDXBD2in5cCf+KzucZyx7YE7SJMcU24atzYnpwP2xFASUYCeI6NRg5bYcw2Do5HKBz+XdE9WiZrwpnFg==", + "files": [ + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.4.0.0-beta-23109.nupkg", + "System.Private.Uri.4.0.0-beta-23109.nupkg.sha512", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10-beta-23109": { + "sha512": "aeXO8gjPb46LaP727cXDcCZ2mZoMxguq2UhE25wJoO1Je8Q8D2JFonNk85oVlgXCdEM6XgrtRnsnhvj8PmTBNg==", + "files": [ + "lib/DNXCore50/System.Reflection.dll", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "ref/dotnet/de/System.Reflection.xml", + "ref/dotnet/es/System.Reflection.xml", + "ref/dotnet/fr/System.Reflection.xml", + "ref/dotnet/it/System.Reflection.xml", + "ref/dotnet/ja/System.Reflection.xml", + "ref/dotnet/ko/System.Reflection.xml", + "ref/dotnet/ru/System.Reflection.xml", + "ref/dotnet/System.Reflection.dll", + "ref/dotnet/System.Reflection.xml", + "ref/dotnet/zh-hans/System.Reflection.xml", + "ref/dotnet/zh-hant/System.Reflection.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.4.0.10-beta-23109.nupkg", + "System.Reflection.4.0.10-beta-23109.nupkg.sha512", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0-beta-23109": { + "sha512": "H8QtiSXFHNiQIPZe3PdNJPIjuH9O/A8+/52bw2RIKgV8rMrshmi2LufTvYCb+V5YPBFYWg2Yt8nRISEY4+uV5Q==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "ref/dotnet/de/System.Reflection.Emit.xml", + "ref/dotnet/es/System.Reflection.Emit.xml", + "ref/dotnet/fr/System.Reflection.Emit.xml", + "ref/dotnet/it/System.Reflection.Emit.xml", + "ref/dotnet/ja/System.Reflection.Emit.xml", + "ref/dotnet/ko/System.Reflection.Emit.xml", + "ref/dotnet/ru/System.Reflection.Emit.xml", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.xml", + "ref/net45/_._", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0-beta-23109": { + "sha512": "tJO27blFXyvYwDLbK7GvgFC94XjeY6MnRitBI4w8LHfEc/gVdRmCC8gzkE8KEmkecnIWIt9VTSJ3p4lGgafKKA==", + "files": [ + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/wp80/_._", + "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/net45/_._", + "ref/wp80/_._", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg", + "System.Reflection.Emit.ILGeneration.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "sXo3+qJ7TukCF/rDFYKjEog4iVb75dXJztu/lkvhMHgYnviPSbi9zg78FQUFhB6BOvntwnknrgNJhhtl3x9a7A==", + "files": [ + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Extensions.xml", + "ref/dotnet/es/System.Reflection.Extensions.xml", + "ref/dotnet/fr/System.Reflection.Extensions.xml", + "ref/dotnet/it/System.Reflection.Extensions.xml", + "ref/dotnet/ja/System.Reflection.Extensions.xml", + "ref/dotnet/ko/System.Reflection.Extensions.xml", + "ref/dotnet/ru/System.Reflection.Extensions.xml", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/dotnet/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg", + "System.Reflection.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "R5oBDNgUtSV9KTPCxwHWiTyryX/9mngnPbLWwFOEF5xcNd3Qlu6/3LiauGsIzGtXV8vOpRl9tfyIFy8t4ix4Gw==", + "files": [ + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Reflection.Primitives.xml", + "ref/dotnet/es/System.Reflection.Primitives.xml", + "ref/dotnet/fr/System.Reflection.Primitives.xml", + "ref/dotnet/it/System.Reflection.Primitives.xml", + "ref/dotnet/ja/System.Reflection.Primitives.xml", + "ref/dotnet/ko/System.Reflection.Primitives.xml", + "ref/dotnet/ru/System.Reflection.Primitives.xml", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg", + "System.Reflection.Primitives.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "lTuPMxeoT/Jqb1QtsIuSomLiJpQP3Y4DqqxLPncrMvLrejwdF25QSbhXdx5twgvBDqwSVL8wYtqiOqKe02u7FA==", + "files": [ + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "ref/dotnet/de/System.Reflection.TypeExtensions.xml", + "ref/dotnet/es/System.Reflection.TypeExtensions.xml", + "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", + "ref/dotnet/it/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/net46/System.Reflection.TypeExtensions.dll", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg", + "System.Reflection.TypeExtensions.4.0.0-beta-23109.nupkg.sha512", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ReaderWriter/4.0.0-beta-23019": { + "sha512": "9J0+T+ChJ9rlYTcrJiTOLfTJHuHuenol1eOJgiF8yJK1rDozU2Wnex5kXus5Z8/SerMSCUofUOx4c2WYX/tNow==", + "files": [ + "lib/DNXCore50/System.Resources.ReaderWriter.dll", + "lib/net46/System.Resources.ReaderWriter.dll", + "ref/dotnet/System.Resources.ReaderWriter.dll", + "ref/net46/System.Resources.ReaderWriter.dll", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg", + "System.Resources.ReaderWriter.4.0.0-beta-23019.nupkg.sha512", + "System.Resources.ReaderWriter.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "6usAb6nZEPKugl3z5JR/RZrouH5/340n3tM0lhRfxVE/k3B3Sfh/sHSPiAOorrZgGm4cIDDhXTCGJQSWYphu3g==", + "files": [ + "lib/DNXCore50/System.Runtime.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "ref/dotnet/de/System.Runtime.xml", + "ref/dotnet/es/System.Runtime.xml", + "ref/dotnet/fr/System.Runtime.xml", + "ref/dotnet/it/System.Runtime.xml", + "ref/dotnet/ja/System.Runtime.xml", + "ref/dotnet/ko/System.Runtime.xml", + "ref/dotnet/ru/System.Runtime.xml", + "ref/dotnet/System.Runtime.dll", + "ref/dotnet/System.Runtime.xml", + "ref/dotnet/zh-hans/System.Runtime.xml", + "ref/dotnet/zh-hant/System.Runtime.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.4.0.20-beta-23109.nupkg", + "System.Runtime.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "JkRMtSY5YFGhP9eY7ZFIj40Ha5lGOwSxrk90k0ZAuIFn6qEPNe0NKu/C8laV7Cqy4Lv5IYzkVUGrfOqg3MOG9A==", + "files": [ + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "ref/dotnet/de/System.Runtime.Extensions.xml", + "ref/dotnet/es/System.Runtime.Extensions.xml", + "ref/dotnet/fr/System.Runtime.Extensions.xml", + "ref/dotnet/it/System.Runtime.Extensions.xml", + "ref/dotnet/ja/System.Runtime.Extensions.xml", + "ref/dotnet/ko/System.Runtime.Extensions.xml", + "ref/dotnet/ru/System.Runtime.Extensions.xml", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "XfjBv5hxBDVXvgPzBXiMpHprnmd5trdBAG4o7DEi/3GPXIlety4G0sfmlxeiTr7njKr0wF4ERdLIfzPesS5PAw==", + "files": [ + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg", + "System.Runtime.Handles.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20-beta-23109": { + "serviceable": true, + "sha512": "fxRLTR5kbqOZuSeT5ggVBYc6HIEGmEwh+Uw1ijp2qD3yMiMPmxvtI5aP5t0yZHEmwUrB37lGB+oaPpcXLH5Feg==", + "files": [ + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "ref/dotnet/de/System.Runtime.InteropServices.xml", + "ref/dotnet/es/System.Runtime.InteropServices.xml", + "ref/dotnet/fr/System.Runtime.InteropServices.xml", + "ref/dotnet/it/System.Runtime.InteropServices.xml", + "ref/dotnet/ja/System.Runtime.InteropServices.xml", + "ref/dotnet/ko/System.Runtime.InteropServices.xml", + "ref/dotnet/ru/System.Runtime.InteropServices.xml", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg", + "System.Runtime.InteropServices.4.0.20-beta-23109.nupkg.sha512", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.Loader/4.0.0-beta-23019": { + "sha512": "YuxWBHBbvN5ILjno2DBjgW2NXQscfJFvIfQEOGHwChM5Q9//EO0LZfErH7fTk1n0IVcorDu/HTnkqr2NuK/t5w==", + "files": [ + "lib/DNXCore50/System.Runtime.Loader.dll", + "ref/dotnet/System.Runtime.Loader.dll", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg", + "System.Runtime.Loader.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Loader.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0-beta-23019": { + "sha512": "/6710o8iWcLKG2sNZVnStsuoGjFamspbs4hOEjAUg95Dskfo7kjEVvmHhdZXt2V7aVv3oQGWaDI95HUEHy4L4Q==", + "files": [ + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/win8/_._", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg", + "System.Runtime.Numerics.4.0.0-beta-23019.nupkg.sha512", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Security.Claims/4.0.0-beta-23019": { + "sha512": "kKseHxGh5pWjM43MZWtub/ZyBWUV3RHNSJuUtTzapeQD2qND6pGGNekMXcxmEZOxrKwFEBAeTlcgmWo/2e6/SQ==", + "files": [ + "lib/dotnet/System.Security.Claims.dll", + "lib/net46/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.dll", + "ref/net46/System.Security.Claims.dll", + "System.Security.Claims.4.0.0-beta-23019.nupkg", + "System.Security.Claims.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-beta-23019": { + "sha512": "dGLn6f3iAuNqB65876sX3wjSMnZ3zMbMaAzmDVeeOM0+OhxzOeVxcKfrkHeStIIw+zMv8rGKgSAMXydL0QzRMA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encoding.dll", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "ref/dotnet/System.Security.Cryptography.Encoding.dll", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encoding.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec" + ] + }, + "System.Security.Cryptography.Encryption/4.0.0-beta-23019": { + "sha512": "W95rPBfpgVShPysa/TcLKYQvKjFO0Uq6Obo2DYpKM2+N6SoEVHaBWTxxoImq7vJT/jSlDf0K+SREFBGSj6Gj5A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Encryption.dll", + "lib/net46/System.Security.Cryptography.Encryption.dll", + "ref/dotnet/System.Security.Cryptography.Encryption.dll", + "ref/net46/System.Security.Cryptography.Encryption.dll", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Encryption.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Encryption.nuspec" + ] + }, + "System.Security.Cryptography.Hashing/4.0.0-beta-23019": { + "sha512": "OJVvg0DGR/yjOrov4XiXV0s6+ex5W4emR6Wq2JhObjTIEXzwL3NiTeS94XRbTpDbpSI9An9l217qvVwaPT4qCA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.dll", + "lib/net46/System.Security.Cryptography.Hashing.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.dll", + "ref/net46/System.Security.Cryptography.Hashing.dll", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.nuspec" + ] + }, + "System.Security.Cryptography.Hashing.Algorithms/4.0.0-beta-23019": { + "sha512": "Wgmw7eEYwWuCmPDOJ9uFMJimk5o/ZSKfGYTl5U2wpPLKg3tt0fAExMtEMNakvvq98rRpQE0VMPzho5hXZN0rdw==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.Hashing.Algorithms.dll", + "lib/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/dotnet/System.Security.Cryptography.Hashing.Algorithms.dll", + "ref/net46/System.Security.Cryptography.Hashing.Algorithms.dll", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.Hashing.Algorithms.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.Hashing.Algorithms.nuspec" + ] + }, + "System.Security.Cryptography.RandomNumberGenerator/4.0.0-beta-23019": { + "sha512": "EG5695gHeA13DOkGSomxniAg/HqL+jab9Q+krNFYPsgeHk6wQhyEkjTfc2cjqcOZGpyV5k7XKNkhmx9E3vtvrA==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RandomNumberGenerator.dll", + "lib/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/dotnet/System.Security.Cryptography.RandomNumberGenerator.dll", + "ref/net46/System.Security.Cryptography.RandomNumberGenerator.dll", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RandomNumberGenerator.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RandomNumberGenerator.nuspec" + ] + }, + "System.Security.Cryptography.RSA/4.0.0-beta-23019": { + "sha512": "i+GJPgaNKUVpQtt/TtQIc1YSpZSL2zjb02iCwY7WHpUW9+LP9BjG9JcKxvQW0yTEdtPiipSrx2JjMYu/MBiw9A==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.RSA.dll", + "lib/net46/System.Security.Cryptography.RSA.dll", + "ref/dotnet/System.Security.Cryptography.RSA.dll", + "ref/net46/System.Security.Cryptography.RSA.dll", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.RSA.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.RSA.nuspec" + ] + }, + "System.Security.Cryptography.X509Certificates/4.0.0-beta-23019": { + "sha512": "KCK3sFUSS46rjgTwVlbQnIFzGIGQfjYHIcCdMHGYVhZPTk1ZagXQ7Z5Eha1T8qPTfmbCO17shup4y0qUdJi8Ag==", + "files": [ + "lib/DNXCore50/System.Security.Cryptography.X509Certificates.dll", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/dotnet/System.Security.Cryptography.X509Certificates.dll", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg", + "System.Security.Cryptography.X509Certificates.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec" + ] + }, + "System.Security.Principal/4.0.0-beta-23019": { + "sha512": "2zkK0eJOfso/Jo+77NVXDoJRggzL0jM0ayeXz+vD8pK9pIRnhpWJVbaGmT7MPBWW9KbPwtbJyXejpUS2rBflUQ==", + "files": [ + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "ref/dotnet/System.Security.Principal.dll", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/win8/_._", + "System.Security.Principal.4.0.0-beta-23019.nupkg", + "System.Security.Principal.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.nuspec" + ] + }, + "System.Security.Principal.Windows/4.0.0-beta-23019": { + "sha512": "FYvKKTbncuJCMnc1TmccsJlGSjIQrUJPymt2R3o5uSV1plyGD9V3san/rpq2IO4kDbHjGrQjEtZlbehwUucB5Q==", + "files": [ + "lib/DNXCore50/System.Security.Principal.Windows.dll", + "lib/net46/System.Security.Principal.Windows.dll", + "ref/dotnet/System.Security.Principal.Windows.dll", + "ref/net46/System.Security.Principal.Windows.dll", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg", + "System.Security.Principal.Windows.4.0.0-beta-23019.nupkg.sha512", + "System.Security.Principal.Windows.nuspec" + ] + }, + "System.Security.SecureString/4.0.0-beta-23019": { + "sha512": "VqnglApw6FC+TLD7wz45HGjTDuJjkUmAJGmhjk1FxcnHziJCYkVgxg8OMtEXS2wHvNwEDfVdTdo/8j2hmxrzsA==", + "files": [ + "lib/DNXCore50/System.Security.SecureString.dll", + "lib/net46/System.Security.SecureString.dll", + "ref/dotnet/System.Security.SecureString.dll", + "ref/net46/System.Security.SecureString.dll", + "System.Security.SecureString.4.0.0-beta-23019.nupkg", + "System.Security.SecureString.4.0.0-beta-23019.nupkg.sha512", + "System.Security.SecureString.nuspec" + ] + }, + "System.Text.Encoding/4.0.10-beta-23109": { + "sha512": "oymPt96KPPXO/Scxow+x8cKczVw0KXfExKTXQlwT+j3sS1j/JuV+rZq2sQ54fqOi2R4d9aFPESsoN830sA6VCw==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "ref/dotnet/de/System.Text.Encoding.xml", + "ref/dotnet/es/System.Text.Encoding.xml", + "ref/dotnet/fr/System.Text.Encoding.xml", + "ref/dotnet/it/System.Text.Encoding.xml", + "ref/dotnet/ja/System.Text.Encoding.xml", + "ref/dotnet/ko/System.Text.Encoding.xml", + "ref/dotnet/ru/System.Text.Encoding.xml", + "ref/dotnet/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10-beta-23109": { + "sha512": "F6GZqICZ654MsqVPCL8h+fvDZJmXnu1I1PYY9686yG+lbcZzs9aavqMUjv1Lu5wOdiTKnmn7LADZYzPD6y1p+w==", + "files": [ + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "ref/dotnet/de/System.Text.Encoding.Extensions.xml", + "ref/dotnet/es/System.Text.Encoding.Extensions.xml", + "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", + "ref/dotnet/it/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg", + "System.Text.Encoding.Extensions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "F+tfzB34KhZnjS3ActdL57CQVD9oYGhAZm8AREL+KvbJTh1Y8/tlyCyI2xoH6KdJzIPcXC50yu4OkHNbpcutEw==", + "files": [ + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/net46/_._", + "ref/dotnet/de/System.Text.RegularExpressions.xml", + "ref/dotnet/es/System.Text.RegularExpressions.xml", + "ref/dotnet/fr/System.Text.RegularExpressions.xml", + "ref/dotnet/it/System.Text.RegularExpressions.xml", + "ref/dotnet/ja/System.Text.RegularExpressions.xml", + "ref/dotnet/ko/System.Text.RegularExpressions.xml", + "ref/dotnet/ru/System.Text.RegularExpressions.xml", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/dotnet/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", + "ref/net46/_._", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg", + "System.Text.RegularExpressions.4.0.10-beta-23109.nupkg.sha512", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "TSViw+K20yh9DmwzZpvuCUc2m2ju1eVAJ10pTw2gB/aP4kkrX2nGf4A9BkwkxupPXFA2OtO9LbbEqdp4YbBnjQ==", + "files": [ + "lib/DNXCore50/System.Threading.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "ref/dotnet/de/System.Threading.xml", + "ref/dotnet/es/System.Threading.xml", + "ref/dotnet/fr/System.Threading.xml", + "ref/dotnet/it/System.Threading.xml", + "ref/dotnet/ja/System.Threading.xml", + "ref/dotnet/ko/System.Threading.xml", + "ref/dotnet/ru/System.Threading.xml", + "ref/dotnet/System.Threading.dll", + "ref/dotnet/System.Threading.xml", + "ref/dotnet/zh-hans/System.Threading.xml", + "ref/dotnet/zh-hant/System.Threading.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.4.0.10-beta-23109.nupkg", + "System.Threading.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "IMVmv9x4lBiy+jz31dU7KT/aTDlKZabAEDFAxQOTv//v1RYu5XZXZLIiTZqyVUKxxHgB0PUnuSDl5VxUDKysfQ==", + "files": [ + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "ref/dotnet/de/System.Threading.Overlapped.xml", + "ref/dotnet/es/System.Threading.Overlapped.xml", + "ref/dotnet/fr/System.Threading.Overlapped.xml", + "ref/dotnet/it/System.Threading.Overlapped.xml", + "ref/dotnet/ja/System.Threading.Overlapped.xml", + "ref/dotnet/ko/System.Threading.Overlapped.xml", + "ref/dotnet/ru/System.Threading.Overlapped.xml", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg", + "System.Threading.Overlapped.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10-beta-23109": { + "serviceable": true, + "sha512": "J7lBqLLy1A85KZUgFz0fS8u6BO+pnWun2OAkrNqcUQbgCiKDC9v92u9q6a6AB9znum+GCdzH3cyEftNtIVNd1Q==", + "files": [ + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "ref/dotnet/de/System.Threading.Tasks.xml", + "ref/dotnet/es/System.Threading.Tasks.xml", + "ref/dotnet/fr/System.Threading.Tasks.xml", + "ref/dotnet/it/System.Threading.Tasks.xml", + "ref/dotnet/ja/System.Threading.Tasks.xml", + "ref/dotnet/ko/System.Threading.Tasks.xml", + "ref/dotnet/ru/System.Threading.Tasks.xml", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.xml", + "ref/dotnet/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet/zh-hant/System.Threading.Tasks.xml", + "ref/net46/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg", + "System.Threading.Tasks.4.0.10-beta-23109.nupkg.sha512", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Thread/4.0.0-beta-23019": { + "sha512": "ECx+zZlXCfhkpZ0PUVrzp5UB6zRdzi94LsQhm7DtUS/uB17I3sYh0RsnMu/5jTULByQ1Ju4K/JTbM28InXO/PQ==", + "files": [ + "lib/DNXCore50/System.Threading.Thread.dll", + "lib/net46/System.Threading.Thread.dll", + "ref/dotnet/System.Threading.Thread.dll", + "ref/net46/System.Threading.Thread.dll", + "System.Threading.Thread.4.0.0-beta-23019.nupkg", + "System.Threading.Thread.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Thread.nuspec" + ] + }, + "System.Threading.ThreadPool/4.0.10-beta-23019": { + "sha512": "rYny/TIJFP4FVDIDRRrgGaoeAWno4pomqGFBFFGwm8UR6zOypqq5+n3mn6RyxcNH/PadefEADFs9mhfz6CmcfQ==", + "files": [ + "lib/DNXCore50/System.Threading.ThreadPool.dll", + "lib/net46/System.Threading.ThreadPool.dll", + "ref/dotnet/System.Threading.ThreadPool.dll", + "ref/net46/System.Threading.ThreadPool.dll", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg", + "System.Threading.ThreadPool.4.0.10-beta-23019.nupkg.sha512", + "System.Threading.ThreadPool.nuspec" + ] + }, + "System.Threading.Timer/4.0.0-beta-23019": { + "sha512": "nGA/Vt5zC8zGQ8r9mSdRTWzVMXh1YgJH9XH8x5OQZVLh0hn6CSC32RrmUrmKLpxKd64B9mbKoubeLUqXlf/m8g==", + "files": [ + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "ref/dotnet/System.Threading.Timer.dll", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/win81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.4.0.0-beta-23019.nupkg", + "System.Threading.Timer.4.0.0-beta-23019.nupkg.sha512", + "System.Threading.Timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.10-beta-23019": { + "sha512": "+LIgVOFuU13Dx093QI+OljBhDH6AhqNJcI84qJ/sjakbmGQwf/3RAv4R9cC2D3UF2JhdoVRuelhb5Yzh2+EUTA==", + "files": [ + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/net46/_._", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/net46/_._", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg", + "System.Xml.ReaderWriter.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.0-beta-23019": { + "sha512": "YsRwtb9uO6N8ndtnHPVi0oXSd7MkIVWiRdIHGzyBQ2qwMrQedBRW7u6P1LWo9DDcloOhwqmS6/HinClygHhbNg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "License.rtf", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/win8/_._", + "System.Xml.XDocument.4.0.0-beta-23019.nupkg", + "System.Xml.XDocument.4.0.0-beta-23019.nupkg.sha512", + "System.Xml.XDocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.0.0-beta-23019": { + "sha512": "b1SOLM9FhBCL4gW3OP5b/HV1JVb1hfsF4D4wBxyUIZMXcP3kbm4F+bYvOB0cSeJ1F8oVnCCGivSk1/aSEQ86XQ==", + "files": [ + "lib/dotnet/System.Xml.XmlDocument.dll", + "lib/net46/System.Xml.XmlDocument.dll", + "ref/dotnet/System.Xml.XmlDocument.dll", + "ref/net46/System.Xml.XmlDocument.dll", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg", + "System.Xml.XmlDocument.4.0.0-beta-23019.nupkg.sha512", + "System.Xml.XmlDocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.0.10-beta-23019": { + "sha512": "BqXNr12cUj02qymL4Nhowcsfz840wLSMPfU0T8i0JGPPIx38txMwUA2pnrYWsYmDmyIgw7GGUhrjXz6WJpjgwg==", + "files": [ + "lib/DNXCore50/System.Xml.XmlSerializer.dll", + "lib/net46/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "ref/dotnet/System.Xml.XmlSerializer.dll", + "ref/net46/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg", + "System.Xml.XmlSerializer.4.0.10-beta-23019.nupkg.sha512", + "System.Xml.XmlSerializer.nuspec" + ] + }, + "xunit.abstractions/2.0.0": { + "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0.nupkg", + "xunit.abstractions.2.0.0.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.1.0-beta3-build3029": { + "sha512": "AMS7Fv77DayXVRCBMmVEDwOXPcbxk8dCBA/iACsve+6+UQqopMtNyAynyIcXPFRK/peeitUKID4ChOXWisJmUw==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.1.0-beta3-build3029.nupkg", + "xunit.assert.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "sha512": "lsPro5U3NLasHI/RwqjKzXiRlh9N0IOlR3cluwXYVtihXbGtySeSnU/Fh5MTcWYxh+MVpoNop5zDD0/A2nrHsA==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "sha512": "WuUYamK4RHrHxihvNuX7NkryMhQrpH1+ziJ/mPIQbm18zevSgre8BwUuVZvmLZa8uVob3xS4dvAah2+HCgLiXg==", + "files": [ + "lib/dnx451/xunit.execution.dnx.dll", + "lib/dnx451/xunit.execution.dnx.pdb", + "lib/dnx451/xunit.execution.dnx.xml", + "lib/dnxcore50/xunit.execution.dnx.dll", + "lib/dnxcore50/xunit.execution.dnx.pdb", + "lib/dnxcore50/xunit.execution.dnx.xml", + "lib/monoandroid/xunit.execution.MonoAndroid.dll", + "lib/monoandroid/xunit.execution.MonoAndroid.pdb", + "lib/monoandroid/xunit.execution.MonoAndroid.xml", + "lib/monotouch/xunit.execution.MonoTouch.dll", + "lib/monotouch/xunit.execution.MonoTouch.pdb", + "lib/monotouch/xunit.execution.MonoTouch.xml", + "lib/net45/xunit.execution.desktop.dll", + "lib/net45/xunit.execution.desktop.pdb", + "lib/net45/xunit.execution.desktop.xml", + "lib/portable-wpa81+win81/xunit.execution.universal.dll", + "lib/portable-wpa81+win81/xunit.execution.universal.pdb", + "lib/portable-wpa81+win81/xunit.execution.universal.pri", + "lib/portable-wpa81+win81/xunit.execution.universal.xml", + "lib/wp8/xunit.execution.wp8.dll", + "lib/wp8/xunit.execution.wp8.pdb", + "lib/wp8/xunit.execution.wp8.xml", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.xml", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "sha512": "R6cvKy3mb8QjMxiTHqljsgwf424jYLbU07Ao0NcNHcRMT2OR+a2ldE6WdECiDMseYz/vuIaFQ6ebYRKEfMI/1A==", + "files": [ + "app/project.json", + "app/xunit", + "app/xunit.cmd", + "lib/dnx451/xunit.runner.dnx.dll", + "lib/dnx451/xunit.runner.dnx.xml", + "lib/dnxcore50/xunit.runner.dnx.dll", + "lib/dnxcore50/xunit.runner.dnx.xml", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg.sha512", + "xunit.runner.dnx.nuspec" + ] + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "sha512": "o+hiJTewV+4cA2GoHgbNC/FATjKxo2Z6PPeIdIfc7qysvYtu33POYUdo5XAqlRD9BQ7ojc8t/NOyZg/Qd9kjAg==", + "files": [ + "lib/dnx451/xunit.runner.reporters.dnx.dll", + "lib/dnxcore50/xunit.runner.reporters.dnx.dll", + "lib/net45/xunit.runner.reporters.desktop.dll", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.reporters.nuspec" + ] + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "sha512": "cm5lVNYtypOLgu6Vnd30UWPVNrcILzWmSul7tFrW/xT+ZjPYSES7kvYc80rKAUWXQl/awglhc5IMtAbHJi4abg==", + "files": [ + "lib/dnx451/xunit.runner.utility.dnx.dll", + "lib/dnx451/xunit.runner.utility.dnx.pdb", + "lib/dnx451/xunit.runner.utility.dnx.xml", + "lib/dnxcore50/xunit.runner.utility.dnx.dll", + "lib/dnxcore50/xunit.runner.utility.dnx.pdb", + "lib/dnxcore50/xunit.runner.utility.dnx.xml", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.dll", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.pdb", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.xml", + "lib/monotouch/xunit.runner.utility.MonoTouch.dll", + "lib/monotouch/xunit.runner.utility.MonoTouch.pdb", + "lib/monotouch/xunit.runner.utility.MonoTouch.xml", + "lib/net35/xunit.runner.utility.desktop.dll", + "lib/net35/xunit.runner.utility.desktop.pdb", + "lib/net35/xunit.runner.utility.desktop.xml", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.dll", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pdb", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pri", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.xml", + "lib/wp8/xunit.runner.utility.wp8.dll", + "lib/wp8/xunit.runner.utility.wp8.pdb", + "lib/wp8/xunit.runner.utility.wp8.xml", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.xml", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "EntityFramework.Relational.FunctionalTests >= 7.0.0-beta6", + "EntityFramework.Sqlite >= 7.0.0-beta6" + ], + ".NETFramework,Version=v4.6": [], + "DNX,Version=v4.5.1": [], + "DNXCore,Version=v5.0": [] + } +} \ No newline at end of file diff --git a/test/EntityFramework.Sqlite.Tests/project.json b/test/EntityFramework.Sqlite.Tests/project.json index facf8430ffe..0c10de3dd94 100644 --- a/test/EntityFramework.Sqlite.Tests/project.json +++ b/test/EntityFramework.Sqlite.Tests/project.json @@ -1,13 +1,13 @@ { - "dependencies": { - "EntityFramework.Relational.Tests": "1.0.0", - "EntityFramework.Sqlite": "7.0.0-*" - }, - "commands": { - "test": "xunit.runner.dnx" - }, - "frameworks": { - "net46": { }, - "dnx451": { } - } -} + "dependencies": { + "EntityFramework.Relational.Tests": "1.0.0", + "EntityFramework.Sqlite": "7.0.0-beta6" + }, + "commands": { + "test": "xunit.runner.dnx" + }, + "frameworks": { + "net46": {}, + "dnx451": {} + } +} \ No newline at end of file diff --git a/test/EntityFramework.Sqlite.Tests/project.lock.json b/test/EntityFramework.Sqlite.Tests/project.lock.json new file mode 100644 index 00000000000..b4ae4878278 --- /dev/null +++ b/test/EntityFramework.Sqlite.Tests/project.lock.json @@ -0,0 +1,1864 @@ +{ + "locked": true, + "version": 1, + "targets": { + ".NETFramework,Version=v4.6": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.ComponentModel.DataAnnotations", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Data.Sqlite/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data" + ], + "compile": { + "lib/net45/Microsoft.Data.Sqlite.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Data.Sqlite.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "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.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Caching.Memory.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "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.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Moq/4.2.1312.1622": { + "compile": { + "lib/net40/Moq.dll": {} + }, + "runtime": { + "lib/net40/Moq.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/net45/xunit.execution.desktop.dll": {} + }, + "runtime": { + "lib/net45/xunit.execution.desktop.dll": {} + } + } + }, + "DNX,Version=v4.5.1": { + "EntityFramework.Core/7.0.0-beta6": { + "dependencies": { + "Ix-Async": "1.2.4", + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Caching.Memory": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6", + "Remotion.Linq": "2.0.0-alpha-004", + "System.Collections.Immutable": "1.1.37-beta-23109" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.ComponentModel.DataAnnotations", + "System.Core", + "System.Diagnostics.Debug", + "System.Diagnostics.Tools", + "System.Globalization", + "System.Linq", + "System.Linq.Expressions", + "System.Linq.Queryable", + "System.ObjectModel", + "System.Reflection", + "System.Reflection.Extensions", + "System.Resources.ResourceManager", + "System.Runtime", + "System.Runtime.Extensions", + "System.Threading" + ], + "compile": { + "lib/dnx451/EntityFramework.Core.dll": {} + }, + "runtime": { + "lib/dnx451/EntityFramework.Core.dll": {} + } + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/net45/EntityFramework.InMemory.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.InMemory.dll": {} + } + }, + "EntityFramework.Relational/7.0.0-beta6": { + "dependencies": { + "EntityFramework.Core": "7.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data", + "System.Transactions" + ], + "compile": { + "lib/net45/EntityFramework.Relational.dll": {} + }, + "runtime": { + "lib/net45/EntityFramework.Relational.dll": {} + } + }, + "Ix-Async/1.2.4": { + "frameworkAssemblies": [ + "System", + "System.Core" + ], + "compile": { + "lib/net45/System.Interactive.Async.dll": {} + }, + "runtime": { + "lib/net45/System.Interactive.Async.dll": {} + } + }, + "Microsoft.Data.Sqlite/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core", + "System.Data" + ], + "compile": { + "lib/dnx451/Microsoft.Data.Sqlite.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Data.Sqlite.dll": {} + } + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll": {} + } + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Caching.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.OptionsModel": "1.0.0-beta6" + }, + "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.CommandLineUtils.Sources/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll": {} + } + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.dll": {} + } + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll": {} + } + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Logging.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections.Concurrent", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.dll": {} + } + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "dependencies": { + "Microsoft.Framework.Configuration.Abstractions": "1.0.0-beta6", + "Microsoft.Framework.Configuration.Binder": "1.0.0-beta6", + "Microsoft.Framework.DependencyInjection.Abstractions": "1.0.0-beta6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.OptionsModel.dll": {} + } + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Caching": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Loader": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.IO", + "System.IO.Compression", + "System.IO.Compression.FileSystem", + "System.Runtime", + "System.Text.Encoding", + "System.Threading.Tasks", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.dll": {} + } + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll": {} + } + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll": {} + } + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll": {} + } + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestAdapter.dll": {} + } + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "dependencies": { + "Microsoft.Framework.ApplicationHost": "1.0.0-beta5", + "Microsoft.Framework.CommandLineUtils.Sources": "1.0.0-beta5", + "Microsoft.Framework.Logging": "1.0.0-beta5", + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Newtonsoft.Json": "6.0.6" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Core" + ], + "compile": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + }, + "runtime": { + "lib/dnx451/Microsoft.Framework.TestHost.dll": {} + } + }, + "Moq/4.2.1312.1622": { + "compile": { + "lib/net40/Moq.dll": {} + }, + "runtime": { + "lib/net40/Moq.dll": {} + } + }, + "Newtonsoft.Json/6.0.6": { + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "Remotion.Linq/2.0.0-alpha-004": { + "compile": { + "lib/net45/Remotion.Linq.dll": {} + }, + "runtime": { + "lib/net45/Remotion.Linq.dll": {} + } + }, + "System.Collections/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "dependencies": { + "System.Collections": "4.0.0-beta-23109", + "System.Diagnostics.Debug": "4.0.0-beta-23109", + "System.Globalization": "4.0.0-beta-23109", + "System.Linq": "4.0.0-beta-23109", + "System.Resources.ResourceManager": "4.0.0-beta-23109", + "System.Runtime": "4.0.0-beta-23109", + "System.Runtime.Extensions": "4.0.0-beta-23109", + "System.Threading": "4.0.0-beta-23109" + }, + "compile": { + "lib/dotnet/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Immutable.dll": {} + } + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading/4.0.0-beta-23109": { + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "xunit.abstractions/2.0.0": { + "compile": { + "lib/net35/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/net35/xunit.abstractions.dll": {} + } + }, + "xunit.assert/2.1.0-beta3-build3029": { + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll": {} + } + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + }, + "runtime": { + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.extensibility.core": "[2.1.0-beta3-build3029]" + }, + "compile": { + "lib/dnx451/xunit.execution.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.execution.dnx.dll": {} + } + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "dependencies": { + "Microsoft.Framework.Runtime": "1.0.0-beta5", + "Microsoft.Framework.Runtime.Abstractions": "1.0.0-beta5", + "Microsoft.Framework.TestAdapter": "1.0.0-beta5", + "Microsoft.Framework.TestHost": "1.0.0-beta5", + "xunit.runner.reporters": "2.1.0-beta3-build3029", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "mscorlib", + "System", + "System.Collections", + "System.Core", + "System.ObjectModel", + "System.Reflection", + "System.Runtime", + "System.Text.RegularExpressions", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/dnx451/xunit.runner.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.dnx.dll": {} + } + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "dependencies": { + "Newtonsoft.Json": "6.0.6", + "xunit.runner.utility": "2.1.0-beta3-build3029" + }, + "compile": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.reporters.dnx.dll": {} + } + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "dependencies": { + "xunit.abstractions": "[2.0.0]" + }, + "compile": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + }, + "runtime": { + "lib/dnx451/xunit.runner.utility.dnx.dll": {} + } + } + } + }, + "libraries": { + "EntityFramework.Core/7.0.0-beta6": { + "serviceable": true, + "sha512": "Jm2bIl5HvtXnbHCIvaYkksw8UQzD8bYovqGH2wMgIztj8cKYQ2I9ziwnWnV3f+/tqcdEHtRl929DJO54zV+3eg==", + "files": [ + "EntityFramework.Core.7.0.0-beta6.nupkg", + "EntityFramework.Core.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Core.nuspec", + "lib/dnx451/EntityFramework.Core.dll", + "lib/dnx451/EntityFramework.Core.xml", + "lib/dotnet/EntityFramework.Core.dll", + "lib/dotnet/EntityFramework.Core.xml", + "lib/net45/EntityFramework.Core.dll", + "lib/net45/EntityFramework.Core.xml", + "repo.json" + ] + }, + "EntityFramework.InMemory/7.0.0-beta6": { + "serviceable": true, + "sha512": "u4CXBQEmftJJD7U500i79xS2MwPyptOZLFqBAAwHVp7RuuAB0k2u9iFvdA2kgQZNhzkyooUTcS/+n4EPJalpaw==", + "files": [ + "EntityFramework.InMemory.7.0.0-beta6.nupkg", + "EntityFramework.InMemory.7.0.0-beta6.nupkg.sha512", + "EntityFramework.InMemory.nuspec", + "lib/dotnet/EntityFramework.InMemory.dll", + "lib/dotnet/EntityFramework.InMemory.xml", + "lib/net45/EntityFramework.InMemory.dll", + "lib/net45/EntityFramework.InMemory.xml", + "repo.json" + ] + }, + "EntityFramework.Relational/7.0.0-beta6": { + "serviceable": true, + "sha512": "2CVE3UZjzXDRFYyfVL0lePnK1t2ZyLexNE88SiuUhY4mPC5SOWmDZ7mhLvtXeVJL/7PBpEmDy0qSDZRBpJ/Kiw==", + "files": [ + "EntityFramework.Relational.7.0.0-beta6.nupkg", + "EntityFramework.Relational.7.0.0-beta6.nupkg.sha512", + "EntityFramework.Relational.nuspec", + "lib/dotnet/EntityFramework.Relational.dll", + "lib/dotnet/EntityFramework.Relational.xml", + "lib/net45/EntityFramework.Relational.dll", + "lib/net45/EntityFramework.Relational.xml", + "repo.json" + ] + }, + "Ix-Async/1.2.4": { + "sha512": "kbPg6eod0fNN79RjuPJADw2wcq57iyLXY7XoXWEFzltfUMUbxFZ8266jQ8nZn8bvsXIruwCngljuLRTAiRYG5A==", + "files": [ + "Ix-Async.1.2.4.nupkg", + "Ix-Async.1.2.4.nupkg.sha512", + "Ix-Async.nuspec", + "lib/net40/System.Interactive.Async.dll", + "lib/net40/System.Interactive.Async.XML", + "lib/net45/System.Interactive.Async.dll", + "lib/net45/System.Interactive.Async.XML", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.dll", + "lib/portable-windows8+net45+wp8/System.Interactive.Async.XML" + ] + }, + "Microsoft.Data.Sqlite/1.0.0-beta6": { + "serviceable": true, + "sha512": "7yyqsIahqnM+5/9To3vhoYFttNlvDea9ASAayxqN0DxzpMv9Sguty22Qj5yM2DPlY1AGLCGxl0B/Jayp/7ePNQ==", + "files": [ + "lib/dnx451/Microsoft.Data.Sqlite.dll", + "lib/dnx451/Microsoft.Data.Sqlite.xml", + "lib/dnxcore50/Microsoft.Data.Sqlite.dll", + "lib/dnxcore50/Microsoft.Data.Sqlite.xml", + "lib/dotnet/Microsoft.Data.Sqlite.dll", + "lib/dotnet/Microsoft.Data.Sqlite.xml", + "lib/net45/Microsoft.Data.Sqlite.dll", + "lib/net45/Microsoft.Data.Sqlite.xml", + "Microsoft.Data.Sqlite.1.0.0-beta6.nupkg", + "Microsoft.Data.Sqlite.1.0.0-beta6.nupkg.sha512", + "Microsoft.Data.Sqlite.nuspec", + "runtimes/win/native/x86/sqlite3.dll", + "runtimes/win10-arm/native/sqlite3.dll", + "runtimes/win10-x64/native/sqlite3.dll", + "runtimes/win10-x86/native/sqlite3.dll", + "runtimes/win-x86/native/sqlite3.dll" + ] + }, + "Microsoft.Framework.ApplicationHost/1.0.0-beta5": { + "sha512": "MR2arJidpFSuQRk+mIuWVRWWyK8yB/4+1Oho6XTbV4gukpo4XhEW/Dm4d3HadbGX4+GK1sn+5ctfJFo6kF55ag==", + "files": [ + "lib/dnx451/Microsoft.Framework.ApplicationHost.dll", + "lib/dnx451/Microsoft.Framework.ApplicationHost.xml", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.dll", + "lib/dnxcore50/Microsoft.Framework.ApplicationHost.xml", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.ApplicationHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.ApplicationHost.nuspec" + ] + }, + "Microsoft.Framework.Caching.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "hIxSL1ilaYi6OGBqHeZ/Tao2uRbEEIJfsTY/hZm41FRqfNexmblDfmBd++XDgEr5nJ3iVHvcko6E456gSAbqlw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Caching.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Caching.Abstractions.xml", + "lib/net45/Microsoft.Framework.Caching.Abstractions.dll", + "lib/net45/Microsoft.Framework.Caching.Abstractions.xml", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Caching.Memory/1.0.0-beta6": { + "serviceable": true, + "sha512": "gtCWwet2UAWfyo4wI4L9BUToWcGeyHuPCBHiLa0q7J4VcynD3MONihuM5ZXf3xQiG0uXZufB/ZIZsSZUw/fvHQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Caching.Memory.dll", + "lib/dnx451/Microsoft.Framework.Caching.Memory.xml", + "lib/dotnet/Microsoft.Framework.Caching.Memory.dll", + "lib/dotnet/Microsoft.Framework.Caching.Memory.xml", + "lib/net45/Microsoft.Framework.Caching.Memory.dll", + "lib/net45/Microsoft.Framework.Caching.Memory.xml", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg", + "Microsoft.Framework.Caching.Memory.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Caching.Memory.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.CommandLineUtils.Sources/1.0.0-beta5": { + "sha512": "sZIlSWm9r2CFDI5JB21lKwa8Hq7DZPBYx3LcBnuxZnhSh2AwrhrS88YUZSMP6QCV+PHMwj0udTdnS1eZ2DbM7w==", + "files": [ + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnx451/Microsoft.Framework.CommandLineUtils.Sources.xml", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.dll", + "lib/dnxcore50/Microsoft.Framework.CommandLineUtils.Sources.xml", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg", + "Microsoft.Framework.CommandLineUtils.Sources.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.CommandLineUtils.Sources.nuspec", + "shared/AnsiConsole.cs", + "shared/CommandArgument.cs", + "shared/CommandLineApplication.cs", + "shared/CommandOption.cs", + "shared/CommandOptionType.cs" + ] + }, + "Microsoft.Framework.Configuration/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZwjPHPgayAxW0Yq4tDa8DoAAEy/nj3hlVV02oO4iOGufIdFTzMW9Frfwa97eJQhDFtsdXxfBecXr9GjaEBsI8g==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.dll", + "lib/dnx451/Microsoft.Framework.Configuration.xml", + "lib/dotnet/Microsoft.Framework.Configuration.dll", + "lib/dotnet/Microsoft.Framework.Configuration.xml", + "lib/net45/Microsoft.Framework.Configuration.dll", + "lib/net45/Microsoft.Framework.Configuration.xml", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "7Cq77d6Ni3pnMyN4oTfRvf3RHQr8onjUBQ42P8/waazWU5gG9PtjvPTUP2jVc4AdC2LvZNz9D9A8D1/qASYuyw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Abstractions.xml", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.dll", + "lib/net45/Microsoft.Framework.Configuration.Abstractions.xml", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Configuration.Binder/1.0.0-beta6": { + "serviceable": true, + "sha512": "ZEe9yeczZycYuq/BczSxJH96YQppoLjMsCxIv05UHJsemU7/o5MWY51HMsc8jfNNDOi1sR+G5PlFOUxT4NBlOw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Configuration.Binder.dll", + "lib/dnx451/Microsoft.Framework.Configuration.Binder.xml", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.dll", + "lib/dotnet/Microsoft.Framework.Configuration.Binder.xml", + "lib/net45/Microsoft.Framework.Configuration.Binder.dll", + "lib/net45/Microsoft.Framework.Configuration.Binder.xml", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg", + "Microsoft.Framework.Configuration.Binder.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Configuration.Binder.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection/1.0.0-beta6": { + "serviceable": true, + "sha512": "Q0B1518nc1hxNzMMQ5Lk0dwwDwmVzkj20PpN0MwcOxF3zAd1llmaXNidf7Mb6cy8G1s25OZ46OiDnDvTbw8C7g==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.xml", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.DependencyInjection.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "pNgCgGRkqJ+f8OCN6eRsuOXormaafBec69QvVoKXnlYNwSGU2THLYgkc41li4YofRMgyfPWdnPk2goTtlL5waA==", + "files": [ + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.dll", + "lib/net45/Microsoft.Framework.DependencyInjection.Abstractions.xml", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.DependencyInjection.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.DependencyInjection.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging/1.0.0-beta6": { + "serviceable": true, + "sha512": "AdnzPvyTNMIW3N495hVivo7iW4A22aHnGCU/koy87xgipT5JjE8tiCrSZxtTY3j/dUSqWtatyhgxm11VQEPMLw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.dll", + "lib/dnx451/Microsoft.Framework.Logging.xml", + "lib/dotnet/Microsoft.Framework.Logging.dll", + "lib/dotnet/Microsoft.Framework.Logging.xml", + "lib/net45/Microsoft.Framework.Logging.dll", + "lib/net45/Microsoft.Framework.Logging.xml", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Logging.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "2wMEtQlwOcMunmryFHoX0CdL+fwbEELk90xztNH0GxvXYFCXcmWymbba9AzTna6qqFMZBJfvMtTo2Cf/kWfRyQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Logging.Abstractions.xml", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.dll", + "lib/dotnet/Microsoft.Framework.Logging.Abstractions.xml", + "lib/net45/Microsoft.Framework.Logging.Abstractions.dll", + "lib/net45/Microsoft.Framework.Logging.Abstractions.xml", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Logging.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Logging.Abstractions.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.OptionsModel/1.0.0-beta6": { + "serviceable": true, + "sha512": "sdjLfECcHsu9NTzzHTvs6sZx6xUibQXZzoH0eX5iOfxd88/p+RDcc2k0rmrpuzhReYELaR3mV5C7piwvX8Fj0g==", + "files": [ + "lib/dnx451/Microsoft.Framework.OptionsModel.dll", + "lib/dnx451/Microsoft.Framework.OptionsModel.xml", + "lib/dotnet/Microsoft.Framework.OptionsModel.dll", + "lib/dotnet/Microsoft.Framework.OptionsModel.xml", + "lib/net45/Microsoft.Framework.OptionsModel.dll", + "lib/net45/Microsoft.Framework.OptionsModel.xml", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg", + "Microsoft.Framework.OptionsModel.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.OptionsModel.nuspec", + "repo.json" + ] + }, + "Microsoft.Framework.Runtime/1.0.0-beta5": { + "serviceable": true, + "sha512": "feBypBwOlylGFJsPbi8YH0MzCuvhvV0GHqSX/FvvFhWWU/lQnozVNKGZPq+4T6zfhoteo/acMB0c5rfQx8agMw==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.dll", + "lib/dnx451/Microsoft.Framework.Runtime.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.xml", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Abstractions/1.0.0-beta6": { + "serviceable": true, + "sha512": "w4Cwg6jgPd3XFGOgBGU3GVGVAwUcMglSDTlI23M8uI7yhDRSDbxZ2HPbjTEBMoj+IYdkfunZWFdA67tdk8L8Tg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Abstractions.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Abstractions.xml", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6.nupkg", + "Microsoft.Framework.Runtime.Abstractions.1.0.0-beta6.nupkg.sha512", + "Microsoft.Framework.Runtime.Abstractions.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Caching/1.0.0-beta5": { + "sha512": "70c4qatSDcPulQ6MMtu208Aj0VjUZW3I+B8cYfvVCfU998PbA8rbRrzSkHXGJjs8wZj5CDRAFmX6S7SgfhsJIg==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Caching.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Caching.xml", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Caching.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Caching.nuspec" + ] + }, + "Microsoft.Framework.Runtime.Loader/1.0.0-beta5": { + "serviceable": true, + "sha512": "rYI6kMs3OPVYnpeIh1y1pg0eQ7+DyEph3+3UEToEDB8RnlXpVAoRgyIkreLv3sVsyCdI5J1AP2NitmEc3368FQ==", + "files": [ + "lib/dnx451/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnx451/Microsoft.Framework.Runtime.Loader.xml", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.dll", + "lib/dnxcore50/Microsoft.Framework.Runtime.Loader.xml", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg", + "Microsoft.Framework.Runtime.Loader.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.Runtime.Loader.nuspec" + ] + }, + "Microsoft.Framework.TestAdapter/1.0.0-beta5": { + "serviceable": true, + "sha512": "9Rv5Kl/R/MRaStqDl8fLZHeKdA2WDNbwMzNeK97BUsmaQnG2kBapvWOhDbSzGKbocO+VKLZYfhu7la9MmivvRg==", + "files": [ + "lib/dnx451/Microsoft.Framework.TestAdapter.dll", + "lib/dnx451/Microsoft.Framework.TestAdapter.xml", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.dll", + "lib/dnxcore50/Microsoft.Framework.TestAdapter.xml", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestAdapter.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestAdapter.nuspec" + ] + }, + "Microsoft.Framework.TestHost/1.0.0-beta5": { + "serviceable": true, + "sha512": "2cWQFV+YWvN4FcvIefkO2W4Jj3ow6zNOmCNW2nVvbsleX8K+Cf+cGiukndVNbl12rPCliD7yu/gFHB7A8QrV7g==", + "files": [ + "app/project.json", + "lib/dnx451/Microsoft.Framework.TestHost.dll", + "lib/dnx451/Microsoft.Framework.TestHost.xml", + "lib/dnxcore50/Microsoft.Framework.TestHost.dll", + "lib/dnxcore50/Microsoft.Framework.TestHost.xml", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg", + "Microsoft.Framework.TestHost.1.0.0-beta5.nupkg.sha512", + "Microsoft.Framework.TestHost.nuspec" + ] + }, + "Moq/4.2.1312.1622": { + "sha512": "mPAjm1Kv9jX745D3hEYDBycRT0T8gnAJE2dutbfP9meyHiRrCgQarHajEvKh5SMKM1D3RcHGr/Pg3JJEtKhu9Q==", + "files": [ + "lib/net35/Moq.dll", + "lib/net35/Moq.xml", + "lib/net40/Moq.dll", + "lib/net40/Moq.xml", + "lib/sl4/Moq.Silverlight.dll", + "lib/sl4/Moq.Silverlight.xml", + "Moq.4.2.1312.1622.nupkg", + "Moq.4.2.1312.1622.nupkg.sha512", + "Moq.nuspec" + ] + }, + "Newtonsoft.Json/6.0.6": { + "sha512": "w26uZNyCG5VeoKiEOJ4+9/o8koSofLKwHl7WLreIcp0U6r57L7WiRXmjp8MTKFw6dYNZ9AE0lw69WYbIhUsU9Q==", + "files": [ + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netcore45/Newtonsoft.Json.dll", + "lib/netcore45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+aspnetcore50/Newtonsoft.Json.xml", + "Newtonsoft.Json.6.0.6.nupkg", + "Newtonsoft.Json.6.0.6.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "tools/install.ps1" + ] + }, + "Remotion.Linq/2.0.0-alpha-004": { + "sha512": "pwbyws9/UQKYKwsX5qwoqf1BszAhpFaXQJLmmvCitxQjx9cVUrQpRuoz1dd7wnyHzgA0IDkp+tf/FsJXW+x1yQ==", + "files": [ + "lib/net35/Remotion.Linq.dll", + "lib/net35/Remotion.Linq.XML", + "lib/net40/Remotion.Linq.dll", + "lib/net40/Remotion.Linq.XML", + "lib/net45/Remotion.Linq.dll", + "lib/net45/Remotion.Linq.xml", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.dll", + "lib/portable-net45+win+wpa81+wp80/Remotion.Linq.xml", + "Remotion.Linq.2.0.0-alpha-004.nupkg", + "Remotion.Linq.2.0.0-alpha-004.nupkg.sha512", + "Remotion.Linq.nuspec" + ] + }, + "System.Collections/4.0.0-beta-23109": { + "sha512": "6G9ApANdcgyJGmh3t5Dk4djNN1kFlpW63Nc3O/yPs6I3VThO+LYG2Z6xSsQSl8TLAx3EP5WoqR2IG8Q7OWACHQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Collections.4.0.0-beta-23109.nupkg", + "System.Collections.4.0.0-beta-23109.nupkg.sha512", + "System.Collections.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37-beta-23109": { + "serviceable": true, + "sha512": "qiP7cGL10ni3uJwBD5g0qAjGeQwkMse6K+KNScSmnUs457/RRbGRHOMFE4zTHDiRBt5zThW5vJB5HlJw7quBSg==", + "files": [ + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg", + "System.Collections.Immutable.1.1.37-beta-23109.nupkg.sha512", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.0-beta-23109": { + "sha512": "Oom6i2g6ivDNV1oTezetou/l64n3zoW9stVAYhjv+rNoh+kpKg7rurnJBmD/XNMz1upk1AQMtelzukMh7S4i9Q==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg", + "System.Diagnostics.Debug.4.0.0-beta-23109.nupkg.sha512", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Globalization/4.0.0-beta-23109": { + "sha512": "ZNSeAYkY8ldNPmxSyv2aP7nSjbQHZtfboNXWE8zrQSvIKCs61kU6Ittae7OPxnsge2c9wGB6MJZPqldayTMVcg==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "License.rtf", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/net45/_._", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Globalization.4.0.0-beta-23109.nupkg", + "System.Globalization.4.0.0-beta-23109.nupkg.sha512", + "System.Globalization.nuspec" + ] + }, + "System.Linq/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "NN0sQlEAjYDdMW5SU8p75niORiKwME2hRac30HB1QVUSuMtDs/easUBMJKGnXRHmxcrdwvHApfJOiH1tZ6eTbQ==", + "files": [ + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.4.0.0-beta-23109.nupkg", + "System.Linq.4.0.0-beta-23109.nupkg.sha512", + "System.Linq.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0-beta-23109": { + "serviceable": true, + "sha512": "S7Hx7w3xzlwxzyIIvcpiFDM/gIu317Nkn4PC0IzQFMBP1pC/RH7OI8AVkpuqeXMqqWoo3pz/Kvcsd2GSzDmQew==", + "files": [ + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg", + "System.Resources.ResourceManager.4.0.0-beta-23109.nupkg.sha512", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.0-beta-23109": { + "sha512": "n8DjssywHmehbn6YlOJZM9iutCja9i4Y0l6esJKBkzGHqfQ/w31FH4c21HwIGTsnYLLd8SxntAipo7rKGZswjQ==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.4.0.0-beta-23109.nupkg", + "System.Runtime.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.0-beta-23109": { + "sha512": "hED9RRL6occBOvpA15YKapuNwX/y8tSuvGJsA1uGQuJNQXMWX3HTueoiwQaysYOptshv0Dgm+HGpK6QfrWBqkw==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg", + "System.Runtime.Extensions.4.0.0-beta-23109.nupkg.sha512", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Threading/4.0.0-beta-23109": { + "sha512": "jZVvGmK0trm7VD2nPbq1NjWMplsAgLlsDwXPPgjD/Y9EfAZ68N4faUhMh2uj9xIhnukAZdzTLmrxXGRQGFae9g==", + "files": [ + "lib/net45/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "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/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/_._", + "System.Threading.4.0.0-beta-23109.nupkg", + "System.Threading.4.0.0-beta-23109.nupkg.sha512", + "System.Threading.nuspec" + ] + }, + "xunit.abstractions/2.0.0": { + "sha512": "NAdxKQRzuLnCZ0g++x6i87/8rMBpQoRiRlRNLAqfODm2zJPbteHRoSER3DXfxnqrHXyBJT8rFaZ8uveBeQyaMA==", + "files": [ + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll", + "lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.xml", + "xunit.abstractions.2.0.0.nupkg", + "xunit.abstractions.2.0.0.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.assert/2.1.0-beta3-build3029": { + "sha512": "AMS7Fv77DayXVRCBMmVEDwOXPcbxk8dCBA/iACsve+6+UQqopMtNyAynyIcXPFRK/peeitUKID4ChOXWisJmUw==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.assert.xml", + "xunit.assert.2.1.0-beta3-build3029.nupkg", + "xunit.assert.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.extensibility.core/2.1.0-beta3-build3029": { + "sha512": "lsPro5U3NLasHI/RwqjKzXiRlh9N0IOlR3cluwXYVtihXbGtySeSnU/Fh5MTcWYxh+MVpoNop5zDD0/A2nrHsA==", + "files": [ + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.dll.tdnet", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.pdb", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.core.xml", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.tdnet.dll", + "lib/portable-net45+dnxcore50+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.runner.utility.desktop.dll", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.core.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.1.0-beta3-build3029": { + "sha512": "WuUYamK4RHrHxihvNuX7NkryMhQrpH1+ziJ/mPIQbm18zevSgre8BwUuVZvmLZa8uVob3xS4dvAah2+HCgLiXg==", + "files": [ + "lib/dnx451/xunit.execution.dnx.dll", + "lib/dnx451/xunit.execution.dnx.pdb", + "lib/dnx451/xunit.execution.dnx.xml", + "lib/dnxcore50/xunit.execution.dnx.dll", + "lib/dnxcore50/xunit.execution.dnx.pdb", + "lib/dnxcore50/xunit.execution.dnx.xml", + "lib/monoandroid/xunit.execution.MonoAndroid.dll", + "lib/monoandroid/xunit.execution.MonoAndroid.pdb", + "lib/monoandroid/xunit.execution.MonoAndroid.xml", + "lib/monotouch/xunit.execution.MonoTouch.dll", + "lib/monotouch/xunit.execution.MonoTouch.pdb", + "lib/monotouch/xunit.execution.MonoTouch.xml", + "lib/net45/xunit.execution.desktop.dll", + "lib/net45/xunit.execution.desktop.pdb", + "lib/net45/xunit.execution.desktop.xml", + "lib/portable-wpa81+win81/xunit.execution.universal.dll", + "lib/portable-wpa81+win81/xunit.execution.universal.pdb", + "lib/portable-wpa81+win81/xunit.execution.universal.pri", + "lib/portable-wpa81+win81/xunit.execution.universal.xml", + "lib/wp8/xunit.execution.wp8.dll", + "lib/wp8/xunit.execution.wp8.pdb", + "lib/wp8/xunit.execution.wp8.xml", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.execution.iOS-Universal.xml", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg", + "xunit.extensibility.execution.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.runner.dnx/2.1.0-beta3-build99": { + "sha512": "R6cvKy3mb8QjMxiTHqljsgwf424jYLbU07Ao0NcNHcRMT2OR+a2ldE6WdECiDMseYz/vuIaFQ6ebYRKEfMI/1A==", + "files": [ + "app/project.json", + "app/xunit", + "app/xunit.cmd", + "lib/dnx451/xunit.runner.dnx.dll", + "lib/dnx451/xunit.runner.dnx.xml", + "lib/dnxcore50/xunit.runner.dnx.dll", + "lib/dnxcore50/xunit.runner.dnx.xml", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg", + "xunit.runner.dnx.2.1.0-beta3-build99.nupkg.sha512", + "xunit.runner.dnx.nuspec" + ] + }, + "xunit.runner.reporters/2.1.0-beta3-build3029": { + "sha512": "o+hiJTewV+4cA2GoHgbNC/FATjKxo2Z6PPeIdIfc7qysvYtu33POYUdo5XAqlRD9BQ7ojc8t/NOyZg/Qd9kjAg==", + "files": [ + "lib/dnx451/xunit.runner.reporters.dnx.dll", + "lib/dnxcore50/xunit.runner.reporters.dnx.dll", + "lib/net45/xunit.runner.reporters.desktop.dll", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg", + "xunit.runner.reporters.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.reporters.nuspec" + ] + }, + "xunit.runner.utility/2.1.0-beta3-build3029": { + "sha512": "cm5lVNYtypOLgu6Vnd30UWPVNrcILzWmSul7tFrW/xT+ZjPYSES7kvYc80rKAUWXQl/awglhc5IMtAbHJi4abg==", + "files": [ + "lib/dnx451/xunit.runner.utility.dnx.dll", + "lib/dnx451/xunit.runner.utility.dnx.pdb", + "lib/dnx451/xunit.runner.utility.dnx.xml", + "lib/dnxcore50/xunit.runner.utility.dnx.dll", + "lib/dnxcore50/xunit.runner.utility.dnx.pdb", + "lib/dnxcore50/xunit.runner.utility.dnx.xml", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.dll", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.pdb", + "lib/monoandroid/xunit.runner.utility.MonoAndroid.xml", + "lib/monotouch/xunit.runner.utility.MonoTouch.dll", + "lib/monotouch/xunit.runner.utility.MonoTouch.pdb", + "lib/monotouch/xunit.runner.utility.MonoTouch.xml", + "lib/net35/xunit.runner.utility.desktop.dll", + "lib/net35/xunit.runner.utility.desktop.pdb", + "lib/net35/xunit.runner.utility.desktop.xml", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.dll", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pdb", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.pri", + "lib/portable-wpa81+win81/xunit.runner.utility.universal.xml", + "lib/wp8/xunit.runner.utility.wp8.dll", + "lib/wp8/xunit.runner.utility.wp8.pdb", + "lib/wp8/xunit.runner.utility.wp8.xml", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.dll", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.pdb", + "lib/Xamarin.iOS/xunit.runner.utility.iOS-Universal.xml", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg", + "xunit.runner.utility.2.1.0-beta3-build3029.nupkg.sha512", + "xunit.runner.utility.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "EntityFramework.Relational.Tests >= 1.0.0", + "EntityFramework.Sqlite >= 7.0.0-beta6" + ], + ".NETFramework,Version=v4.6": [], + "DNX,Version=v4.5.1": [] + } +} \ No newline at end of file