From 1e9797b6800fb392913c8ee850b40d7ac4f21d9d Mon Sep 17 00:00:00 2001 From: Aqib Nazir Date: Mon, 5 Apr 2021 13:58:33 +0530 Subject: [PATCH] added support for .netcore3.1 and above. --- GenerateNugetPackage.bat | 2 +- .../Properties/AssemblyInfo.cs | 30 - .../QueryString.NETCore.csproj | 73 +- QueryString.NETCore/project.json | 16 - QueryString.NETCore/project.lock.json | 17215 ---------------- .../Properties/AssemblyInfo.cs | 30 - .../QueryString.Portable.csproj | 73 +- QueryString.sln | 65 +- QueryString/QueryString.cs | 2 +- .../QueryStringTest.NET.csproj | 15 + .../QueryStringTest.NetCore.csproj | 19 + .../Properties/AssemblyInfo.cs | 25 - .../QueryStringTest.Portable.csproj | 81 +- .../Images/UnitTestLogo.scale-100.png | Bin 5789 -> 0 bytes .../Images/UnitTestSmallLogo.scale-100.png | Bin 745 -> 0 bytes .../Images/UnitTestSplashScreen.scale-100.png | Bin 9381 -> 0 bytes .../Images/UnitTestStoreLogo.scale-100.png | Bin 2005 -> 0 bytes QueryStringTest.Windows/Package.appxmanifest | 56 - .../Properties/AssemblyInfo.cs | 28 - .../QueryStringTest.Windows.csproj | 158 - global.json | 2 +- 21 files changed, 116 insertions(+), 17774 deletions(-) delete mode 100644 QueryString.NETCore/Properties/AssemblyInfo.cs delete mode 100644 QueryString.NETCore/project.json delete mode 100644 QueryString.NETCore/project.lock.json delete mode 100644 QueryString.Portable/Properties/AssemblyInfo.cs create mode 100644 QueryStringTest.NET/QueryStringTest.NET.csproj create mode 100644 QueryStringTest.NetCore/QueryStringTest.NetCore.csproj delete mode 100644 QueryStringTest.Windows/Images/UnitTestLogo.scale-100.png delete mode 100644 QueryStringTest.Windows/Images/UnitTestSmallLogo.scale-100.png delete mode 100644 QueryStringTest.Windows/Images/UnitTestSplashScreen.scale-100.png delete mode 100644 QueryStringTest.Windows/Images/UnitTestStoreLogo.scale-100.png delete mode 100644 QueryStringTest.Windows/Package.appxmanifest delete mode 100644 QueryStringTest.Windows/Properties/AssemblyInfo.cs delete mode 100644 QueryStringTest.Windows/QueryStringTest.Windows.csproj diff --git a/GenerateNugetPackage.bat b/GenerateNugetPackage.bat index 0659bb4..eacbde2 100644 --- a/GenerateNugetPackage.bat +++ b/GenerateNugetPackage.bat @@ -7,7 +7,7 @@ set /p version="Enter Version Number (ex. 1.0.0): " if not exist "NugetPackages" mkdir "NugetPackages" -"C:\Program Files (x86)\NuGet\nuget.exe" pack -Version %version% -OutputDirectory "NugetPackages" +"nuget.exe" pack -Version %version% -OutputDirectory "NugetPackages" PAUSE diff --git a/QueryString.NETCore/Properties/AssemblyInfo.cs b/QueryString.NETCore/Properties/AssemblyInfo.cs deleted file mode 100644 index 3cfb09c..0000000 --- a/QueryString.NETCore/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System.Resources; -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("QueryString.NETCore")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("QueryString.NETCore")] -[assembly: AssemblyCopyright("Copyright © 2015")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] -[assembly: NeutralResourcesLanguage("en")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/QueryString.NETCore/QueryString.NETCore.csproj b/QueryString.NETCore/QueryString.NETCore.csproj index a4a9e72..07b3ee0 100644 --- a/QueryString.NETCore/QueryString.NETCore.csproj +++ b/QueryString.NETCore/QueryString.NETCore.csproj @@ -1,54 +1,21 @@ - - - - - 14.0 - Debug - AnyCPU - {0A678142-55E1-4611-B81A-8AFB1EA0D2B2} - Library - Properties - QueryStringDotNET - QueryString.NETCore - en-US - 512 - {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - - - v5.0 - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - bin\Release\QueryString.NETCore.XML - - - - - - - - - - - + + + QueryStringDotNET + en-US + {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + netstandard2.0 + QueryString.NETCore + QueryString.NETCore + en + Copyright © 2015 + bin\$(Configuration)\ + + + full + + + pdbonly + bin\$(Configuration)\QueryString.NETCore.XML + + \ No newline at end of file diff --git a/QueryString.NETCore/project.json b/QueryString.NETCore/project.json deleted file mode 100644 index 3d0dd32..0000000 --- a/QueryString.NETCore/project.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "supports": { - "net46.app": {}, - "uwp.10.0.app": {}, - "dnxcore50.app": {} - }, - "dependencies": { - "Microsoft.NETCore": "5.0.0", - "Microsoft.NETCore.Portable.Compatibility": "1.0.0" - }, - "frameworks": { - "dotnet": { - "imports": "portable-net452+win81" - } - } -} \ No newline at end of file diff --git a/QueryString.NETCore/project.lock.json b/QueryString.NETCore/project.lock.json deleted file mode 100644 index 1251b78..0000000 --- a/QueryString.NETCore/project.lock.json +++ /dev/null @@ -1,17215 +0,0 @@ -{ - "locked": false, - "version": 1, - "targets": { - ".NETPlatform,Version=v5.0": { - "Microsoft.CSharp/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "dependencies": { - "Microsoft.CSharp": "[4.0.0, )", - "Microsoft.VisualBasic": "[10.0.0, )", - "System.AppContext": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Collections.Immutable": "[1.1.37, )", - "System.ComponentModel": "[4.0.0, )", - "System.ComponentModel.Annotations": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Diagnostics.Tools": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Globalization.Calendars": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.IO.Compression": "[4.0.0, )", - "System.IO.Compression.ZipFile": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.UnmanagedMemoryStream": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Linq.Parallel": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Net.NetworkInformation": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Numerics.Vectors": "[4.1.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection.Metadata": "[1.0.22, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Runtime.Numerics": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading.Tasks.Dataflow": "[4.5.25, )", - "System.Threading.Tasks.Parallel": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Xml.XDocument": "[4.0.10, )", - "Microsoft.NETCore.Targets": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": {}, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "compile": { - "ref/dotnet/mscorlib.dll": {}, - "ref/dotnet/System.ComponentModel.DataAnnotations.dll": {}, - "ref/dotnet/System.Core.dll": {}, - "ref/dotnet/System.dll": {}, - "ref/dotnet/System.Net.dll": {}, - "ref/dotnet/System.Numerics.dll": {}, - "ref/dotnet/System.Runtime.Serialization.dll": {}, - "ref/dotnet/System.ServiceModel.dll": {}, - "ref/dotnet/System.ServiceModel.Web.dll": {}, - "ref/dotnet/System.Windows.dll": {}, - "ref/dotnet/System.Xml.dll": {}, - "ref/dotnet/System.Xml.Linq.dll": {}, - "ref/dotnet/System.Xml.Serialization.dll": {} - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "[1.0.0, )" - } - }, - "Microsoft.VisualBasic/10.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.VisualBasic.dll": {} - } - }, - "System.AppContext/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.ComponentModel": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Reflection": "[4.0.0, )", - "System.ObjectModel": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO.Compression": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Collections": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Linq.dll": {} - }, - "runtime": { - "lib/dotnet/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Linq": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/dotnet/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Linq": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Net.Primitives": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.Http.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Reflection/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections.Immutable": "[1.1.37, )" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "compile": { - "ref/dotnet/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Numerics.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Security.Principal": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Principal.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections.Concurrent": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - } - }, - ".NETFramework,Version=v4.6": { - "Microsoft.NETCore/5.0.0": { - "dependencies": { - "Microsoft.CSharp": "[4.0.0, )", - "Microsoft.VisualBasic": "[10.0.0, )", - "System.AppContext": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Collections.Immutable": "[1.1.37, )", - "System.ComponentModel": "[4.0.0, )", - "System.ComponentModel.Annotations": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Diagnostics.Tools": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Globalization.Calendars": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.IO.Compression": "[4.0.0, )", - "System.IO.Compression.ZipFile": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.UnmanagedMemoryStream": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Linq.Parallel": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Net.NetworkInformation": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Numerics.Vectors": "[4.1.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection.Metadata": "[1.0.22, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Runtime.Numerics": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading.Tasks.Dataflow": "[4.5.25, )", - "System.Threading.Tasks.Parallel": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Xml.XDocument": "[4.0.10, )", - "Microsoft.NETCore.Targets": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": {}, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Targets.NETFramework": "[4.6.0, )", - "Microsoft.NETCore.Platforms": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Targets.NETFramework/4.6.0": {}, - "Microsoft.VisualBasic/10.0.0": { - "frameworkAssemblies": [ - "Microsoft.VisualBasic" - ], - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.AppContext/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "frameworkAssemblies": [ - "mscorlib" - ], - "compile": { - "ref/net46/System.AppContext.dll": {} - }, - "runtime": { - "lib/net46/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Globalization/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "frameworkAssemblies": [ - "mscorlib" - ], - "compile": { - "ref/net46/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "lib/net46/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "frameworkAssemblies": [ - "mscorlib" - ], - "compile": { - "ref/net46/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/net46/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.IO.Compression/4.0.0": { - "frameworkAssemblies": [ - "System.IO.Compression" - ], - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO.Compression": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "frameworkAssemblies": [ - "mscorlib", - "System.IO.Compression.FileSystem" - ], - "compile": { - "ref/net46/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/net46/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )" - }, - "frameworkAssemblies": [ - "mscorlib" - ], - "compile": { - "ref/net46/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/net46/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "frameworkAssemblies": [ - "mscorlib" - ], - "compile": { - "ref/net46/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/net46/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "frameworkAssemblies": [ - "mscorlib" - ], - "compile": { - "ref/net46/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/net46/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Net.Http/4.0.0": { - "frameworkAssemblies": [ - "System.Net.Http" - ], - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Net.Primitives/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "frameworkAssemblies": [ - "mscorlib", - "System.Numerics" - ], - "compile": { - "ref/net46/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/net46/System.Numerics.Vectors.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Reflection/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/net46/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections.Immutable": "[1.1.37, )" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )" - }, - "frameworkAssemblies": [ - "mscorlib" - ], - "compile": { - "ref/net46/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/net46/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Runtime/4.0.20": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Security.Claims/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Security.Principal": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "frameworkAssemblies": [ - "mscorlib" - ], - "compile": { - "ref/net46/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/net46/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Text.Encoding/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Threading/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections.Concurrent": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Threading.Timer/4.0.0": { - "compile": { - "ref/net451/_._": {} - }, - "runtime": { - "lib/net451/_._": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - } - }, - "UAP,Version=v10.0": { - "Microsoft.CSharp/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "dependencies": { - "Microsoft.CSharp": "[4.0.0, )", - "Microsoft.VisualBasic": "[10.0.0, )", - "System.AppContext": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Collections.Immutable": "[1.1.37, )", - "System.ComponentModel": "[4.0.0, )", - "System.ComponentModel.Annotations": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Diagnostics.Tools": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Globalization.Calendars": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.IO.Compression": "[4.0.0, )", - "System.IO.Compression.ZipFile": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.UnmanagedMemoryStream": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Linq.Parallel": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Net.NetworkInformation": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Numerics.Vectors": "[4.1.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection.Metadata": "[1.0.22, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Runtime.Numerics": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading.Tasks.Dataflow": "[4.5.25, )", - "System.Threading.Tasks.Parallel": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Xml.XDocument": "[4.0.10, )", - "Microsoft.NETCore.Targets": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": {}, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Runtime": "[1.0.0, )" - }, - "compile": { - "ref/netcore50/mscorlib.dll": {}, - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/netcore50/System.Core.dll": {}, - "lib/netcore50/System.dll": {}, - "lib/netcore50/System.Net.dll": {}, - "lib/netcore50/System.Numerics.dll": {}, - "lib/netcore50/System.Runtime.Serialization.dll": {}, - "lib/netcore50/System.ServiceModel.dll": {}, - "lib/netcore50/System.ServiceModel.Web.dll": {}, - "lib/netcore50/System.Windows.dll": {}, - "lib/netcore50/System.Xml.dll": {}, - "lib/netcore50/System.Xml.Linq.dll": {}, - "lib/netcore50/System.Xml.Serialization.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": {}, - "Microsoft.NETCore.Targets/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )", - "Microsoft.NETCore.Platforms": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, - "Microsoft.VisualBasic/10.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Globalization": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.ComponentModel": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.ObjectModel": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO.Compression": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Net.Primitives": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.Networking": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections.Immutable": "[1.1.37, )" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "dependencies": { - "System.Private.Uri": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.ObjectModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Security.Principal": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections.Concurrent": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - } - }, - "DNXCore,Version=v5.0": { - "Microsoft.CSharp/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "dependencies": { - "Microsoft.CSharp": "[4.0.0, )", - "Microsoft.VisualBasic": "[10.0.0, )", - "System.AppContext": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Collections.Immutable": "[1.1.37, )", - "System.ComponentModel": "[4.0.0, )", - "System.ComponentModel.Annotations": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Diagnostics.Tools": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Globalization.Calendars": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.IO.Compression": "[4.0.0, )", - "System.IO.Compression.ZipFile": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.UnmanagedMemoryStream": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Linq.Parallel": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Net.NetworkInformation": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Numerics.Vectors": "[4.1.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection.Metadata": "[1.0.22, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Runtime.Numerics": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading.Tasks.Dataflow": "[4.5.25, )", - "System.Threading.Tasks.Parallel": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Xml.XDocument": "[4.0.10, )", - "Microsoft.NETCore.Targets": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": {}, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Runtime": "[1.0.0, )" - }, - "compile": { - "ref/dotnet/mscorlib.dll": {}, - "ref/dotnet/System.ComponentModel.DataAnnotations.dll": {}, - "ref/dotnet/System.Core.dll": {}, - "ref/dotnet/System.dll": {}, - "ref/dotnet/System.Net.dll": {}, - "ref/dotnet/System.Numerics.dll": {}, - "ref/dotnet/System.Runtime.Serialization.dll": {}, - "ref/dotnet/System.ServiceModel.dll": {}, - "ref/dotnet/System.ServiceModel.Web.dll": {}, - "ref/dotnet/System.Windows.dll": {}, - "ref/dotnet/System.Xml.dll": {}, - "ref/dotnet/System.Xml.Linq.dll": {}, - "ref/dotnet/System.Xml.Serialization.dll": {} - }, - "runtime": { - "lib/dnxcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/dnxcore50/System.Core.dll": {}, - "lib/dnxcore50/System.dll": {}, - "lib/dnxcore50/System.Net.dll": {}, - "lib/dnxcore50/System.Numerics.dll": {}, - "lib/dnxcore50/System.Runtime.Serialization.dll": {}, - "lib/dnxcore50/System.ServiceModel.dll": {}, - "lib/dnxcore50/System.ServiceModel.Web.dll": {}, - "lib/dnxcore50/System.Windows.dll": {}, - "lib/dnxcore50/System.Xml.dll": {}, - "lib/dnxcore50/System.Xml.Linq.dll": {}, - "lib/dnxcore50/System.Xml.Serialization.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": {}, - "Microsoft.NETCore.Targets/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Targets.DNXCore": "[4.9.0, )", - "Microsoft.NETCore.Platforms": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Targets.DNXCore/4.9.0": {}, - "Microsoft.VisualBasic/10.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Globalization": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.ComponentModel": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Emit": "[4.0.0, )", - "System.ObjectModel": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO.Compression": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Collections": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Linq.dll": {} - }, - "runtime": { - "lib/dotnet/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Emit": "[4.0.0, )", - "System.ObjectModel": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Linq": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/dotnet/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Linq": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.IO.Compression": "[4.0.0, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Net.Http.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Net.Http.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "dependencies": { - "System.Private.Networking": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Net.Primitives.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Collections.Concurrent": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.ComponentModel.EventBasedAsync": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dnxcore50/_._": {} - }, - "runtime": { - "lib/DNXCore50/System.Private.Networking.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "compile": { - "ref/dnxcore50/_._": {} - }, - "runtime": { - "lib/DNXCore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Reflection.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Emit.ILGeneration": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections.Immutable": "[1.1.37, )" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "dependencies": { - "System.Private.Uri": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Numerics.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Security.Principal": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Principal.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections.Concurrent": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - } - }, - ".NETFramework,Version=v4.6/win-x86": { - "Microsoft.NETCore/5.0.0": { - "dependencies": { - "Microsoft.CSharp": "[4.0.0, )", - "Microsoft.VisualBasic": "[10.0.0, )", - "System.AppContext": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Collections.Immutable": "[1.1.37, )", - "System.ComponentModel": "[4.0.0, )", - "System.ComponentModel.Annotations": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Diagnostics.Tools": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Globalization.Calendars": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.IO.Compression": "[4.0.0, )", - "System.IO.Compression.ZipFile": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.UnmanagedMemoryStream": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Linq.Parallel": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Net.NetworkInformation": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Numerics.Vectors": "[4.1.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection.Metadata": "[1.0.22, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Runtime.Numerics": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading.Tasks.Dataflow": "[4.5.25, )", - "System.Threading.Tasks.Parallel": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Xml.XDocument": "[4.0.10, )", - "Microsoft.NETCore.Targets": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": {}, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Targets.NETFramework": "[4.6.0, )", - "Microsoft.NETCore.Platforms": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Targets.NETFramework/4.6.0": {}, - "Microsoft.VisualBasic/10.0.0": { - "frameworkAssemblies": [ - "Microsoft.VisualBasic" - ], - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.AppContext/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "frameworkAssemblies": [ - "mscorlib" - ], - "compile": { - "ref/net46/System.AppContext.dll": {} - }, - "runtime": { - "lib/net46/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Globalization/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "frameworkAssemblies": [ - "mscorlib" - ], - "compile": { - "ref/net46/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "lib/net46/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "frameworkAssemblies": [ - "mscorlib" - ], - "compile": { - "ref/net46/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/net46/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.IO.Compression/4.0.0": { - "frameworkAssemblies": [ - "System.IO.Compression" - ], - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO.Compression": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "frameworkAssemblies": [ - "mscorlib", - "System.IO.Compression.FileSystem" - ], - "compile": { - "ref/net46/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/net46/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )" - }, - "frameworkAssemblies": [ - "mscorlib" - ], - "compile": { - "ref/net46/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/net46/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "frameworkAssemblies": [ - "mscorlib" - ], - "compile": { - "ref/net46/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/net46/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "frameworkAssemblies": [ - "mscorlib" - ], - "compile": { - "ref/net46/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/net46/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Net.Http/4.0.0": { - "frameworkAssemblies": [ - "System.Net.Http" - ], - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Net.NetworkInformation/4.0.10-beta-23123": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Net.Primitives/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "frameworkAssemblies": [ - "mscorlib", - "System.Numerics" - ], - "compile": { - "ref/net46/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/net46/System.Numerics.Vectors.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Reflection/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/net46/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections.Immutable": "[1.1.37, )" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )" - }, - "frameworkAssemblies": [ - "mscorlib" - ], - "compile": { - "ref/net46/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/net46/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Runtime/4.0.20": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Security.Claims/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Security.Principal": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "frameworkAssemblies": [ - "mscorlib" - ], - "compile": { - "ref/net46/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/net46/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Text.Encoding/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Threading/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections.Concurrent": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Threading.Timer/4.0.0": { - "compile": { - "ref/net451/_._": {} - }, - "runtime": { - "lib/net451/_._": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - } - }, - ".NETFramework,Version=v4.6/win-x64": { - "Microsoft.NETCore/5.0.0": { - "dependencies": { - "Microsoft.CSharp": "[4.0.0, )", - "Microsoft.VisualBasic": "[10.0.0, )", - "System.AppContext": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Collections.Immutable": "[1.1.37, )", - "System.ComponentModel": "[4.0.0, )", - "System.ComponentModel.Annotations": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Diagnostics.Tools": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Globalization.Calendars": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.IO.Compression": "[4.0.0, )", - "System.IO.Compression.ZipFile": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.UnmanagedMemoryStream": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Linq.Parallel": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Net.NetworkInformation": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Numerics.Vectors": "[4.1.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection.Metadata": "[1.0.22, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Runtime.Numerics": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading.Tasks.Dataflow": "[4.5.25, )", - "System.Threading.Tasks.Parallel": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Xml.XDocument": "[4.0.10, )", - "Microsoft.NETCore.Targets": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": {}, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Targets.NETFramework": "[4.6.0, )", - "Microsoft.NETCore.Platforms": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Targets.NETFramework/4.6.0": {}, - "Microsoft.VisualBasic/10.0.0": { - "frameworkAssemblies": [ - "Microsoft.VisualBasic" - ], - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.AppContext/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "frameworkAssemblies": [ - "mscorlib" - ], - "compile": { - "ref/net46/System.AppContext.dll": {} - }, - "runtime": { - "lib/net46/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Globalization/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "frameworkAssemblies": [ - "mscorlib" - ], - "compile": { - "ref/net46/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "lib/net46/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "frameworkAssemblies": [ - "mscorlib" - ], - "compile": { - "ref/net46/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/net46/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.IO.Compression/4.0.0": { - "frameworkAssemblies": [ - "System.IO.Compression" - ], - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO.Compression": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "frameworkAssemblies": [ - "mscorlib", - "System.IO.Compression.FileSystem" - ], - "compile": { - "ref/net46/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/net46/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )" - }, - "frameworkAssemblies": [ - "mscorlib" - ], - "compile": { - "ref/net46/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/net46/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "frameworkAssemblies": [ - "mscorlib" - ], - "compile": { - "ref/net46/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/net46/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "frameworkAssemblies": [ - "mscorlib" - ], - "compile": { - "ref/net46/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/net46/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Net.Http/4.0.0": { - "frameworkAssemblies": [ - "System.Net.Http" - ], - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Net.NetworkInformation/4.0.10-beta-23123": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Net.Primitives/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "frameworkAssemblies": [ - "mscorlib", - "System.Numerics" - ], - "compile": { - "ref/net46/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/net46/System.Numerics.Vectors.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Reflection/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/net46/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections.Immutable": "[1.1.37, )" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )" - }, - "frameworkAssemblies": [ - "mscorlib" - ], - "compile": { - "ref/net46/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/net46/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Runtime/4.0.20": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Security.Claims/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Security.Principal": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "frameworkAssemblies": [ - "mscorlib" - ], - "compile": { - "ref/net46/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/net46/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Text.Encoding/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Threading/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections.Concurrent": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "compile": { - "ref/net45/_._": {} - }, - "runtime": { - "lib/net45/_._": {} - } - }, - "System.Threading.Timer/4.0.0": { - "compile": { - "ref/net451/_._": {} - }, - "runtime": { - "lib/net451/_._": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "compile": { - "ref/net46/_._": {} - }, - "runtime": { - "lib/net46/_._": {} - } - } - }, - "UAP,Version=v10.0/win10-x86": { - "Microsoft.CSharp/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "dependencies": { - "Microsoft.CSharp": "[4.0.0, )", - "Microsoft.VisualBasic": "[10.0.0, )", - "System.AppContext": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Collections.Immutable": "[1.1.37, )", - "System.ComponentModel": "[4.0.0, )", - "System.ComponentModel.Annotations": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Diagnostics.Tools": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Globalization.Calendars": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.IO.Compression": "[4.0.0, )", - "System.IO.Compression.ZipFile": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.UnmanagedMemoryStream": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Linq.Parallel": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Net.NetworkInformation": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Numerics.Vectors": "[4.1.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection.Metadata": "[1.0.22, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Runtime.Numerics": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading.Tasks.Dataflow": "[4.5.25, )", - "System.Threading.Tasks.Parallel": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Xml.XDocument": "[4.0.10, )", - "Microsoft.NETCore.Targets": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": {}, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Runtime": "[1.0.0, )" - }, - "compile": { - "ref/netcore50/mscorlib.dll": {}, - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/netcore50/System.Core.dll": {}, - "lib/netcore50/System.dll": {}, - "lib/netcore50/System.Net.dll": {}, - "lib/netcore50/System.Numerics.dll": {}, - "lib/netcore50/System.Runtime.Serialization.dll": {}, - "lib/netcore50/System.ServiceModel.dll": {}, - "lib/netcore50/System.ServiceModel.Web.dll": {}, - "lib/netcore50/System.Windows.dll": {}, - "lib/netcore50/System.Xml.dll": {}, - "lib/netcore50/System.Xml.Linq.dll": {}, - "lib/netcore50/System.Xml.Serialization.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": {}, - "Microsoft.NETCore.Runtime.CoreCLR-x86/1.0.0": { - "dependencies": { - "System.Collections": "[4.0.10, 4.0.10]", - "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", - "System.Globalization": "[4.0.10, 4.0.10]", - "System.IO": "[4.0.10, 4.0.10]", - "System.ObjectModel": "[4.0.10, 4.0.10]", - "System.Reflection": "[4.0.10, 4.0.10]", - "System.Runtime.Extensions": "[4.0.10, 4.0.10]", - "System.Text.Encoding": "[4.0.10, 4.0.10]", - "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]", - "System.Threading": "[4.0.10, 4.0.10]", - "System.Threading.Tasks": "[4.0.10, 4.0.10]", - "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]", - "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", - "System.Globalization.Calendars": "[4.0.0, 4.0.0]", - "System.Reflection.Extensions": "[4.0.0, 4.0.0]", - "System.Reflection.Primitives": "[4.0.0, 4.0.0]", - "System.Resources.ResourceManager": "[4.0.0, 4.0.0]", - "System.Runtime.Handles": "[4.0.0, 4.0.0]", - "System.Threading.Timer": "[4.0.0, 4.0.0]", - "System.Private.Uri": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", - "System.Runtime": "[4.0.20, 4.0.20]", - "System.Runtime.InteropServices": "[4.0.20, 4.0.20]" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7-x86/lib/dotnet/mscorlib.ni.dll": {} - }, - "native": { - "runtimes/win7-x86/native/clretwrc.dll": {}, - "runtimes/win7-x86/native/coreclr.dll": {}, - "runtimes/win7-x86/native/dbgshim.dll": {}, - "runtimes/win7-x86/native/mscordaccore.dll": {}, - "runtimes/win7-x86/native/mscordbi.dll": {}, - "runtimes/win7-x86/native/mscorrc.debug.dll": {}, - "runtimes/win7-x86/native/mscorrc.dll": {} - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )", - "Microsoft.NETCore.Platforms": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, - "Microsoft.NETCore.Windows.ApiSets-x86/1.0.0": { - "native": { - "runtimes/win10-x86/native/_._": {} - } - }, - "Microsoft.VisualBasic/10.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Globalization": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.ComponentModel": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.ObjectModel": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.clrcompression-x86/4.0.0": { - "native": { - "runtimes/win10-x86/native/ClrCompression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO.Compression": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Net.Primitives": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.Networking": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Emit.ILGeneration": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.0": { - "dependencies": { - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Runtime": "[4.0.0, )", - "System.Reflection.Emit.ILGeneration": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections.Immutable": "[1.1.37, )" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "dependencies": { - "System.Private.Uri": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.ObjectModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Security.Principal": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections.Concurrent": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - } - }, - "UAP,Version=v10.0/win10-x86-aot": { - "Microsoft.CSharp/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "dependencies": { - "Microsoft.CSharp": "[4.0.0, )", - "Microsoft.VisualBasic": "[10.0.0, )", - "System.AppContext": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Collections.Immutable": "[1.1.37, )", - "System.ComponentModel": "[4.0.0, )", - "System.ComponentModel.Annotations": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Diagnostics.Tools": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Globalization.Calendars": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.IO.Compression": "[4.0.0, )", - "System.IO.Compression.ZipFile": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.UnmanagedMemoryStream": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Linq.Parallel": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Net.NetworkInformation": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Numerics.Vectors": "[4.1.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection.Metadata": "[1.0.22, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Runtime.Numerics": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading.Tasks.Dataflow": "[4.5.25, )", - "System.Threading.Tasks.Parallel": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Xml.XDocument": "[4.0.10, )", - "Microsoft.NETCore.Targets": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": {}, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Runtime": "[1.0.0, )" - }, - "compile": { - "ref/netcore50/mscorlib.dll": {}, - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/mscorlib.dll": {}, - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "runtimes/aot/lib/netcore50/System.Core.dll": {}, - "runtimes/aot/lib/netcore50/System.dll": {}, - "runtimes/aot/lib/netcore50/System.Net.dll": {}, - "runtimes/aot/lib/netcore50/System.Numerics.dll": {}, - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {}, - "runtimes/aot/lib/netcore50/System.Windows.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": {}, - "Microsoft.NETCore.Runtime.Native/1.0.0": { - "dependencies": { - "System.Collections": "[4.0.10, 4.0.10]", - "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", - "System.Globalization": "[4.0.10, 4.0.10]", - "System.IO": "[4.0.10, 4.0.10]", - "System.ObjectModel": "[4.0.10, 4.0.10]", - "System.Reflection": "[4.0.10, 4.0.10]", - "System.Runtime.Extensions": "[4.0.10, 4.0.10]", - "System.Text.Encoding": "[4.0.10, 4.0.10]", - "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]", - "System.Threading": "[4.0.10, 4.0.10]", - "System.Threading.Tasks": "[4.0.10, 4.0.10]", - "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]", - "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", - "System.Globalization.Calendars": "[4.0.0, 4.0.0]", - "System.Reflection.Extensions": "[4.0.0, 4.0.0]", - "System.Reflection.Primitives": "[4.0.0, 4.0.0]", - "System.Resources.ResourceManager": "[4.0.0, 4.0.0]", - "System.Runtime.Handles": "[4.0.0, 4.0.0]", - "System.Threading.Timer": "[4.0.0, 4.0.0]", - "System.Private.Uri": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", - "System.Runtime": "[4.0.20, 4.0.20]", - "System.Runtime.InteropServices": "[4.0.20, 4.0.20]" - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )", - "Microsoft.NETCore.Platforms": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, - "Microsoft.VisualBasic/10.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Globalization": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.ComponentModel": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.ObjectModel": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.clrcompression-x86/4.0.0": { - "native": { - "runtimes/win10-x86/native/ClrCompression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO.Compression": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Net.Primitives": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.Networking": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections.Immutable": "[1.1.37, )" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "dependencies": { - "System.Private.Uri": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.ObjectModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Security.Principal": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections.Concurrent": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - } - }, - "UAP,Version=v10.0/win10-x64": { - "Microsoft.CSharp/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "dependencies": { - "Microsoft.CSharp": "[4.0.0, )", - "Microsoft.VisualBasic": "[10.0.0, )", - "System.AppContext": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Collections.Immutable": "[1.1.37, )", - "System.ComponentModel": "[4.0.0, )", - "System.ComponentModel.Annotations": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Diagnostics.Tools": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Globalization.Calendars": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.IO.Compression": "[4.0.0, )", - "System.IO.Compression.ZipFile": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.UnmanagedMemoryStream": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Linq.Parallel": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Net.NetworkInformation": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Numerics.Vectors": "[4.1.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection.Metadata": "[1.0.22, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Runtime.Numerics": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading.Tasks.Dataflow": "[4.5.25, )", - "System.Threading.Tasks.Parallel": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Xml.XDocument": "[4.0.10, )", - "Microsoft.NETCore.Targets": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": {}, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Runtime": "[1.0.0, )" - }, - "compile": { - "ref/netcore50/mscorlib.dll": {}, - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/netcore50/System.Core.dll": {}, - "lib/netcore50/System.dll": {}, - "lib/netcore50/System.Net.dll": {}, - "lib/netcore50/System.Numerics.dll": {}, - "lib/netcore50/System.Runtime.Serialization.dll": {}, - "lib/netcore50/System.ServiceModel.dll": {}, - "lib/netcore50/System.ServiceModel.Web.dll": {}, - "lib/netcore50/System.Windows.dll": {}, - "lib/netcore50/System.Xml.dll": {}, - "lib/netcore50/System.Xml.Linq.dll": {}, - "lib/netcore50/System.Xml.Serialization.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": {}, - "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": { - "dependencies": { - "System.Collections": "[4.0.10, 4.0.10]", - "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", - "System.Globalization": "[4.0.10, 4.0.10]", - "System.IO": "[4.0.10, 4.0.10]", - "System.ObjectModel": "[4.0.10, 4.0.10]", - "System.Reflection": "[4.0.10, 4.0.10]", - "System.Runtime.Extensions": "[4.0.10, 4.0.10]", - "System.Text.Encoding": "[4.0.10, 4.0.10]", - "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]", - "System.Threading": "[4.0.10, 4.0.10]", - "System.Threading.Tasks": "[4.0.10, 4.0.10]", - "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]", - "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", - "System.Globalization.Calendars": "[4.0.0, 4.0.0]", - "System.Reflection.Extensions": "[4.0.0, 4.0.0]", - "System.Reflection.Primitives": "[4.0.0, 4.0.0]", - "System.Resources.ResourceManager": "[4.0.0, 4.0.0]", - "System.Runtime.Handles": "[4.0.0, 4.0.0]", - "System.Threading.Timer": "[4.0.0, 4.0.0]", - "System.Private.Uri": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", - "System.Runtime": "[4.0.20, 4.0.20]", - "System.Runtime.InteropServices": "[4.0.20, 4.0.20]" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll": {} - }, - "native": { - "runtimes/win7-x64/native/clretwrc.dll": {}, - "runtimes/win7-x64/native/coreclr.dll": {}, - "runtimes/win7-x64/native/dbgshim.dll": {}, - "runtimes/win7-x64/native/mscordaccore.dll": {}, - "runtimes/win7-x64/native/mscordbi.dll": {}, - "runtimes/win7-x64/native/mscorrc.debug.dll": {}, - "runtimes/win7-x64/native/mscorrc.dll": {} - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )", - "Microsoft.NETCore.Platforms": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, - "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0": { - "native": { - "runtimes/win10-x64/native/_._": {} - } - }, - "Microsoft.VisualBasic/10.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Globalization": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.ComponentModel": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.ObjectModel": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.clrcompression-x64/4.0.0": { - "native": { - "runtimes/win10-x64/native/ClrCompression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO.Compression": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Net.Primitives": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.Networking": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Emit.ILGeneration": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.0": { - "dependencies": { - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Runtime": "[4.0.0, )", - "System.Reflection.Emit.ILGeneration": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections.Immutable": "[1.1.37, )" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "dependencies": { - "System.Private.Uri": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.ObjectModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Security.Principal": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections.Concurrent": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - } - }, - "UAP,Version=v10.0/win10-x64-aot": { - "Microsoft.CSharp/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "dependencies": { - "Microsoft.CSharp": "[4.0.0, )", - "Microsoft.VisualBasic": "[10.0.0, )", - "System.AppContext": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Collections.Immutable": "[1.1.37, )", - "System.ComponentModel": "[4.0.0, )", - "System.ComponentModel.Annotations": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Diagnostics.Tools": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Globalization.Calendars": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.IO.Compression": "[4.0.0, )", - "System.IO.Compression.ZipFile": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.UnmanagedMemoryStream": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Linq.Parallel": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Net.NetworkInformation": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Numerics.Vectors": "[4.1.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection.Metadata": "[1.0.22, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Runtime.Numerics": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading.Tasks.Dataflow": "[4.5.25, )", - "System.Threading.Tasks.Parallel": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Xml.XDocument": "[4.0.10, )", - "Microsoft.NETCore.Targets": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": {}, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Runtime": "[1.0.0, )" - }, - "compile": { - "ref/netcore50/mscorlib.dll": {}, - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/mscorlib.dll": {}, - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "runtimes/aot/lib/netcore50/System.Core.dll": {}, - "runtimes/aot/lib/netcore50/System.dll": {}, - "runtimes/aot/lib/netcore50/System.Net.dll": {}, - "runtimes/aot/lib/netcore50/System.Numerics.dll": {}, - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {}, - "runtimes/aot/lib/netcore50/System.Windows.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": {}, - "Microsoft.NETCore.Runtime.Native/1.0.0": { - "dependencies": { - "System.Collections": "[4.0.10, 4.0.10]", - "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", - "System.Globalization": "[4.0.10, 4.0.10]", - "System.IO": "[4.0.10, 4.0.10]", - "System.ObjectModel": "[4.0.10, 4.0.10]", - "System.Reflection": "[4.0.10, 4.0.10]", - "System.Runtime.Extensions": "[4.0.10, 4.0.10]", - "System.Text.Encoding": "[4.0.10, 4.0.10]", - "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]", - "System.Threading": "[4.0.10, 4.0.10]", - "System.Threading.Tasks": "[4.0.10, 4.0.10]", - "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]", - "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", - "System.Globalization.Calendars": "[4.0.0, 4.0.0]", - "System.Reflection.Extensions": "[4.0.0, 4.0.0]", - "System.Reflection.Primitives": "[4.0.0, 4.0.0]", - "System.Resources.ResourceManager": "[4.0.0, 4.0.0]", - "System.Runtime.Handles": "[4.0.0, 4.0.0]", - "System.Threading.Timer": "[4.0.0, 4.0.0]", - "System.Private.Uri": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", - "System.Runtime": "[4.0.20, 4.0.20]", - "System.Runtime.InteropServices": "[4.0.20, 4.0.20]" - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )", - "Microsoft.NETCore.Platforms": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, - "Microsoft.VisualBasic/10.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Globalization": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.ComponentModel": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.ObjectModel": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.clrcompression-x64/4.0.0": { - "native": { - "runtimes/win10-x64/native/ClrCompression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO.Compression": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Net.Primitives": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.Networking": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections.Immutable": "[1.1.37, )" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "dependencies": { - "System.Private.Uri": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.ObjectModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Security.Principal": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections.Concurrent": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - } - }, - "UAP,Version=v10.0/win10-arm": { - "Microsoft.CSharp/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "dependencies": { - "Microsoft.CSharp": "[4.0.0, )", - "Microsoft.VisualBasic": "[10.0.0, )", - "System.AppContext": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Collections.Immutable": "[1.1.37, )", - "System.ComponentModel": "[4.0.0, )", - "System.ComponentModel.Annotations": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Diagnostics.Tools": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Globalization.Calendars": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.IO.Compression": "[4.0.0, )", - "System.IO.Compression.ZipFile": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.UnmanagedMemoryStream": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Linq.Parallel": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Net.NetworkInformation": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Numerics.Vectors": "[4.1.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection.Metadata": "[1.0.22, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Runtime.Numerics": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading.Tasks.Dataflow": "[4.5.25, )", - "System.Threading.Tasks.Parallel": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Xml.XDocument": "[4.0.10, )", - "Microsoft.NETCore.Targets": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": {}, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Runtime": "[1.0.0, )" - }, - "compile": { - "ref/netcore50/mscorlib.dll": {}, - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/netcore50/System.Core.dll": {}, - "lib/netcore50/System.dll": {}, - "lib/netcore50/System.Net.dll": {}, - "lib/netcore50/System.Numerics.dll": {}, - "lib/netcore50/System.Runtime.Serialization.dll": {}, - "lib/netcore50/System.ServiceModel.dll": {}, - "lib/netcore50/System.ServiceModel.Web.dll": {}, - "lib/netcore50/System.Windows.dll": {}, - "lib/netcore50/System.Xml.dll": {}, - "lib/netcore50/System.Xml.Linq.dll": {}, - "lib/netcore50/System.Xml.Serialization.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": {}, - "Microsoft.NETCore.Runtime.CoreCLR-arm/1.0.0": { - "dependencies": { - "System.Collections": "[4.0.10, 4.0.10]", - "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", - "System.Globalization": "[4.0.10, 4.0.10]", - "System.IO": "[4.0.10, 4.0.10]", - "System.ObjectModel": "[4.0.10, 4.0.10]", - "System.Reflection": "[4.0.10, 4.0.10]", - "System.Runtime.Extensions": "[4.0.10, 4.0.10]", - "System.Text.Encoding": "[4.0.10, 4.0.10]", - "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]", - "System.Threading": "[4.0.10, 4.0.10]", - "System.Threading.Tasks": "[4.0.10, 4.0.10]", - "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]", - "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", - "System.Globalization.Calendars": "[4.0.0, 4.0.0]", - "System.Reflection.Extensions": "[4.0.0, 4.0.0]", - "System.Reflection.Primitives": "[4.0.0, 4.0.0]", - "System.Resources.ResourceManager": "[4.0.0, 4.0.0]", - "System.Runtime.Handles": "[4.0.0, 4.0.0]", - "System.Threading.Timer": "[4.0.0, 4.0.0]", - "System.Private.Uri": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", - "System.Runtime": "[4.0.20, 4.0.20]", - "System.Runtime.InteropServices": "[4.0.20, 4.0.20]" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win8-arm/lib/dotnet/mscorlib.ni.dll": {} - }, - "native": { - "runtimes/win8-arm/native/clretwrc.dll": {}, - "runtimes/win8-arm/native/coreclr.dll": {}, - "runtimes/win8-arm/native/dbgshim.dll": {}, - "runtimes/win8-arm/native/mscordaccore.dll": {}, - "runtimes/win8-arm/native/mscordbi.dll": {}, - "runtimes/win8-arm/native/mscorrc.debug.dll": {}, - "runtimes/win8-arm/native/mscorrc.dll": {} - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )", - "Microsoft.NETCore.Platforms": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, - "Microsoft.VisualBasic/10.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "lib/netcore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Globalization": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.ComponentModel": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.ObjectModel": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.clrcompression-arm/4.0.0": { - "native": { - "runtimes/win10-arm/native/ClrCompression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO.Compression": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Net.Primitives": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.Networking": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Emit.ILGeneration": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.0": { - "dependencies": { - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Runtime": "[4.0.0, )", - "System.Reflection.Emit.ILGeneration": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections.Immutable": "[1.1.37, )" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "dependencies": { - "System.Private.Uri": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.ObjectModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Security.Principal": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections.Concurrent": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - } - }, - "UAP,Version=v10.0/win10-arm-aot": { - "Microsoft.CSharp/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "dependencies": { - "Microsoft.CSharp": "[4.0.0, )", - "Microsoft.VisualBasic": "[10.0.0, )", - "System.AppContext": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Collections.Immutable": "[1.1.37, )", - "System.ComponentModel": "[4.0.0, )", - "System.ComponentModel.Annotations": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Diagnostics.Tools": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Globalization.Calendars": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.IO.Compression": "[4.0.0, )", - "System.IO.Compression.ZipFile": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.UnmanagedMemoryStream": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Linq.Parallel": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Net.NetworkInformation": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Numerics.Vectors": "[4.1.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection.Metadata": "[1.0.22, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Runtime.Numerics": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading.Tasks.Dataflow": "[4.5.25, )", - "System.Threading.Tasks.Parallel": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Xml.XDocument": "[4.0.10, )", - "Microsoft.NETCore.Targets": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": {}, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Runtime": "[1.0.0, )" - }, - "compile": { - "ref/netcore50/mscorlib.dll": {}, - "ref/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "ref/netcore50/System.Core.dll": {}, - "ref/netcore50/System.dll": {}, - "ref/netcore50/System.Net.dll": {}, - "ref/netcore50/System.Numerics.dll": {}, - "ref/netcore50/System.Runtime.Serialization.dll": {}, - "ref/netcore50/System.ServiceModel.dll": {}, - "ref/netcore50/System.ServiceModel.Web.dll": {}, - "ref/netcore50/System.Windows.dll": {}, - "ref/netcore50/System.Xml.dll": {}, - "ref/netcore50/System.Xml.Linq.dll": {}, - "ref/netcore50/System.Xml.Serialization.dll": {} - }, - "runtime": { - "runtimes/aot/lib/netcore50/mscorlib.dll": {}, - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll": {}, - "runtimes/aot/lib/netcore50/System.Core.dll": {}, - "runtimes/aot/lib/netcore50/System.dll": {}, - "runtimes/aot/lib/netcore50/System.Net.dll": {}, - "runtimes/aot/lib/netcore50/System.Numerics.dll": {}, - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.dll": {}, - "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll": {}, - "runtimes/aot/lib/netcore50/System.Windows.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll": {}, - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": {}, - "Microsoft.NETCore.Runtime.Native/1.0.0": { - "dependencies": { - "System.Collections": "[4.0.10, 4.0.10]", - "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", - "System.Globalization": "[4.0.10, 4.0.10]", - "System.IO": "[4.0.10, 4.0.10]", - "System.ObjectModel": "[4.0.10, 4.0.10]", - "System.Reflection": "[4.0.10, 4.0.10]", - "System.Runtime.Extensions": "[4.0.10, 4.0.10]", - "System.Text.Encoding": "[4.0.10, 4.0.10]", - "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]", - "System.Threading": "[4.0.10, 4.0.10]", - "System.Threading.Tasks": "[4.0.10, 4.0.10]", - "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]", - "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", - "System.Globalization.Calendars": "[4.0.0, 4.0.0]", - "System.Reflection.Extensions": "[4.0.0, 4.0.0]", - "System.Reflection.Primitives": "[4.0.0, 4.0.0]", - "System.Resources.ResourceManager": "[4.0.0, 4.0.0]", - "System.Runtime.Handles": "[4.0.0, 4.0.0]", - "System.Threading.Timer": "[4.0.0, 4.0.0]", - "System.Private.Uri": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", - "System.Runtime": "[4.0.20, 4.0.20]", - "System.Runtime.InteropServices": "[4.0.20, 4.0.20]" - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )", - "Microsoft.NETCore.Platforms": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, - "Microsoft.VisualBasic/10.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/netcore50/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/netcore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Globalization": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/netcore50/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netcore50/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.ComponentModel": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "compile": { - "ref/netcore50/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.ObjectModel": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.clrcompression-arm/4.0.0": { - "native": { - "runtimes/win10-arm/native/ClrCompression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO.Compression": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Runtime.WindowsRuntime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/netcore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/netcore50/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Net.Primitives": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Runtime.WindowsRuntime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Net.Http.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Http.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Private.Networking": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/netcore50/System.Net.Primitives.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "lib/netcore50/System.Private.Networking.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "compile": { - "ref/netcore50/_._": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections.Immutable": "[1.1.37, )" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Diagnostics.Contracts": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "dependencies": { - "System.Private.Uri": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "compile": { - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netcore50/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.ObjectModel": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Security.Principal": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/netcore50/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/netcore50/System.Security.Principal.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections.Concurrent": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/netcore50/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/netcore50/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "compile": { - "ref/netcore50/System.Threading.Timer.dll": {} - }, - "runtime": { - "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - } - }, - "DNXCore,Version=v5.0/win7-x86": { - "Microsoft.CSharp/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "dependencies": { - "Microsoft.CSharp": "[4.0.0, )", - "Microsoft.VisualBasic": "[10.0.0, )", - "System.AppContext": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Collections.Immutable": "[1.1.37, )", - "System.ComponentModel": "[4.0.0, )", - "System.ComponentModel.Annotations": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Diagnostics.Tools": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Globalization.Calendars": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.IO.Compression": "[4.0.0, )", - "System.IO.Compression.ZipFile": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.UnmanagedMemoryStream": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Linq.Parallel": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Net.NetworkInformation": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Numerics.Vectors": "[4.1.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection.Metadata": "[1.0.22, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Runtime.Numerics": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading.Tasks.Dataflow": "[4.5.25, )", - "System.Threading.Tasks.Parallel": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Xml.XDocument": "[4.0.10, )", - "Microsoft.NETCore.Targets": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": {}, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Runtime": "[1.0.0, )" - }, - "compile": { - "ref/dotnet/mscorlib.dll": {}, - "ref/dotnet/System.ComponentModel.DataAnnotations.dll": {}, - "ref/dotnet/System.Core.dll": {}, - "ref/dotnet/System.dll": {}, - "ref/dotnet/System.Net.dll": {}, - "ref/dotnet/System.Numerics.dll": {}, - "ref/dotnet/System.Runtime.Serialization.dll": {}, - "ref/dotnet/System.ServiceModel.dll": {}, - "ref/dotnet/System.ServiceModel.Web.dll": {}, - "ref/dotnet/System.Windows.dll": {}, - "ref/dotnet/System.Xml.dll": {}, - "ref/dotnet/System.Xml.Linq.dll": {}, - "ref/dotnet/System.Xml.Serialization.dll": {} - }, - "runtime": { - "lib/dnxcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/dnxcore50/System.Core.dll": {}, - "lib/dnxcore50/System.dll": {}, - "lib/dnxcore50/System.Net.dll": {}, - "lib/dnxcore50/System.Numerics.dll": {}, - "lib/dnxcore50/System.Runtime.Serialization.dll": {}, - "lib/dnxcore50/System.ServiceModel.dll": {}, - "lib/dnxcore50/System.ServiceModel.Web.dll": {}, - "lib/dnxcore50/System.Windows.dll": {}, - "lib/dnxcore50/System.Xml.dll": {}, - "lib/dnxcore50/System.Xml.Linq.dll": {}, - "lib/dnxcore50/System.Xml.Serialization.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": {}, - "Microsoft.NETCore.Runtime.CoreCLR-x86/1.0.0": { - "dependencies": { - "System.Collections": "[4.0.10, 4.0.10]", - "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", - "System.Globalization": "[4.0.10, 4.0.10]", - "System.IO": "[4.0.10, 4.0.10]", - "System.ObjectModel": "[4.0.10, 4.0.10]", - "System.Reflection": "[4.0.10, 4.0.10]", - "System.Runtime.Extensions": "[4.0.10, 4.0.10]", - "System.Text.Encoding": "[4.0.10, 4.0.10]", - "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]", - "System.Threading": "[4.0.10, 4.0.10]", - "System.Threading.Tasks": "[4.0.10, 4.0.10]", - "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]", - "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", - "System.Globalization.Calendars": "[4.0.0, 4.0.0]", - "System.Reflection.Extensions": "[4.0.0, 4.0.0]", - "System.Reflection.Primitives": "[4.0.0, 4.0.0]", - "System.Resources.ResourceManager": "[4.0.0, 4.0.0]", - "System.Runtime.Handles": "[4.0.0, 4.0.0]", - "System.Threading.Timer": "[4.0.0, 4.0.0]", - "System.Private.Uri": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", - "System.Runtime": "[4.0.20, 4.0.20]", - "System.Runtime.InteropServices": "[4.0.20, 4.0.20]" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7-x86/lib/dotnet/mscorlib.ni.dll": {} - }, - "native": { - "runtimes/win7-x86/native/clretwrc.dll": {}, - "runtimes/win7-x86/native/coreclr.dll": {}, - "runtimes/win7-x86/native/dbgshim.dll": {}, - "runtimes/win7-x86/native/mscordaccore.dll": {}, - "runtimes/win7-x86/native/mscordbi.dll": {}, - "runtimes/win7-x86/native/mscorrc.debug.dll": {}, - "runtimes/win7-x86/native/mscorrc.dll": {} - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Targets.DNXCore": "[4.9.0, )", - "Microsoft.NETCore.Platforms": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Targets.DNXCore/4.9.0": {}, - "Microsoft.NETCore.Windows.ApiSets-x86/1.0.0": { - "native": { - "runtimes/win7-x86/native/API-MS-Win-Base-Util-L1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-com-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-com-private-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-comm-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-console-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-console-l2-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-datetime-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-datetime-l1-1-1.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-debug-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-debug-l1-1-1.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-delayload-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-errorhandling-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-errorhandling-l1-1-1.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-fibers-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-fibers-l1-1-1.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-file-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-file-l1-2-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-file-l1-2-1.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-file-l2-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-file-l2-1-1.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-handle-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-heap-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-heap-obsolete-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-interlocked-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-io-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-io-l1-1-1.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll": {}, - "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll": {}, - "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll": {}, - "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-libraryloader-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-libraryloader-l1-1-1.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-localization-l1-2-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-localization-l1-2-1.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-localization-l2-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-localization-obsolete-l1-2-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-1.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-2.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-3.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-namedpipe-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-normalization-l1-1-0.dll": {}, - "runtimes/win7-x86/native/API-MS-Win-Core-PrivateProfile-L1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-privateprofile-l1-1-1.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-processenvironment-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-processenvironment-l1-2-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-processsecurity-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-1.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-2.dll": {}, - "runtimes/win7-x86/native/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-profile-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-psapi-ansi-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-psapi-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-psapi-obsolete-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-realtime-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-registry-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-registry-l2-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-rtlsupport-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-shlwapi-legacy-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-shutdown-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-shutdown-l1-1-1.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-string-l1-1-0.dll": {}, - "runtimes/win7-x86/native/API-MS-Win-Core-String-L2-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-string-obsolete-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll": {}, - "runtimes/win7-x86/native/API-MS-Win-Core-StringAnsi-L1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-stringloader-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-stringloader-l1-1-1.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-synch-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-synch-l1-2-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-1.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-threadpool-l1-2-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-threadpool-legacy-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-threadpool-private-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-timezone-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-url-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-util-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-version-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-winrt-error-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-winrt-error-l1-1-1.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-winrt-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-winrt-registration-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-winrt-robuffer-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-winrt-string-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-wow64-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-xstate-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-core-xstate-l2-1-0.dll": {}, - "runtimes/win7-x86/native/API-MS-Win-devices-config-L1-1-0.dll": {}, - "runtimes/win7-x86/native/API-MS-Win-devices-config-L1-1-1.dll": {}, - "runtimes/win7-x86/native/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll": {}, - "runtimes/win7-x86/native/API-MS-Win-Eventing-Consumer-L1-1-0.dll": {}, - "runtimes/win7-x86/native/API-MS-Win-Eventing-Controller-L1-1-0.dll": {}, - "runtimes/win7-x86/native/API-MS-Win-Eventing-Legacy-L1-1-0.dll": {}, - "runtimes/win7-x86/native/API-MS-Win-Eventing-Provider-L1-1-0.dll": {}, - "runtimes/win7-x86/native/API-MS-Win-EventLog-Legacy-L1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-ro-typeresolution-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-security-base-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-security-cpwl-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-security-cryptoapi-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-security-lsalookup-l2-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-security-lsalookup-l2-1-1.dll": {}, - "runtimes/win7-x86/native/API-MS-Win-Security-LsaPolicy-L1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-security-provider-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-security-sddl-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-service-core-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-service-core-l1-1-1.dll": {}, - "runtimes/win7-x86/native/api-ms-win-service-management-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-service-management-l2-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-service-private-l1-1-0.dll": {}, - "runtimes/win7-x86/native/api-ms-win-service-private-l1-1-1.dll": {}, - "runtimes/win7-x86/native/api-ms-win-service-winsvc-l1-1-0.dll": {}, - "runtimes/win7-x86/native/ext-ms-win-advapi32-encryptedfile-l1-1-0.dll": {} - } - }, - "Microsoft.VisualBasic/10.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Globalization": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.ComponentModel": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Emit": "[4.0.0, )", - "System.ObjectModel": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.clrcompression-x86/4.0.0": { - "native": { - "runtimes/win7-x86/native/clrcompression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO.Compression": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Collections": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Linq.dll": {} - }, - "runtime": { - "lib/dotnet/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Emit": "[4.0.0, )", - "System.ObjectModel": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Linq": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/dotnet/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Linq": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.IO.Compression": "[4.0.0, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Net.Http.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Net.Http.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.10-beta-23123": { - "dependencies": { - "System.Private.Networking": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "dependencies": { - "System.Private.Networking": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Net.Primitives.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Collections.Concurrent": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.ComponentModel.EventBasedAsync": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dnxcore50/_._": {} - }, - "runtime": { - "lib/DNXCore50/System.Private.Networking.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "compile": { - "ref/dnxcore50/_._": {} - }, - "runtime": { - "lib/DNXCore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Reflection.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Emit.ILGeneration": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.0": { - "dependencies": { - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Runtime": "[4.0.0, )", - "System.Reflection.Emit.ILGeneration": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections.Immutable": "[1.1.37, )" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "dependencies": { - "System.Private.Uri": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Numerics.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Security.Principal": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Principal.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections.Concurrent": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - } - }, - "DNXCore,Version=v5.0/win7-x64": { - "Microsoft.CSharp/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/Microsoft.CSharp.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.CSharp.dll": {} - } - }, - "Microsoft.NETCore/5.0.0": { - "dependencies": { - "Microsoft.CSharp": "[4.0.0, )", - "Microsoft.VisualBasic": "[10.0.0, )", - "System.AppContext": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Collections.Immutable": "[1.1.37, )", - "System.ComponentModel": "[4.0.0, )", - "System.ComponentModel.Annotations": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Diagnostics.Tools": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Globalization.Calendars": "[4.0.0, )", - "System.Globalization.Extensions": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.IO.Compression": "[4.0.0, )", - "System.IO.Compression.ZipFile": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.UnmanagedMemoryStream": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Linq.Parallel": "[4.0.0, )", - "System.Linq.Queryable": "[4.0.0, )", - "System.Net.NetworkInformation": "[4.0.0, )", - "System.Net.Http": "[4.0.0, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Numerics.Vectors": "[4.1.0, )", - "System.ObjectModel": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Reflection.DispatchProxy": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection.Metadata": "[1.0.22, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Runtime.Numerics": "[4.0.0, )", - "System.Security.Claims": "[4.0.0, )", - "System.Security.Principal": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Threading.Tasks.Dataflow": "[4.5.25, )", - "System.Threading.Tasks.Parallel": "[4.0.0, )", - "System.Threading.Timer": "[4.0.0, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Xml.XDocument": "[4.0.10, )", - "Microsoft.NETCore.Targets": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Platforms/1.0.0": {}, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Runtime": "[1.0.0, )" - }, - "compile": { - "ref/dotnet/mscorlib.dll": {}, - "ref/dotnet/System.ComponentModel.DataAnnotations.dll": {}, - "ref/dotnet/System.Core.dll": {}, - "ref/dotnet/System.dll": {}, - "ref/dotnet/System.Net.dll": {}, - "ref/dotnet/System.Numerics.dll": {}, - "ref/dotnet/System.Runtime.Serialization.dll": {}, - "ref/dotnet/System.ServiceModel.dll": {}, - "ref/dotnet/System.ServiceModel.Web.dll": {}, - "ref/dotnet/System.Windows.dll": {}, - "ref/dotnet/System.Xml.dll": {}, - "ref/dotnet/System.Xml.Linq.dll": {}, - "ref/dotnet/System.Xml.Serialization.dll": {} - }, - "runtime": { - "lib/dnxcore50/System.ComponentModel.DataAnnotations.dll": {}, - "lib/dnxcore50/System.Core.dll": {}, - "lib/dnxcore50/System.dll": {}, - "lib/dnxcore50/System.Net.dll": {}, - "lib/dnxcore50/System.Numerics.dll": {}, - "lib/dnxcore50/System.Runtime.Serialization.dll": {}, - "lib/dnxcore50/System.ServiceModel.dll": {}, - "lib/dnxcore50/System.ServiceModel.Web.dll": {}, - "lib/dnxcore50/System.Windows.dll": {}, - "lib/dnxcore50/System.Xml.dll": {}, - "lib/dnxcore50/System.Xml.Linq.dll": {}, - "lib/dnxcore50/System.Xml.Serialization.dll": {} - } - }, - "Microsoft.NETCore.Runtime/1.0.0": {}, - "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": { - "dependencies": { - "System.Collections": "[4.0.10, 4.0.10]", - "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", - "System.Globalization": "[4.0.10, 4.0.10]", - "System.IO": "[4.0.10, 4.0.10]", - "System.ObjectModel": "[4.0.10, 4.0.10]", - "System.Reflection": "[4.0.10, 4.0.10]", - "System.Runtime.Extensions": "[4.0.10, 4.0.10]", - "System.Text.Encoding": "[4.0.10, 4.0.10]", - "System.Text.Encoding.Extensions": "[4.0.10, 4.0.10]", - "System.Threading": "[4.0.10, 4.0.10]", - "System.Threading.Tasks": "[4.0.10, 4.0.10]", - "System.Diagnostics.Contracts": "[4.0.0, 4.0.0]", - "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", - "System.Globalization.Calendars": "[4.0.0, 4.0.0]", - "System.Reflection.Extensions": "[4.0.0, 4.0.0]", - "System.Reflection.Primitives": "[4.0.0, 4.0.0]", - "System.Resources.ResourceManager": "[4.0.0, 4.0.0]", - "System.Runtime.Handles": "[4.0.0, 4.0.0]", - "System.Threading.Timer": "[4.0.0, 4.0.0]", - "System.Private.Uri": "[4.0.0, 4.0.0]", - "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", - "System.Runtime": "[4.0.20, 4.0.20]", - "System.Runtime.InteropServices": "[4.0.20, 4.0.20]" - }, - "compile": { - "ref/dotnet/_._": {} - }, - "runtime": { - "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll": {} - }, - "native": { - "runtimes/win7-x64/native/clretwrc.dll": {}, - "runtimes/win7-x64/native/coreclr.dll": {}, - "runtimes/win7-x64/native/dbgshim.dll": {}, - "runtimes/win7-x64/native/mscordaccore.dll": {}, - "runtimes/win7-x64/native/mscordbi.dll": {}, - "runtimes/win7-x64/native/mscorrc.debug.dll": {}, - "runtimes/win7-x64/native/mscorrc.dll": {} - } - }, - "Microsoft.NETCore.Targets/1.0.0": { - "dependencies": { - "Microsoft.NETCore.Targets.DNXCore": "[4.9.0, )", - "Microsoft.NETCore.Platforms": "[1.0.0, )" - } - }, - "Microsoft.NETCore.Targets.DNXCore/4.9.0": {}, - "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0": { - "native": { - "runtimes/win7-x64/native/API-MS-Win-Base-Util-L1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-com-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-com-private-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-comm-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-console-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-console-l2-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-datetime-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-datetime-l1-1-1.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-debug-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-debug-l1-1-1.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-delayload-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-errorhandling-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-errorhandling-l1-1-1.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-fibers-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-fibers-l1-1-1.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-file-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-file-l1-2-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-file-l1-2-1.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-file-l2-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-file-l2-1-1.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-handle-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-heap-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-heap-obsolete-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-interlocked-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-io-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-io-l1-1-1.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll": {}, - "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll": {}, - "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll": {}, - "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-libraryloader-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-libraryloader-l1-1-1.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-localization-l1-2-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-localization-l1-2-1.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-localization-l2-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-localization-obsolete-l1-2-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-1.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-2.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-3.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-namedpipe-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-normalization-l1-1-0.dll": {}, - "runtimes/win7-x64/native/API-MS-Win-Core-PrivateProfile-L1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-privateprofile-l1-1-1.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-processenvironment-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-processenvironment-l1-2-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-processsecurity-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-1.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-2.dll": {}, - "runtimes/win7-x64/native/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-profile-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-psapi-ansi-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-psapi-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-psapi-obsolete-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-realtime-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-registry-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-registry-l2-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-rtlsupport-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-shlwapi-legacy-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-shutdown-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-shutdown-l1-1-1.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-string-l1-1-0.dll": {}, - "runtimes/win7-x64/native/API-MS-Win-Core-String-L2-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-string-obsolete-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll": {}, - "runtimes/win7-x64/native/API-MS-Win-Core-StringAnsi-L1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-stringloader-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-stringloader-l1-1-1.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-synch-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-synch-l1-2-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-1.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-threadpool-l1-2-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-threadpool-legacy-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-threadpool-private-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-timezone-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-url-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-util-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-version-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-winrt-error-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-winrt-error-l1-1-1.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-winrt-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-winrt-registration-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-winrt-robuffer-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-winrt-string-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-wow64-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-xstate-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-core-xstate-l2-1-0.dll": {}, - "runtimes/win7-x64/native/API-MS-Win-devices-config-L1-1-0.dll": {}, - "runtimes/win7-x64/native/API-MS-Win-devices-config-L1-1-1.dll": {}, - "runtimes/win7-x64/native/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll": {}, - "runtimes/win7-x64/native/API-MS-Win-Eventing-Consumer-L1-1-0.dll": {}, - "runtimes/win7-x64/native/API-MS-Win-Eventing-Controller-L1-1-0.dll": {}, - "runtimes/win7-x64/native/API-MS-Win-Eventing-Legacy-L1-1-0.dll": {}, - "runtimes/win7-x64/native/API-MS-Win-Eventing-Provider-L1-1-0.dll": {}, - "runtimes/win7-x64/native/API-MS-Win-EventLog-Legacy-L1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-ro-typeresolution-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-security-base-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-security-cpwl-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-security-cryptoapi-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-security-lsalookup-l2-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-security-lsalookup-l2-1-1.dll": {}, - "runtimes/win7-x64/native/API-MS-Win-Security-LsaPolicy-L1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-security-provider-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-security-sddl-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-service-core-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-service-core-l1-1-1.dll": {}, - "runtimes/win7-x64/native/api-ms-win-service-management-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-service-management-l2-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-service-private-l1-1-0.dll": {}, - "runtimes/win7-x64/native/api-ms-win-service-private-l1-1-1.dll": {}, - "runtimes/win7-x64/native/api-ms-win-service-winsvc-l1-1-0.dll": {}, - "runtimes/win7-x64/native/ext-ms-win-advapi32-encryptedfile-l1-1-0.dll": {} - } - }, - "Microsoft.VisualBasic/10.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Dynamic.Runtime": "[4.0.10, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.ObjectModel": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/Microsoft.VisualBasic.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.VisualBasic.dll": {} - } - }, - "Microsoft.Win32.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/Microsoft.Win32.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/Microsoft.Win32.Primitives.dll": {} - } - }, - "System.AppContext/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.AppContext.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.AppContext.dll": {} - } - }, - "System.Collections/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Collections.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/1.1.37": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Globalization": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/dotnet/System.Collections.NonGeneric.dll": {} - } - }, - "System.ComponentModel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.ComponentModel": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Threading": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - }, - "runtime": { - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} - } - }, - "System.Diagnostics.Contracts/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Contracts.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Diagnostics.Contracts.dll": {} - } - }, - "System.Diagnostics.Debug/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Debug.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.StackTrace/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.StackTrace.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Diagnostics.StackTrace.dll": {} - } - }, - "System.Diagnostics.Tools/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tools.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.Tracing/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Diagnostics.Tracing.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Emit": "[4.0.0, )", - "System.ObjectModel": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Linq.Expressions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Calendars.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Globalization.Extensions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Globalization.Extensions.dll": {} - } - }, - "System.IO/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.IO.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.IO.dll": {} - } - }, - "System.IO.Compression/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.IO.Compression.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.dll": {} - } - }, - "System.IO.Compression.clrcompression-x64/4.0.0": { - "native": { - "runtimes/win7-x64/native/clrcompression.dll": {} - } - }, - "System.IO.Compression.ZipFile/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO.Compression": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - }, - "runtime": { - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} - } - }, - "System.Linq/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Collections": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Linq.dll": {} - }, - "runtime": { - "lib/dotnet/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.TypeExtensions": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Reflection.Emit": "[4.0.0, )", - "System.ObjectModel": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Linq.Expressions.dll": {} - } - }, - "System.Linq.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Linq": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Threading": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Linq.Parallel.dll": {} - }, - "runtime": { - "lib/dotnet/System.Linq.Parallel.dll": {} - } - }, - "System.Linq.Queryable/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Linq.Expressions": "[4.0.10, )", - "System.Linq": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Linq.Queryable.dll": {} - }, - "runtime": { - "lib/dotnet/System.Linq.Queryable.dll": {} - } - }, - "System.Net.Http/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.IO.Compression": "[4.0.0, )", - "System.Net.Primitives": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Net.Http.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Net.Http.dll": {} - } - }, - "System.Net.NetworkInformation/4.0.10-beta-23123": { - "dependencies": { - "System.Private.Networking": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.NetworkInformation.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Net.NetworkInformation.dll": {} - } - }, - "System.Net.Primitives/4.0.10": { - "dependencies": { - "System.Private.Networking": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Net.Primitives.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Net.Primitives.dll": {} - } - }, - "System.Numerics.Vectors/4.1.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Numerics.Vectors.dll": {} - }, - "runtime": { - "lib/dotnet/System.Numerics.Vectors.dll": {} - } - }, - "System.ObjectModel/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/dotnet/System.ObjectModel.dll": {} - } - }, - "System.Private.Networking/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )", - "System.Collections.Concurrent": "[4.0.0, )", - "System.Collections.NonGeneric": "[4.0.0, )", - "Microsoft.Win32.Primitives": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.Threading.Overlapped": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.ComponentModel.EventBasedAsync": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )" - }, - "compile": { - "ref/dnxcore50/_._": {} - }, - "runtime": { - "lib/DNXCore50/System.Private.Networking.dll": {} - } - }, - "System.Private.Uri/4.0.0": { - "compile": { - "ref/dnxcore50/_._": {} - }, - "runtime": { - "lib/DNXCore50/System.Private.Uri.dll": {} - } - }, - "System.Reflection/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Reflection.dll": {} - } - }, - "System.Reflection.DispatchProxy/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Reflection": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Reflection.DispatchProxy.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Reflection.DispatchProxy.dll": {} - } - }, - "System.Reflection.Emit/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Emit.ILGeneration": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.0.0": { - "dependencies": { - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Runtime": "[4.0.0, )", - "System.Reflection.Emit.ILGeneration": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Extensions.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.0.22": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Text.Encoding": "[4.0.0, )", - "System.Runtime.InteropServices": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Text.Encoding.Extensions": "[4.0.0, )", - "System.Reflection.Extensions": "[4.0.0, )", - "System.Collections.Immutable": "[1.1.37, )" - }, - "compile": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/dotnet/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.Primitives.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Globalization": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Resources.ResourceManager.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.0.20": { - "dependencies": { - "System.Private.Uri": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Runtime.dll": {} - } - }, - "System.Runtime.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Extensions.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Handles.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.0.20": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Reflection": "[4.0.0, )", - "System.Reflection.Primitives": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Runtime.InteropServices.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.Numerics/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/dotnet/System.Runtime.Numerics.dll": {} - } - }, - "System.Security.Claims/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Security.Principal": "[4.0.0, )", - "System.IO": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Globalization": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Security.Claims.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Claims.dll": {} - } - }, - "System.Security.Principal/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Security.Principal.dll": {} - }, - "runtime": { - "lib/dotnet/System.Security.Principal.dll": {} - } - }, - "System.Text.Encoding/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Text.Encoding": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.Encoding.Extensions.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Threading": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/dotnet/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Threading.dll": {} - } - }, - "System.Threading.Overlapped/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Runtime.Handles": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.Overlapped.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Threading.Overlapped.dll": {} - } - }, - "System.Threading.Tasks/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "dependencies": { - "System.Runtime": "[4.0.0, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.0, )", - "System.Collections.Concurrent": "[4.0.0, )", - "System.Collections": "[4.0.0, )", - "System.Threading.Tasks": "[4.0.0, )", - "System.Dynamic.Runtime": "[4.0.0, )", - "System.Diagnostics.Tracing": "[4.0.0, )", - "System.Threading": "[4.0.0, )", - "System.Linq": "[4.0.0, )", - "System.Runtime.Extensions": "[4.0.0, )" - }, - "compile": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Dataflow.dll": {} - } - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Collections.Concurrent": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Diagnostics.Tracing": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Threading.Tasks.Parallel.dll": {} - }, - "runtime": { - "lib/dotnet/System.Threading.Tasks.Parallel.dll": {} - } - }, - "System.Threading.Timer/4.0.0": { - "dependencies": { - "System.Runtime": "[4.0.0, )" - }, - "compile": { - "ref/dotnet/System.Threading.Timer.dll": {} - }, - "runtime": { - "lib/DNXCore50/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.Text.Encoding": "[4.0.10, )", - "System.IO": "[4.0.10, )", - "System.Threading.Tasks": "[4.0.10, )", - "System.Runtime.InteropServices": "[4.0.20, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.IO.FileSystem": "[4.0.0, )", - "System.IO.FileSystem.Primitives": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Text.RegularExpressions": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Text.Encoding.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.0.10": { - "dependencies": { - "System.Runtime": "[4.0.20, )", - "System.IO": "[4.0.10, )", - "System.Xml.ReaderWriter": "[4.0.10, )", - "System.Resources.ResourceManager": "[4.0.0, )", - "System.Diagnostics.Debug": "[4.0.10, )", - "System.Collections": "[4.0.10, )", - "System.Globalization": "[4.0.10, )", - "System.Threading": "[4.0.10, )", - "System.Text.Encoding": "[4.0.10, )", - "System.Reflection": "[4.0.10, )", - "System.Runtime.Extensions": "[4.0.10, )" - }, - "compile": { - "ref/dotnet/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/dotnet/System.Xml.XDocument.dll": {} - } - } - } - }, - "libraries": { - "Microsoft.CSharp/4.0.0": { - "sha512": "oWqeKUxHXdK6dL2CFjgMcaBISbkk+AqEg+yvJHE4DElNzS4QaTsCflgkkqZwVlWby1Dg9zo9n+iCAMFefFdJ/A==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.CSharp.nuspec", - "lib/dotnet/Microsoft.CSharp.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/netcore50/Microsoft.CSharp.dll", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/Microsoft.CSharp.dll", - "ref/dotnet/Microsoft.CSharp.xml", - "ref/dotnet/zh-hant/Microsoft.CSharp.xml", - "ref/dotnet/de/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/ru/Microsoft.CSharp.xml", - "ref/dotnet/zh-hans/Microsoft.CSharp.xml", - "ref/dotnet/es/Microsoft.CSharp.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/Microsoft.CSharp.dll", - "ref/netcore50/Microsoft.CSharp.xml", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/a8a7171824ab4656b3141cda0591ff66.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore/5.0.0": { - "sha512": "QQMp0yYQbIdfkKhdEE6Umh2Xonau7tasG36Trw/YlHoWgYQLp7T9L+ZD8EPvdj5ubRhtOuKEKwM7HMpkagB9ZA==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.nuspec", - "_._", - "package/services/metadata/core-properties/340ac37fb1224580ae47c59ebdd88964.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore.Platforms/1.0.0": { - "sha512": "0N77OwGZpXqUco2C/ynv1os7HqdFYifvNIbveLDKqL5PZaz05Rl9enCwVBjF61aumHKueLWIJ3prnmdAXxww4A==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.Platforms.nuspec", - "runtime.json", - "package/services/metadata/core-properties/36b51d4c6b524527902ff1a182a64e42.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore.Portable.Compatibility/1.0.0": { - "sha512": "5/IFqf2zN1jzktRJitxO+5kQ+0AilcIbPvSojSJwDG3cGNSMZg44LXLB5E9RkSETE0Wh4QoALdNh1koKoF7/mA==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.Portable.Compatibility.nuspec", - "lib/netcore50/System.ComponentModel.DataAnnotations.dll", - "lib/netcore50/System.Core.dll", - "lib/netcore50/System.dll", - "lib/netcore50/System.Net.dll", - "lib/netcore50/System.Numerics.dll", - "lib/netcore50/System.Runtime.Serialization.dll", - "lib/netcore50/System.ServiceModel.dll", - "lib/netcore50/System.ServiceModel.Web.dll", - "lib/netcore50/System.Windows.dll", - "lib/netcore50/System.Xml.dll", - "lib/netcore50/System.Xml.Linq.dll", - "lib/netcore50/System.Xml.Serialization.dll", - "lib/dnxcore50/System.ComponentModel.DataAnnotations.dll", - "lib/dnxcore50/System.Core.dll", - "lib/dnxcore50/System.dll", - "lib/dnxcore50/System.Net.dll", - "lib/dnxcore50/System.Numerics.dll", - "lib/dnxcore50/System.Runtime.Serialization.dll", - "lib/dnxcore50/System.ServiceModel.dll", - "lib/dnxcore50/System.ServiceModel.Web.dll", - "lib/dnxcore50/System.Windows.dll", - "lib/dnxcore50/System.Xml.dll", - "lib/dnxcore50/System.Xml.Linq.dll", - "lib/dnxcore50/System.Xml.Serialization.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/mscorlib.dll", - "ref/dotnet/System.ComponentModel.DataAnnotations.dll", - "ref/dotnet/System.Core.dll", - "ref/dotnet/System.dll", - "ref/dotnet/System.Net.dll", - "ref/dotnet/System.Numerics.dll", - "ref/dotnet/System.Runtime.Serialization.dll", - "ref/dotnet/System.ServiceModel.dll", - "ref/dotnet/System.ServiceModel.Web.dll", - "ref/dotnet/System.Windows.dll", - "ref/dotnet/System.Xml.dll", - "ref/dotnet/System.Xml.Linq.dll", - "ref/dotnet/System.Xml.Serialization.dll", - "runtimes/aot/lib/netcore50/mscorlib.dll", - "runtimes/aot/lib/netcore50/System.ComponentModel.DataAnnotations.dll", - "runtimes/aot/lib/netcore50/System.Core.dll", - "runtimes/aot/lib/netcore50/System.dll", - "runtimes/aot/lib/netcore50/System.Net.dll", - "runtimes/aot/lib/netcore50/System.Numerics.dll", - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.dll", - "runtimes/aot/lib/netcore50/System.ServiceModel.dll", - "runtimes/aot/lib/netcore50/System.ServiceModel.Web.dll", - "runtimes/aot/lib/netcore50/System.Windows.dll", - "runtimes/aot/lib/netcore50/System.Xml.dll", - "runtimes/aot/lib/netcore50/System.Xml.Linq.dll", - "runtimes/aot/lib/netcore50/System.Xml.Serialization.dll", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/mscorlib.dll", - "ref/netcore50/System.ComponentModel.DataAnnotations.dll", - "ref/netcore50/System.Core.dll", - "ref/netcore50/System.dll", - "ref/netcore50/System.Net.dll", - "ref/netcore50/System.Numerics.dll", - "ref/netcore50/System.Runtime.Serialization.dll", - "ref/netcore50/System.ServiceModel.dll", - "ref/netcore50/System.ServiceModel.Web.dll", - "ref/netcore50/System.Windows.dll", - "ref/netcore50/System.Xml.dll", - "ref/netcore50/System.Xml.Linq.dll", - "ref/netcore50/System.Xml.Serialization.dll", - "ref/wp80/_._", - "ref/wpa81/_._", - "package/services/metadata/core-properties/8131b8ae030a45e7986737a0c1d04ef5.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore.Runtime/1.0.0": { - "sha512": "AjaMNpXLW4miEQorIqyn6iQ+BZBId6qXkhwyeh1vl6kXLqosZusbwmLNlvj/xllSQrd3aImJbvlHusam85g+xQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.Runtime.nuspec", - "runtime.json", - "package/services/metadata/core-properties/f289de2ffef9428684eca0c193bc8765.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore.Runtime.CoreCLR-arm/1.0.0": { - "sha512": "hoJfIl981eXwn9Tz8onO/J1xaYApIfp/YrhjSh9rRhml1U5Wj80LBgyp/6n+KI3VlvcAraThhnHnCTp+M3Uh+w==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.Runtime.CoreCLR-arm.nuspec", - "runtimes/win8-arm/native/clretwrc.dll", - "runtimes/win8-arm/native/coreclr.dll", - "runtimes/win8-arm/native/dbgshim.dll", - "runtimes/win8-arm/native/mscordaccore.dll", - "runtimes/win8-arm/native/mscordbi.dll", - "runtimes/win8-arm/native/mscorrc.debug.dll", - "runtimes/win8-arm/native/mscorrc.dll", - "runtimes/win8-arm/lib/dotnet/mscorlib.ni.dll", - "ref/dotnet/_._", - "package/services/metadata/core-properties/c1cbeaed81514106b6b7971ac193f132.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": { - "sha512": "DaY5Z13xCZpnVIGluC5sCo4/0wy1rl6mptBH7v3RYi3guAmG88aSeFoQzyZepo0H0jEixUxNFM0+MB6Jc+j0bw==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.Runtime.CoreCLR-x64.nuspec", - "runtimes/win7-x64/native/clretwrc.dll", - "runtimes/win7-x64/native/coreclr.dll", - "runtimes/win7-x64/native/dbgshim.dll", - "runtimes/win7-x64/native/mscordaccore.dll", - "runtimes/win7-x64/native/mscordbi.dll", - "runtimes/win7-x64/native/mscorrc.debug.dll", - "runtimes/win7-x64/native/mscorrc.dll", - "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll", - "ref/dotnet/_._", - "package/services/metadata/core-properties/bd7bd26b6b8242179b5b8ca3d9ffeb95.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore.Runtime.CoreCLR-x86/1.0.0": { - "sha512": "2LDffu5Is/X01GVPVuye4Wmz9/SyGDNq1Opgl5bXG3206cwNiCwsQgILOtfSWVp5mn4w401+8cjhBy3THW8HQQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.Runtime.CoreCLR-x86.nuspec", - "runtimes/win7-x86/native/clretwrc.dll", - "runtimes/win7-x86/native/coreclr.dll", - "runtimes/win7-x86/native/dbgshim.dll", - "runtimes/win7-x86/native/mscordaccore.dll", - "runtimes/win7-x86/native/mscordbi.dll", - "runtimes/win7-x86/native/mscorrc.debug.dll", - "runtimes/win7-x86/native/mscorrc.dll", - "runtimes/win7-x86/lib/dotnet/mscorlib.ni.dll", - "ref/dotnet/_._", - "package/services/metadata/core-properties/dd7e29450ade4bdaab9794850cd11d7a.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore.Runtime.Native/1.0.0": { - "sha512": "tMsWWrH1AJCguiM22zK/vr6COxqz62Q1F02B07IXAUN405R3HGk5SkD/DL0Hte+OTjNtW9LkKXpOggGBRwYFNg==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.Runtime.Native.nuspec", - "_._", - "package/services/metadata/core-properties/a985563978b547f984c16150ef73e353.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore.Targets/1.0.0": { - "sha512": "XfITpPjYLYRmAeZtb9diw6P7ylLQsSC1U2a/xj10iQpnHxkiLEBXop/psw15qMPuNca7lqgxWvzZGpQxphuXaw==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.Targets.nuspec", - "runtime.json", - "package/services/metadata/core-properties/5413a5ed3fde4121a1c9ee8feb12ba66.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore.Targets.DNXCore/4.9.0": { - "sha512": "32pNFQTn/nVB15hYIztKn1Ij05ibGn8C9CfOiENbc+GbzxWWQQztDyWhS/vGzUcrFFZpcXbJ0yGHem2syNHMwQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.Targets.DNXCore.nuspec", - "runtime.json", - "package/services/metadata/core-properties/49a06ab6e27f4682b9b0c258f69b4fe2.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore.Targets.NETFramework/4.6.0": { - "sha512": "5VA/gjJfOoohzsKYq1Qg8SY6Yc70dV3+DIQtQPYTy3fMr0brXspKTj4vb0h7l8eDt/YCVzcTloIv5sfb7Ora2g==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.Targets.NETFramework.nuspec", - "runtime.json", - "package/services/metadata/core-properties/15e50ede165c418095afa0605f919648.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { - "sha512": "jszcJ6okLlhqF4OQbhSbixLOuLUyVT3BP7Y7/i7fcDMwnHBd1Pmdz6M1Al9SMDKVLA2oSaItg4tq6C0ydv8lYQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.Targets.UniversalWindowsPlatform.nuspec", - "runtime.json", - "package/services/metadata/core-properties/0d18100c9f8c491492d8ddeaa9581526.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0": { - "sha512": "NC+dpFMdhujz2sWAdJ8EmBk07p1zOlNi0FCCnZEbzftABpw9xZ99EMP/bUJrPTgCxHfzJAiuLPOtAauzVINk0w==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.Windows.ApiSets-x64.nuspec", - "runtimes/win7-x64/native/API-MS-Win-Base-Util-L1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-com-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-com-private-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-comm-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-console-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-console-l2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-datetime-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-datetime-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-debug-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-debug-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-delayload-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-errorhandling-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-errorhandling-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-fibers-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-fibers-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-file-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-file-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-file-l1-2-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-file-l2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-file-l2-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-handle-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-heap-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-heap-obsolete-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-interlocked-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-io-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-io-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", - "runtimes/win7-x64/native/api-ms-win-core-libraryloader-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-libraryloader-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-localization-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-localization-l1-2-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-localization-l2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-localization-obsolete-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-2.dll", - "runtimes/win7-x64/native/api-ms-win-core-memory-l1-1-3.dll", - "runtimes/win7-x64/native/api-ms-win-core-namedpipe-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-normalization-l1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-PrivateProfile-L1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-privateprofile-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-processenvironment-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-processenvironment-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-processsecurity-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-processthreads-l1-1-2.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-profile-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-psapi-ansi-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-psapi-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-psapi-obsolete-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-realtime-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-registry-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-registry-l2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-rtlsupport-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-shlwapi-legacy-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-shutdown-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-shutdown-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-string-l1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-String-L2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-string-obsolete-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll", - "runtimes/win7-x64/native/API-MS-Win-Core-StringAnsi-L1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-stringloader-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-stringloader-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-synch-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-synch-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll", - "runtimes/win7-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll", - "runtimes/win7-x64/native/api-ms-win-core-threadpool-l1-2-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-threadpool-legacy-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-threadpool-private-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-timezone-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-url-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-util-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-version-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-error-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-error-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-registration-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-robuffer-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-winrt-string-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-wow64-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-xstate-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-core-xstate-l2-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-devices-config-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-devices-config-L1-1-1.dll", - "runtimes/win7-x64/native/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Eventing-Consumer-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Eventing-Controller-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Eventing-Legacy-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-Eventing-Provider-L1-1-0.dll", - "runtimes/win7-x64/native/API-MS-Win-EventLog-Legacy-L1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-ro-typeresolution-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-security-base-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-security-cpwl-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-security-cryptoapi-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-security-lsalookup-l2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-security-lsalookup-l2-1-1.dll", - "runtimes/win7-x64/native/API-MS-Win-Security-LsaPolicy-L1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-security-provider-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-security-sddl-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-service-core-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-service-core-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-service-management-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-service-management-l2-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-service-private-l1-1-0.dll", - "runtimes/win7-x64/native/api-ms-win-service-private-l1-1-1.dll", - "runtimes/win7-x64/native/api-ms-win-service-winsvc-l1-1-0.dll", - "runtimes/win7-x64/native/ext-ms-win-advapi32-encryptedfile-l1-1-0.dll", - "runtimes/win8-x64/native/api-ms-win-core-file-l1-2-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-file-l2-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", - "runtimes/win8-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll", - "runtimes/win8-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", - "runtimes/win8-x64/native/api-ms-win-core-localization-l1-2-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-localization-obsolete-l1-2-0.dll", - "runtimes/win8-x64/native/api-ms-win-core-memory-l1-1-2.dll", - "runtimes/win8-x64/native/api-ms-win-core-memory-l1-1-3.dll", - "runtimes/win8-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-privateprofile-l1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-processthreads-l1-1-2.dll", - "runtimes/win8-x64/native/api-ms-win-core-shutdown-l1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-stringloader-l1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll", - "runtimes/win8-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll", - "runtimes/win8-x64/native/api-ms-win-core-winrt-error-l1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-core-xstate-l2-1-0.dll", - "runtimes/win8-x64/native/API-MS-Win-devices-config-L1-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-security-cpwl-l1-1-0.dll", - "runtimes/win8-x64/native/api-ms-win-security-cryptoapi-l1-1-0.dll", - "runtimes/win8-x64/native/api-ms-win-security-lsalookup-l2-1-1.dll", - "runtimes/win8-x64/native/api-ms-win-service-private-l1-1-1.dll", - "runtimes/win81-x64/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", - "runtimes/win81-x64/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", - "runtimes/win81-x64/native/api-ms-win-core-memory-l1-1-3.dll", - "runtimes/win81-x64/native/api-ms-win-core-namedpipe-l1-2-1.dll", - "runtimes/win81-x64/native/api-ms-win-core-string-obsolete-l1-1-1.dll", - "runtimes/win81-x64/native/api-ms-win-core-sysinfo-l1-2-2.dll", - "runtimes/win81-x64/native/api-ms-win-core-sysinfo-l1-2-3.dll", - "runtimes/win81-x64/native/api-ms-win-security-cpwl-l1-1-0.dll", - "runtimes/win10-x64/native/_._", - "package/services/metadata/core-properties/b25894a2a9234c329a98dc84006b2292.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.NETCore.Windows.ApiSets-x86/1.0.0": { - "sha512": "/HDRdhz5bZyhHwQ/uk/IbnDIX5VDTsHntEZYkTYo57dM+U3Ttel9/OJv0mjL64wTO/QKUJJNKp9XO+m7nSVjJQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.NETCore.Windows.ApiSets-x86.nuspec", - "runtimes/win7-x86/native/API-MS-Win-Base-Util-L1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-com-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-com-private-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-comm-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-console-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-console-l2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-datetime-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-datetime-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-debug-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-debug-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-delayload-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-errorhandling-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-errorhandling-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-fibers-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-fibers-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-file-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-file-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-file-l1-2-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-file-l2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-file-l2-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-handle-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-heap-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-heap-obsolete-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-interlocked-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-io-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-io-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", - "runtimes/win7-x86/native/api-ms-win-core-libraryloader-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-libraryloader-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-localization-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-localization-l1-2-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-localization-l2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-localization-obsolete-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-2.dll", - "runtimes/win7-x86/native/api-ms-win-core-memory-l1-1-3.dll", - "runtimes/win7-x86/native/api-ms-win-core-namedpipe-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-normalization-l1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-PrivateProfile-L1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-privateprofile-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-processenvironment-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-processenvironment-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-processsecurity-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-processthreads-l1-1-2.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-ProcessTopology-Obsolete-L1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-profile-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-psapi-ansi-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-psapi-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-psapi-obsolete-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-realtime-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-registry-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-registry-l2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-rtlsupport-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-shlwapi-legacy-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-shlwapi-obsolete-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-shutdown-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-shutdown-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-string-l1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-String-L2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-string-obsolete-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll", - "runtimes/win7-x86/native/API-MS-Win-Core-StringAnsi-L1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-stringloader-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-stringloader-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-synch-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-synch-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll", - "runtimes/win7-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll", - "runtimes/win7-x86/native/api-ms-win-core-threadpool-l1-2-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-threadpool-legacy-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-threadpool-private-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-timezone-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-url-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-util-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-version-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-error-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-error-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-registration-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-robuffer-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-roparameterizediid-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-winrt-string-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-wow64-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-xstate-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-core-xstate-l2-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-devices-config-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-devices-config-L1-1-1.dll", - "runtimes/win7-x86/native/API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Eventing-Consumer-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Eventing-Controller-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Eventing-Legacy-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-Eventing-Provider-L1-1-0.dll", - "runtimes/win7-x86/native/API-MS-Win-EventLog-Legacy-L1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-ro-typeresolution-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-security-base-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-security-cpwl-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-security-cryptoapi-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-security-lsalookup-l2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-security-lsalookup-l2-1-1.dll", - "runtimes/win7-x86/native/API-MS-Win-Security-LsaPolicy-L1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-security-provider-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-security-sddl-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-service-core-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-service-core-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-service-management-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-service-management-l2-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-service-private-l1-1-0.dll", - "runtimes/win7-x86/native/api-ms-win-service-private-l1-1-1.dll", - "runtimes/win7-x86/native/api-ms-win-service-winsvc-l1-1-0.dll", - "runtimes/win7-x86/native/ext-ms-win-advapi32-encryptedfile-l1-1-0.dll", - "runtimes/win8-x86/native/api-ms-win-core-file-l1-2-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-file-l2-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-kernel32-legacy-l1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", - "runtimes/win8-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-1.dll", - "runtimes/win8-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", - "runtimes/win8-x86/native/api-ms-win-core-localization-l1-2-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-localization-obsolete-l1-2-0.dll", - "runtimes/win8-x86/native/api-ms-win-core-memory-l1-1-2.dll", - "runtimes/win8-x86/native/api-ms-win-core-memory-l1-1-3.dll", - "runtimes/win8-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-privateprofile-l1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-processthreads-l1-1-2.dll", - "runtimes/win8-x86/native/api-ms-win-core-shutdown-l1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-stringloader-l1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll", - "runtimes/win8-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll", - "runtimes/win8-x86/native/api-ms-win-core-winrt-error-l1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-core-xstate-l2-1-0.dll", - "runtimes/win8-x86/native/API-MS-Win-devices-config-L1-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-security-cpwl-l1-1-0.dll", - "runtimes/win8-x86/native/api-ms-win-security-cryptoapi-l1-1-0.dll", - "runtimes/win8-x86/native/api-ms-win-security-lsalookup-l2-1-1.dll", - "runtimes/win8-x86/native/api-ms-win-service-private-l1-1-1.dll", - "runtimes/win81-x86/native/api-ms-win-core-kernel32-legacy-l1-1-2.dll", - "runtimes/win81-x86/native/API-MS-Win-Core-Kernel32-Private-L1-1-2.dll", - "runtimes/win81-x86/native/api-ms-win-core-memory-l1-1-3.dll", - "runtimes/win81-x86/native/api-ms-win-core-namedpipe-l1-2-1.dll", - "runtimes/win81-x86/native/api-ms-win-core-string-obsolete-l1-1-1.dll", - "runtimes/win81-x86/native/api-ms-win-core-sysinfo-l1-2-2.dll", - "runtimes/win81-x86/native/api-ms-win-core-sysinfo-l1-2-3.dll", - "runtimes/win81-x86/native/api-ms-win-security-cpwl-l1-1-0.dll", - "runtimes/win10-x86/native/_._", - "package/services/metadata/core-properties/b773d829b3664669b45b4b4e97bdb635.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.VisualBasic/10.0.0": { - "sha512": "5BEm2/HAVd97whRlCChU7rmSh/9cwGlZ/NTNe3Jl07zuPWfKQq5TUvVNUmdvmEe8QRecJLZ4/e7WF1i1O8V42g==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.VisualBasic.nuspec", - "lib/dotnet/Microsoft.VisualBasic.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/netcore50/Microsoft.VisualBasic.dll", - "lib/wpa81/_._", - "ref/dotnet/Microsoft.VisualBasic.dll", - "ref/dotnet/Microsoft.VisualBasic.xml", - "ref/dotnet/zh-hant/Microsoft.VisualBasic.xml", - "ref/dotnet/de/Microsoft.VisualBasic.xml", - "ref/dotnet/fr/Microsoft.VisualBasic.xml", - "ref/dotnet/it/Microsoft.VisualBasic.xml", - "ref/dotnet/ja/Microsoft.VisualBasic.xml", - "ref/dotnet/ko/Microsoft.VisualBasic.xml", - "ref/dotnet/ru/Microsoft.VisualBasic.xml", - "ref/dotnet/zh-hans/Microsoft.VisualBasic.xml", - "ref/dotnet/es/Microsoft.VisualBasic.xml", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/Microsoft.VisualBasic.dll", - "ref/netcore50/Microsoft.VisualBasic.xml", - "ref/wpa81/_._", - "package/services/metadata/core-properties/5dbd3a7042354092a8b352b655cf4376.psmdcp", - "[Content_Types].xml" - ] - }, - "Microsoft.Win32.Primitives/4.0.0": { - "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==", - "type": "Package", - "files": [ - "_rels/.rels", - "Microsoft.Win32.Primitives.nuspec", - "lib/dotnet/Microsoft.Win32.Primitives.dll", - "lib/net46/Microsoft.Win32.Primitives.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/Microsoft.Win32.Primitives.dll", - "ref/dotnet/Microsoft.Win32.Primitives.xml", - "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", - "ref/dotnet/de/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/ru/Microsoft.Win32.Primitives.xml", - "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", - "ref/dotnet/es/Microsoft.Win32.Primitives.xml", - "ref/net46/Microsoft.Win32.Primitives.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/1d4eb9d0228b48b88d2df3822fba2d86.psmdcp", - "[Content_Types].xml" - ] - }, - "System.AppContext/4.0.0": { - "sha512": "gUoYgAWDC3+xhKeU5KSLbYDhTdBYk9GssrMSCcWUADzOglW+s0AmwVhOUGt2tL5xUl7ZXoYTPdA88zCgKrlG0A==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.AppContext.nuspec", - "lib/netcore50/System.AppContext.dll", - "lib/DNXCore50/System.AppContext.dll", - "lib/net46/System.AppContext.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.AppContext.dll", - "ref/dotnet/System.AppContext.xml", - "ref/dotnet/zh-hant/System.AppContext.xml", - "ref/dotnet/de/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/zh-hans/System.AppContext.xml", - "ref/dotnet/es/System.AppContext.xml", - "ref/net46/System.AppContext.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/3b390478e0cd42eb8818bbab19299738.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Collections/4.0.10": { - "sha512": "ux6ilcZZjV/Gp7JEZpe+2V1eTueq6NuoGRM3eZCFuPM25hLVVgCRuea6STW8hvqreIOE59irJk5/ovpA5xQipw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Collections.nuspec", - "lib/netcore50/System.Collections.dll", - "lib/DNXCore50/System.Collections.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Collections.dll", - "ref/dotnet/System.Collections.xml", - "ref/dotnet/zh-hant/System.Collections.xml", - "ref/dotnet/de/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/zh-hans/System.Collections.xml", - "ref/dotnet/es/System.Collections.xml", - "runtimes/win8-aot/lib/netcore50/System.Collections.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/b4f8061406e54dbda8f11b23186be11a.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Collections.Concurrent/4.0.10": { - "sha512": "ZtMEqOPAjAIqR8fqom9AOKRaB94a+emO2O8uOP6vyJoNswSPrbiwN7iH53rrVpvjMVx0wr4/OMpI7486uGZjbw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Collections.Concurrent.nuspec", - "lib/dotnet/System.Collections.Concurrent.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Collections.Concurrent.dll", - "ref/dotnet/System.Collections.Concurrent.xml", - "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", - "ref/dotnet/de/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/zh-hans/System.Collections.Concurrent.xml", - "ref/dotnet/es/System.Collections.Concurrent.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/c982a1e1e1644b62952fc4d4dcbe0d42.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Collections.Immutable/1.1.37": { - "sha512": "fTpqwZYBzoklTT+XjTRK8KxvmrGkYHzBiylCcKyQcxiOM8k+QvhNBxRvFHDWzy4OEP5f8/9n+xQ9mEgEXY+muA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Collections.Immutable.nuspec", - "lib/dotnet/System.Collections.Immutable.dll", - "lib/dotnet/System.Collections.Immutable.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", - "package/services/metadata/core-properties/a02fdeabe1114a24bba55860b8703852.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Collections.NonGeneric/4.0.0": { - "sha512": "rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Collections.NonGeneric.nuspec", - "lib/dotnet/System.Collections.NonGeneric.dll", - "lib/net46/System.Collections.NonGeneric.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Collections.NonGeneric.dll", - "ref/dotnet/System.Collections.NonGeneric.xml", - "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", - "ref/dotnet/de/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/zh-hans/System.Collections.NonGeneric.xml", - "ref/dotnet/es/System.Collections.NonGeneric.xml", - "ref/net46/System.Collections.NonGeneric.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/185704b1dc164b078b61038bde9ab31a.psmdcp", - "[Content_Types].xml" - ] - }, - "System.ComponentModel/4.0.0": { - "sha512": "BzpLdSi++ld7rJLOOt5f/G9GxujP202bBgKORsHcGV36rLB0mfSA2h8chTMoBzFhgN7TE14TmJ2J7Q1RyNCTAw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.ComponentModel.nuspec", - "lib/dotnet/System.ComponentModel.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/netcore50/System.ComponentModel.dll", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.ComponentModel.dll", - "ref/dotnet/System.ComponentModel.xml", - "ref/dotnet/zh-hant/System.ComponentModel.xml", - "ref/dotnet/de/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/zh-hans/System.ComponentModel.xml", - "ref/dotnet/es/System.ComponentModel.xml", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.ComponentModel.dll", - "ref/netcore50/System.ComponentModel.xml", - "ref/wp80/_._", - "ref/wpa81/_._", - "package/services/metadata/core-properties/58b9abdedb3a4985a487cb8bf4bdcbd7.psmdcp", - "[Content_Types].xml" - ] - }, - "System.ComponentModel.Annotations/4.0.10": { - "sha512": "7+XGyEZx24nP1kpHxCB9e+c6D0fdVDvFwE1xujE9BzlXyNVcy5J5aIO0H/ECupx21QpyRvzZibGAHfL/XLL6dw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.ComponentModel.Annotations.nuspec", - "lib/dotnet/System.ComponentModel.Annotations.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.ComponentModel.Annotations.dll", - "ref/dotnet/System.ComponentModel.Annotations.xml", - "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", - "ref/dotnet/de/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/zh-hans/System.ComponentModel.Annotations.xml", - "ref/dotnet/es/System.ComponentModel.Annotations.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/012e5fa97b3d450eb20342cd9ba88069.psmdcp", - "[Content_Types].xml" - ] - }, - "System.ComponentModel.EventBasedAsync/4.0.10": { - "sha512": "d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.ComponentModel.EventBasedAsync.nuspec", - "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", - "ref/dotnet/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/de/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/zh-hans/System.ComponentModel.EventBasedAsync.xml", - "ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/5094900f1f7e4f4dae27507acc72f2a5.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Diagnostics.Contracts/4.0.0": { - "sha512": "lMc7HNmyIsu0pKTdA4wf+FMq5jvouUd+oUpV4BdtyqoV0Pkbg9u/7lTKFGqpjZRQosWHq1+B32Lch2wf4AmloA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Diagnostics.Contracts.nuspec", - "lib/netcore50/System.Diagnostics.Contracts.dll", - "lib/DNXCore50/System.Diagnostics.Contracts.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Diagnostics.Contracts.dll", - "ref/dotnet/System.Diagnostics.Contracts.xml", - "ref/dotnet/zh-hant/System.Diagnostics.Contracts.xml", - "ref/dotnet/de/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/zh-hans/System.Diagnostics.Contracts.xml", - "ref/dotnet/es/System.Diagnostics.Contracts.xml", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Diagnostics.Contracts.dll", - "ref/netcore50/System.Diagnostics.Contracts.xml", - "ref/wp80/_._", - "ref/wpa81/_._", - "package/services/metadata/core-properties/c6cd3d0bbc304cbca14dc3d6bff6579c.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Diagnostics.Debug/4.0.10": { - "sha512": "pi2KthuvI2LWV2c2V+fwReDsDiKpNl040h6DcwFOb59SafsPT/V1fCy0z66OKwysurJkBMmp5j5CBe3Um+ub0g==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Diagnostics.Debug.nuspec", - "lib/DNXCore50/System.Diagnostics.Debug.dll", - "lib/netcore50/System.Diagnostics.Debug.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Diagnostics.Debug.dll", - "ref/dotnet/System.Diagnostics.Debug.xml", - "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", - "ref/dotnet/de/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/zh-hans/System.Diagnostics.Debug.xml", - "ref/dotnet/es/System.Diagnostics.Debug.xml", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/bfb05c26051f4a5f9015321db9cb045c.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Diagnostics.StackTrace/4.0.0": { - "sha512": "PItgenqpRiMqErvQONBlfDwctKpWVrcDSW5pppNZPJ6Bpiyz+KjsWoSiaqs5dt03HEbBTMNCrZb8KCkh7YfXmw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Diagnostics.StackTrace.nuspec", - "lib/DNXCore50/System.Diagnostics.StackTrace.dll", - "lib/netcore50/System.Diagnostics.StackTrace.dll", - "lib/net46/System.Diagnostics.StackTrace.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Diagnostics.StackTrace.dll", - "ref/dotnet/System.Diagnostics.StackTrace.xml", - "ref/dotnet/zh-hant/System.Diagnostics.StackTrace.xml", - "ref/dotnet/de/System.Diagnostics.StackTrace.xml", - "ref/dotnet/fr/System.Diagnostics.StackTrace.xml", - "ref/dotnet/it/System.Diagnostics.StackTrace.xml", - "ref/dotnet/ja/System.Diagnostics.StackTrace.xml", - "ref/dotnet/ko/System.Diagnostics.StackTrace.xml", - "ref/dotnet/ru/System.Diagnostics.StackTrace.xml", - "ref/dotnet/zh-hans/System.Diagnostics.StackTrace.xml", - "ref/dotnet/es/System.Diagnostics.StackTrace.xml", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll", - "ref/net46/System.Diagnostics.StackTrace.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/5c7ca489a36944d895c628fced7e9107.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Diagnostics.Tools/4.0.0": { - "sha512": "uw5Qi2u5Cgtv4xv3+8DeB63iaprPcaEHfpeJqlJiLjIVy6v0La4ahJ6VW9oPbJNIjcavd24LKq0ctT9ssuQXsw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Diagnostics.Tools.nuspec", - "lib/DNXCore50/System.Diagnostics.Tools.dll", - "lib/netcore50/System.Diagnostics.Tools.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Diagnostics.Tools.dll", - "ref/dotnet/System.Diagnostics.Tools.xml", - "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", - "ref/dotnet/de/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/zh-hans/System.Diagnostics.Tools.xml", - "ref/dotnet/es/System.Diagnostics.Tools.xml", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Diagnostics.Tools.dll", - "ref/netcore50/System.Diagnostics.Tools.xml", - "ref/wp80/_._", - "ref/wpa81/_._", - "package/services/metadata/core-properties/20f622a1ae5b4e3992fc226d88d36d59.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Diagnostics.Tracing/4.0.20": { - "sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Diagnostics.Tracing.nuspec", - "lib/netcore50/System.Diagnostics.Tracing.dll", - "lib/DNXCore50/System.Diagnostics.Tracing.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Diagnostics.Tracing.dll", - "ref/dotnet/System.Diagnostics.Tracing.xml", - "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", - "ref/dotnet/de/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/zh-hans/System.Diagnostics.Tracing.xml", - "ref/dotnet/es/System.Diagnostics.Tracing.xml", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/13423e75e6344b289b3779b51522737c.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Dynamic.Runtime/4.0.10": { - "sha512": "r10VTLdlxtYp46BuxomHnwx7vIoMOr04CFoC/jJJfY22f7HQQ4P+cXY2Nxo6/rIxNNqOxwdbQQwv7Gl88Jsu1w==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Dynamic.Runtime.nuspec", - "lib/netcore50/System.Dynamic.Runtime.dll", - "lib/DNXCore50/System.Dynamic.Runtime.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Dynamic.Runtime.dll", - "ref/dotnet/System.Dynamic.Runtime.xml", - "ref/dotnet/zh-hant/System.Dynamic.Runtime.xml", - "ref/dotnet/de/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/zh-hans/System.Dynamic.Runtime.xml", - "ref/dotnet/es/System.Dynamic.Runtime.xml", - "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "package/services/metadata/core-properties/b7571751b95d4952803c5011dab33c3b.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Globalization/4.0.10": { - "sha512": "kzRtbbCNAxdafFBDogcM36ehA3th8c1PGiz8QRkZn8O5yMBorDHSK8/TGJPYOaCS5zdsGk0u9qXHnW91nqy7fw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Globalization.nuspec", - "lib/netcore50/System.Globalization.dll", - "lib/DNXCore50/System.Globalization.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Globalization.dll", - "ref/dotnet/System.Globalization.xml", - "ref/dotnet/zh-hant/System.Globalization.xml", - "ref/dotnet/de/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/zh-hans/System.Globalization.xml", - "ref/dotnet/es/System.Globalization.xml", - "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/93bcad242a4e4ad7afd0b53244748763.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Globalization.Calendars/4.0.0": { - "sha512": "cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Globalization.Calendars.nuspec", - "lib/netcore50/System.Globalization.Calendars.dll", - "lib/DNXCore50/System.Globalization.Calendars.dll", - "lib/net46/System.Globalization.Calendars.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Globalization.Calendars.dll", - "ref/dotnet/System.Globalization.Calendars.xml", - "ref/dotnet/zh-hant/System.Globalization.Calendars.xml", - "ref/dotnet/de/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/zh-hans/System.Globalization.Calendars.xml", - "ref/dotnet/es/System.Globalization.Calendars.xml", - "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", - "ref/net46/System.Globalization.Calendars.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/95fc8eb4808e4f31a967f407c94eba0f.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Globalization.Extensions/4.0.0": { - "sha512": "rqbUXiwpBCvJ18ySCsjh20zleazO+6fr3s5GihC2sVwhyS0MUl6+oc5Rzk0z6CKkS4kmxbZQSeZLsK7cFSO0ng==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Globalization.Extensions.nuspec", - "lib/dotnet/System.Globalization.Extensions.dll", - "lib/net46/System.Globalization.Extensions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Globalization.Extensions.dll", - "ref/dotnet/System.Globalization.Extensions.xml", - "ref/dotnet/zh-hant/System.Globalization.Extensions.xml", - "ref/dotnet/de/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/zh-hans/System.Globalization.Extensions.xml", - "ref/dotnet/es/System.Globalization.Extensions.xml", - "ref/net46/System.Globalization.Extensions.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/a0490a34737f448fb53635b5210e48e4.psmdcp", - "[Content_Types].xml" - ] - }, - "System.IO/4.0.10": { - "sha512": "kghf1CeYT+W2lw8a50/GxFz5HR9t6RkL4BvjxtTp1NxtEFWywnMA9W8FH/KYXiDNThcw9u/GOViDON4iJFGXIQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.IO.nuspec", - "lib/netcore50/System.IO.dll", - "lib/DNXCore50/System.IO.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.IO.dll", - "ref/dotnet/System.IO.xml", - "ref/dotnet/zh-hant/System.IO.xml", - "ref/dotnet/de/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/zh-hans/System.IO.xml", - "ref/dotnet/es/System.IO.xml", - "runtimes/win8-aot/lib/netcore50/System.IO.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/db72fd58a86b4d13a6d2858ebec46705.psmdcp", - "[Content_Types].xml" - ] - }, - "System.IO.Compression/4.0.0": { - "sha512": "S+ljBE3py8pujTrsOOYHtDg2cnAifn6kBu/pfh1hMWIXd8DoVh0ADTA6Puv4q+nYj+Msm6JoFLNwuRSmztbsDQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.IO.Compression.nuspec", - "lib/dotnet/System.IO.Compression.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/netcore50/System.IO.Compression.dll", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.IO.Compression.dll", - "ref/dotnet/System.IO.Compression.xml", - "ref/dotnet/zh-hant/System.IO.Compression.xml", - "ref/dotnet/de/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/zh-hans/System.IO.Compression.xml", - "ref/dotnet/es/System.IO.Compression.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.IO.Compression.dll", - "ref/netcore50/System.IO.Compression.xml", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "package/services/metadata/core-properties/cdbbc16eba65486f85d2caf9357894f3.psmdcp", - "[Content_Types].xml" - ] - }, - "System.IO.Compression.clrcompression-arm/4.0.0": { - "sha512": "Kk21GecAbI+H6tMP6/lMssGObbhoHwLiREiB5UkNMCypdxACuF+6gmrdDTousCUcbH28CJeo7tArrnUc+bchuw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.IO.Compression.clrcompression-arm.nuspec", - "runtimes/win7-arm/native/clrcompression.dll", - "runtimes/win10-arm/native/ClrCompression.dll", - "package/services/metadata/core-properties/e09228dcfd7b47adb2ddcf73e2eb6ddf.psmdcp", - "[Content_Types].xml" - ] - }, - "System.IO.Compression.clrcompression-x64/4.0.0": { - "sha512": "Lqr+URMwKzf+8HJF6YrqEqzKzDzFJTE4OekaxqdIns71r8Ufbd8SbZa0LKl9q+7nu6Em4SkIEXVMB7plSXekOw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.IO.Compression.clrcompression-x64.nuspec", - "runtimes/win7-x64/native/clrcompression.dll", - "runtimes/win10-x64/native/ClrCompression.dll", - "package/services/metadata/core-properties/416c3fd9fab749d484e0fed458de199f.psmdcp", - "[Content_Types].xml" - ] - }, - "System.IO.Compression.clrcompression-x86/4.0.0": { - "sha512": "GmevpuaMRzYDXHu+xuV10fxTO8DsP7OKweWxYtkaxwVnDSj9X6RBupSiXdiveq9yj/xjZ1NbG+oRRRb99kj+VQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.IO.Compression.clrcompression-x86.nuspec", - "runtimes/win7-x86/native/clrcompression.dll", - "runtimes/win10-x86/native/ClrCompression.dll", - "package/services/metadata/core-properties/cd12f86c8cc2449589dfbe349763f7b3.psmdcp", - "[Content_Types].xml" - ] - }, - "System.IO.Compression.ZipFile/4.0.0": { - "sha512": "pwntmtsJqtt6Lez4Iyv4GVGW6DaXUTo9Rnlsx0MFagRgX+8F/sxG5S/IzDJabBj68sUWViz1QJrRZL4V9ngWDg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.IO.Compression.ZipFile.nuspec", - "lib/dotnet/System.IO.Compression.ZipFile.dll", - "lib/net46/System.IO.Compression.ZipFile.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.IO.Compression.ZipFile.dll", - "ref/dotnet/System.IO.Compression.ZipFile.xml", - "ref/dotnet/zh-hant/System.IO.Compression.ZipFile.xml", - "ref/dotnet/de/System.IO.Compression.ZipFile.xml", - "ref/dotnet/fr/System.IO.Compression.ZipFile.xml", - "ref/dotnet/it/System.IO.Compression.ZipFile.xml", - "ref/dotnet/ja/System.IO.Compression.ZipFile.xml", - "ref/dotnet/ko/System.IO.Compression.ZipFile.xml", - "ref/dotnet/ru/System.IO.Compression.ZipFile.xml", - "ref/dotnet/zh-hans/System.IO.Compression.ZipFile.xml", - "ref/dotnet/es/System.IO.Compression.ZipFile.xml", - "ref/net46/System.IO.Compression.ZipFile.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/60dc66d592ac41008e1384536912dabf.psmdcp", - "[Content_Types].xml" - ] - }, - "System.IO.FileSystem/4.0.0": { - "sha512": "eo05SPWfG+54UA0wxgRIYOuOslq+2QrJLXZaJDDsfLXG15OLguaItW39NYZTqUb4DeGOkU4R0wpOLOW4ynMUDQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.IO.FileSystem.nuspec", - "lib/DNXCore50/System.IO.FileSystem.dll", - "lib/netcore50/System.IO.FileSystem.dll", - "lib/net46/System.IO.FileSystem.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.IO.FileSystem.dll", - "ref/dotnet/System.IO.FileSystem.xml", - "ref/dotnet/zh-hant/System.IO.FileSystem.xml", - "ref/dotnet/de/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/zh-hans/System.IO.FileSystem.xml", - "ref/dotnet/es/System.IO.FileSystem.xml", - "ref/net46/System.IO.FileSystem.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/0405bad2bcdd403884f42a0a79534bc1.psmdcp", - "[Content_Types].xml" - ] - }, - "System.IO.FileSystem.Primitives/4.0.0": { - "sha512": "7pJUvYi/Yq3A5nagqCCiOw3+aJp3xXc/Cjr8dnJDnER3/6kX3LEencfqmXUcPl9+7OvRNyPMNhqsLAcMK6K/KA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.IO.FileSystem.Primitives.nuspec", - "lib/dotnet/System.IO.FileSystem.Primitives.dll", - "lib/net46/System.IO.FileSystem.Primitives.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.IO.FileSystem.Primitives.dll", - "ref/dotnet/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/de/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/zh-hans/System.IO.FileSystem.Primitives.xml", - "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", - "ref/net46/System.IO.FileSystem.Primitives.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/2cf3542156f0426483f92b9e37d8d381.psmdcp", - "[Content_Types].xml" - ] - }, - "System.IO.UnmanagedMemoryStream/4.0.0": { - "sha512": "i2xczgQfwHmolORBNHxV9b5izP8VOBxgSA2gf+H55xBvwqtR+9r9adtzlc7at0MAwiLcsk6V1TZlv2vfRQr8Sw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.IO.UnmanagedMemoryStream.nuspec", - "lib/dotnet/System.IO.UnmanagedMemoryStream.dll", - "lib/net46/System.IO.UnmanagedMemoryStream.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.IO.UnmanagedMemoryStream.dll", - "ref/dotnet/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/zh-hant/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/de/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/fr/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/it/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/ja/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/ko/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/ru/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/zh-hans/System.IO.UnmanagedMemoryStream.xml", - "ref/dotnet/es/System.IO.UnmanagedMemoryStream.xml", - "ref/net46/System.IO.UnmanagedMemoryStream.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/cce1d37d7dc24e5fb4170ead20101af0.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Linq/4.0.0": { - "sha512": "r6Hlc+ytE6m/9UBr+nNRRdoJEWjoeQiT3L3lXYFDHoXk3VYsRBCDNXrawcexw7KPLaH0zamQLiAb6avhZ50cGg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Linq.nuspec", - "lib/dotnet/System.Linq.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/netcore50/System.Linq.dll", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Linq.dll", - "ref/dotnet/System.Linq.xml", - "ref/dotnet/zh-hant/System.Linq.xml", - "ref/dotnet/de/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/zh-hans/System.Linq.xml", - "ref/dotnet/es/System.Linq.xml", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Linq.dll", - "ref/netcore50/System.Linq.xml", - "ref/wp80/_._", - "ref/wpa81/_._", - "package/services/metadata/core-properties/6fcde56ce4094f6a8fff4b28267da532.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Linq.Expressions/4.0.10": { - "sha512": "qhFkPqRsTfXBaacjQhxwwwUoU7TEtwlBIULj7nG7i4qAkvivil31VvOvDKppCSui5yGw0/325ZeNaMYRvTotXw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Linq.Expressions.nuspec", - "lib/netcore50/System.Linq.Expressions.dll", - "lib/DNXCore50/System.Linq.Expressions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Linq.Expressions.dll", - "ref/dotnet/System.Linq.Expressions.xml", - "ref/dotnet/zh-hant/System.Linq.Expressions.xml", - "ref/dotnet/de/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/zh-hans/System.Linq.Expressions.xml", - "ref/dotnet/es/System.Linq.Expressions.xml", - "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "package/services/metadata/core-properties/4e3c061f7c0a427fa5b65bd3d84e9bc3.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Linq.Parallel/4.0.0": { - "sha512": "PtH7KKh1BbzVow4XY17pnrn7Io63ApMdwzRE2o2HnzsKQD/0o7X5xe6mxrDUqTm9ZCR3/PNhAlP13VY1HnHsbA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Linq.Parallel.nuspec", - "lib/dotnet/System.Linq.Parallel.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/netcore50/System.Linq.Parallel.dll", - "lib/wpa81/_._", - "ref/dotnet/System.Linq.Parallel.dll", - "ref/dotnet/System.Linq.Parallel.xml", - "ref/dotnet/zh-hant/System.Linq.Parallel.xml", - "ref/dotnet/de/System.Linq.Parallel.xml", - "ref/dotnet/fr/System.Linq.Parallel.xml", - "ref/dotnet/it/System.Linq.Parallel.xml", - "ref/dotnet/ja/System.Linq.Parallel.xml", - "ref/dotnet/ko/System.Linq.Parallel.xml", - "ref/dotnet/ru/System.Linq.Parallel.xml", - "ref/dotnet/zh-hans/System.Linq.Parallel.xml", - "ref/dotnet/es/System.Linq.Parallel.xml", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Linq.Parallel.dll", - "ref/netcore50/System.Linq.Parallel.xml", - "ref/wpa81/_._", - "package/services/metadata/core-properties/5cc7d35889814f73a239a1b7dcd33451.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Linq.Queryable/4.0.0": { - "sha512": "DIlvCNn3ucFvwMMzXcag4aFnFJ1fdxkQ5NqwJe9Nh7y8ozzhDm07YakQL/yoF3P1dLzY1T2cTpuwbAmVSdXyBA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Linq.Queryable.nuspec", - "lib/dotnet/System.Linq.Queryable.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/netcore50/System.Linq.Queryable.dll", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Linq.Queryable.dll", - "ref/dotnet/System.Linq.Queryable.xml", - "ref/dotnet/zh-hant/System.Linq.Queryable.xml", - "ref/dotnet/de/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/zh-hans/System.Linq.Queryable.xml", - "ref/dotnet/es/System.Linq.Queryable.xml", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Linq.Queryable.dll", - "ref/netcore50/System.Linq.Queryable.xml", - "ref/wp80/_._", - "ref/wpa81/_._", - "package/services/metadata/core-properties/24a380caa65148a7883629840bf0c343.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Net.Http/4.0.0": { - "sha512": "mZuAl7jw/mFY8jUq4ITKECxVBh9a8SJt9BC/+lJbmo7cRKspxE3PsITz+KiaCEsexN5WYPzwBOx0oJH/0HlPyQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Net.Http.nuspec", - "lib/netcore50/System.Net.Http.dll", - "lib/DNXCore50/System.Net.Http.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Net.Http.dll", - "ref/dotnet/System.Net.Http.xml", - "ref/dotnet/zh-hant/System.Net.Http.xml", - "ref/dotnet/de/System.Net.Http.xml", - "ref/dotnet/fr/System.Net.Http.xml", - "ref/dotnet/it/System.Net.Http.xml", - "ref/dotnet/ja/System.Net.Http.xml", - "ref/dotnet/ko/System.Net.Http.xml", - "ref/dotnet/ru/System.Net.Http.xml", - "ref/dotnet/zh-hans/System.Net.Http.xml", - "ref/dotnet/es/System.Net.Http.xml", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Net.Http.dll", - "ref/netcore50/System.Net.Http.xml", - "ref/wpa81/_._", - "package/services/metadata/core-properties/62d64206d25643df9c8d01e867c05e27.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Net.NetworkInformation/4.0.0": { - "sha512": "D68KCf5VK1G1GgFUwD901gU6cnMITksOdfdxUCt9ReCZfT1pigaDqjJ7XbiLAM4jm7TfZHB7g5mbOf1mbG3yBA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Net.NetworkInformation.nuspec", - "lib/netcore50/System.Net.NetworkInformation.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Net.NetworkInformation.dll", - "ref/dotnet/System.Net.NetworkInformation.xml", - "ref/dotnet/zh-hant/System.Net.NetworkInformation.xml", - "ref/dotnet/de/System.Net.NetworkInformation.xml", - "ref/dotnet/fr/System.Net.NetworkInformation.xml", - "ref/dotnet/it/System.Net.NetworkInformation.xml", - "ref/dotnet/ja/System.Net.NetworkInformation.xml", - "ref/dotnet/ko/System.Net.NetworkInformation.xml", - "ref/dotnet/ru/System.Net.NetworkInformation.xml", - "ref/dotnet/zh-hans/System.Net.NetworkInformation.xml", - "ref/dotnet/es/System.Net.NetworkInformation.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Net.NetworkInformation.dll", - "ref/netcore50/System.Net.NetworkInformation.xml", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/5daeae3f7319444d8efbd8a0c539559c.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Net.NetworkInformation/4.0.10-beta-23123": { - "sha512": "NkKpsUm2MLoxT+YlSwexidAw2jGFIJuc6i4H9pT3nU3TQj7MZVursD/ohWj3nyBxthy7i00XLWkRZAwGao/zsg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Net.NetworkInformation.nuspec", - "lib/DNXCore50/System.Net.NetworkInformation.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Net.NetworkInformation.dll", - "ref/dotnet/System.Net.NetworkInformation.xml", - "ref/dotnet/zh-hant/System.Net.NetworkInformation.xml", - "ref/dotnet/de/System.Net.NetworkInformation.xml", - "ref/dotnet/fr/System.Net.NetworkInformation.xml", - "ref/dotnet/it/System.Net.NetworkInformation.xml", - "ref/dotnet/ja/System.Net.NetworkInformation.xml", - "ref/dotnet/ko/System.Net.NetworkInformation.xml", - "ref/dotnet/ru/System.Net.NetworkInformation.xml", - "ref/dotnet/zh-hans/System.Net.NetworkInformation.xml", - "ref/dotnet/es/System.Net.NetworkInformation.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/3328bb5ab25b4ea996ec8f74eee2a320.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Net.Primitives/4.0.10": { - "sha512": "YQqIpmMhnKjIbT7rl6dlf7xM5DxaMR+whduZ9wKb9OhMLjoueAJO3HPPJI+Naf3v034kb+xZqdc3zo44o3HWcg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Net.Primitives.nuspec", - "lib/netcore50/System.Net.Primitives.dll", - "lib/DNXCore50/System.Net.Primitives.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Net.Primitives.dll", - "ref/dotnet/System.Net.Primitives.xml", - "ref/dotnet/zh-hant/System.Net.Primitives.xml", - "ref/dotnet/de/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/zh-hans/System.Net.Primitives.xml", - "ref/dotnet/es/System.Net.Primitives.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/3e2f49037d5645bdad757b3fd5b7c103.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Numerics.Vectors/4.1.0": { - "sha512": "jpubR06GWPoZA0oU5xLM7kHeV59/CKPBXZk4Jfhi0T3DafxbrdueHZ8kXlb+Fb5nd3DAyyMh2/eqEzLX0xv6Qg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Numerics.Vectors.nuspec", - "lib/dotnet/System.Numerics.Vectors.dll", - "lib/net46/System.Numerics.Vectors.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Numerics.Vectors.dll", - "ref/net46/System.Numerics.Vectors.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/e501a8a91f4a4138bd1d134abcc769b0.psmdcp", - "[Content_Types].xml" - ] - }, - "System.ObjectModel/4.0.10": { - "sha512": "Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.ObjectModel.nuspec", - "lib/dotnet/System.ObjectModel.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.ObjectModel.dll", - "ref/dotnet/System.ObjectModel.xml", - "ref/dotnet/zh-hant/System.ObjectModel.xml", - "ref/dotnet/de/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/zh-hans/System.ObjectModel.xml", - "ref/dotnet/es/System.ObjectModel.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/36c2aaa0c5d24949a7707921f36ee13f.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Private.Networking/4.0.0": { - "sha512": "RUEqdBdJjISC65dO8l4LdN7vTdlXH+attUpKnauDUHVtLbIKdlDB9LKoLzCQsTQRP7vzUJHWYXznHJBkjAA7yA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Private.Networking.nuspec", - "lib/netcore50/System.Private.Networking.dll", - "lib/DNXCore50/System.Private.Networking.dll", - "ref/dnxcore50/_._", - "ref/netcore50/_._", - "package/services/metadata/core-properties/b57bed5f606b4402bbdf153fcf3df3ae.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Private.Uri/4.0.0": { - "sha512": "CtuxaCKcRIvPcsqquVl3mPp79EDZPMr2UogfiFCxCs+t2z1VjbpQsKNs1GHZ8VQetqbk1mr0V1yAfMe6y8CHDA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Private.Uri.nuspec", - "lib/netcore50/System.Private.Uri.dll", - "lib/DNXCore50/System.Private.Uri.dll", - "ref/dnxcore50/_._", - "ref/netcore50/_._", - "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", - "package/services/metadata/core-properties/86377e21a22d44bbba860094428d894c.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Reflection/4.0.10": { - "sha512": "WZ+4lEE4gqGx6mrqLhSiW4oi6QLPWwdNjzhhTONmhELOrW8Cw9phlO9tltgvRUuQUqYtBiliFwhO5S5fCJElVw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Reflection.nuspec", - "lib/netcore50/System.Reflection.dll", - "lib/DNXCore50/System.Reflection.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Reflection.dll", - "ref/dotnet/System.Reflection.xml", - "ref/dotnet/zh-hant/System.Reflection.xml", - "ref/dotnet/de/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/zh-hans/System.Reflection.xml", - "ref/dotnet/es/System.Reflection.xml", - "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/84d992ce164945bfa10835e447244fb1.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Reflection.DispatchProxy/4.0.0": { - "sha512": "Kd/4o6DqBfJA4058X8oGEu1KlT8Ej0A+WGeoQgZU2h+3f2vC8NRbHxeOSZvxj9/MPZ1RYmZMGL1ApO9xG/4IVA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Reflection.DispatchProxy.nuspec", - "lib/net46/System.Reflection.DispatchProxy.dll", - "lib/DNXCore50/System.Reflection.DispatchProxy.dll", - "lib/netcore50/System.Reflection.DispatchProxy.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Reflection.DispatchProxy.dll", - "ref/dotnet/System.Reflection.DispatchProxy.xml", - "ref/dotnet/zh-hant/System.Reflection.DispatchProxy.xml", - "ref/dotnet/de/System.Reflection.DispatchProxy.xml", - "ref/dotnet/fr/System.Reflection.DispatchProxy.xml", - "ref/dotnet/it/System.Reflection.DispatchProxy.xml", - "ref/dotnet/ja/System.Reflection.DispatchProxy.xml", - "ref/dotnet/ko/System.Reflection.DispatchProxy.xml", - "ref/dotnet/ru/System.Reflection.DispatchProxy.xml", - "ref/dotnet/zh-hans/System.Reflection.DispatchProxy.xml", - "ref/dotnet/es/System.Reflection.DispatchProxy.xml", - "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "runtime.json", - "package/services/metadata/core-properties/1e015137cc52490b9dcde73fb35dee23.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Reflection.Emit/4.0.0": { - "sha512": "CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Reflection.Emit.nuspec", - "lib/DNXCore50/System.Reflection.Emit.dll", - "lib/netcore50/System.Reflection.Emit.dll", - "lib/MonoAndroid10/_._", - "lib/net45/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Reflection.Emit.dll", - "ref/dotnet/System.Reflection.Emit.xml", - "ref/dotnet/zh-hant/System.Reflection.Emit.xml", - "ref/dotnet/de/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/zh-hans/System.Reflection.Emit.xml", - "ref/dotnet/es/System.Reflection.Emit.xml", - "ref/MonoAndroid10/_._", - "ref/net45/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/f6dc998f8a6b43d7b08f33375407a384.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Reflection.Emit.ILGeneration/4.0.0": { - "sha512": "02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Reflection.Emit.ILGeneration.nuspec", - "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", - "lib/net45/_._", - "lib/wp80/_._", - "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", - "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/de/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/zh-hans/System.Reflection.Emit.ILGeneration.xml", - "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", - "ref/net45/_._", - "ref/wp80/_._", - "package/services/metadata/core-properties/d044dd882ed2456486ddb05f1dd0420f.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Reflection.Emit.Lightweight/4.0.0": { - "sha512": "DJZhHiOdkN08xJgsJfDjkuOreLLmMcU8qkEEqEHqyhkPUZMMQs0lE8R+6+68BAFWgcdzxtNu0YmIOtEug8j00w==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Reflection.Emit.Lightweight.nuspec", - "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll", - "lib/netcore50/System.Reflection.Emit.Lightweight.dll", - "lib/net45/_._", - "lib/wp80/_._", - "ref/dotnet/System.Reflection.Emit.Lightweight.dll", - "ref/dotnet/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/zh-hant/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/de/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/fr/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/it/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/ja/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/ko/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/ru/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/zh-hans/System.Reflection.Emit.Lightweight.xml", - "ref/dotnet/es/System.Reflection.Emit.Lightweight.xml", - "ref/net45/_._", - "ref/wp80/_._", - "package/services/metadata/core-properties/52abced289cd46eebf8599b9b4c1c67b.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Reflection.Extensions/4.0.0": { - "sha512": "dbYaZWCyFAu1TGYUqR2n+Q+1casSHPR2vVW0WVNkXpZbrd2BXcZ7cpvpu9C98CTHtNmyfMWCLpCclDqly23t6A==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Reflection.Extensions.nuspec", - "lib/netcore50/System.Reflection.Extensions.dll", - "lib/DNXCore50/System.Reflection.Extensions.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Reflection.Extensions.dll", - "ref/dotnet/System.Reflection.Extensions.xml", - "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", - "ref/dotnet/de/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/zh-hans/System.Reflection.Extensions.xml", - "ref/dotnet/es/System.Reflection.Extensions.xml", - "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Reflection.Extensions.dll", - "ref/netcore50/System.Reflection.Extensions.xml", - "ref/wp80/_._", - "ref/wpa81/_._", - "package/services/metadata/core-properties/0bcc335e1ef540948aef9032aca08bb2.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Reflection.Metadata/1.0.22": { - "sha512": "ltoL/teiEdy5W9fyYdtFr2xJ/4nHyksXLK9dkPWx3ubnj7BVfsSWxvWTg9EaJUXjhWvS/AeTtugZA1/IDQyaPQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Reflection.Metadata.nuspec", - "lib/dotnet/System.Reflection.Metadata.dll", - "lib/dotnet/System.Reflection.Metadata.xml", - "lib/portable-net45+win8/System.Reflection.Metadata.xml", - "lib/portable-net45+win8/System.Reflection.Metadata.dll", - "package/services/metadata/core-properties/2ad78f291fda48d1847edf84e50139e6.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Reflection.Primitives/4.0.0": { - "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Reflection.Primitives.nuspec", - "lib/netcore50/System.Reflection.Primitives.dll", - "lib/DNXCore50/System.Reflection.Primitives.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Reflection.Primitives.dll", - "ref/dotnet/System.Reflection.Primitives.xml", - "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", - "ref/dotnet/de/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/zh-hans/System.Reflection.Primitives.xml", - "ref/dotnet/es/System.Reflection.Primitives.xml", - "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Reflection.Primitives.dll", - "ref/netcore50/System.Reflection.Primitives.xml", - "ref/wp80/_._", - "ref/wpa81/_._", - "package/services/metadata/core-properties/7070509f3bfd418d859635361251dab0.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Reflection.TypeExtensions/4.0.0": { - "sha512": "YRM/msNAM86hdxPyXcuZSzmTO0RQFh7YMEPBLTY8cqXvFPYIx2x99bOyPkuU81wRYQem1c1HTkImQ2DjbOBfew==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Reflection.TypeExtensions.nuspec", - "lib/netcore50/System.Reflection.TypeExtensions.dll", - "lib/DNXCore50/System.Reflection.TypeExtensions.dll", - "lib/net46/System.Reflection.TypeExtensions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Reflection.TypeExtensions.dll", - "ref/dotnet/System.Reflection.TypeExtensions.xml", - "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/dotnet/de/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/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/dotnet/es/System.Reflection.TypeExtensions.xml", - "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", - "ref/net46/System.Reflection.TypeExtensions.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/a37798ee61124eb7b6c56400aee24da1.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Resources.ResourceManager/4.0.0": { - "sha512": "qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Resources.ResourceManager.nuspec", - "lib/netcore50/System.Resources.ResourceManager.dll", - "lib/DNXCore50/System.Resources.ResourceManager.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Resources.ResourceManager.dll", - "ref/dotnet/System.Resources.ResourceManager.xml", - "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", - "ref/dotnet/de/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/zh-hans/System.Resources.ResourceManager.xml", - "ref/dotnet/es/System.Resources.ResourceManager.xml", - "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Resources.ResourceManager.dll", - "ref/netcore50/System.Resources.ResourceManager.xml", - "ref/wp80/_._", - "ref/wpa81/_._", - "package/services/metadata/core-properties/657a73ee3f09479c9fedb9538ade8eac.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Runtime/4.0.20": { - "sha512": "X7N/9Bz7jVPorqdVFO86ns1sX6MlQM+WTxELtx+Z4VG45x9+LKmWH0GRqjgKprUnVuwmfB9EJ9DQng14Z7/zwg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Runtime.nuspec", - "lib/netcore50/System.Runtime.dll", - "lib/DNXCore50/System.Runtime.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Runtime.dll", - "ref/dotnet/System.Runtime.xml", - "ref/dotnet/zh-hant/System.Runtime.xml", - "ref/dotnet/de/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/zh-hans/System.Runtime.xml", - "ref/dotnet/es/System.Runtime.xml", - "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/d1ded52f75da4446b1c962f9292aa3ef.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Runtime.Extensions/4.0.10": { - "sha512": "5dsEwf3Iml7d5OZeT20iyOjT+r+okWpN7xI2v+R4cgd3WSj4DeRPTvPFjDpacbVW4skCAZ8B9hxXJYgkCFKJ1A==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Runtime.Extensions.nuspec", - "lib/netcore50/System.Runtime.Extensions.dll", - "lib/DNXCore50/System.Runtime.Extensions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Runtime.Extensions.dll", - "ref/dotnet/System.Runtime.Extensions.xml", - "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", - "ref/dotnet/de/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/zh-hans/System.Runtime.Extensions.xml", - "ref/dotnet/es/System.Runtime.Extensions.xml", - "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/c7fee76a13d04c7ea49fb1a24c184f37.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Runtime.Handles/4.0.0": { - "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Runtime.Handles.nuspec", - "lib/DNXCore50/System.Runtime.Handles.dll", - "lib/netcore50/System.Runtime.Handles.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Runtime.Handles.dll", - "ref/dotnet/System.Runtime.Handles.xml", - "ref/dotnet/zh-hant/System.Runtime.Handles.xml", - "ref/dotnet/de/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/zh-hans/System.Runtime.Handles.xml", - "ref/dotnet/es/System.Runtime.Handles.xml", - "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/da57aa32ff2441d1acfe85bee4f101ab.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Runtime.InteropServices/4.0.20": { - "sha512": "ZgDyBYfEnjWoz/viS6VOswA6XOkDSH2DzgbpczbW50RywhnCgTl+w3JEvtAiOGyIh8cyx1NJq80jsNBSUr8Pig==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Runtime.InteropServices.nuspec", - "lib/DNXCore50/System.Runtime.InteropServices.dll", - "lib/netcore50/System.Runtime.InteropServices.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Runtime.InteropServices.dll", - "ref/dotnet/System.Runtime.InteropServices.xml", - "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", - "ref/dotnet/de/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/zh-hans/System.Runtime.InteropServices.xml", - "ref/dotnet/es/System.Runtime.InteropServices.xml", - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/78e7f61876374acba2a95834f272d262.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { - "sha512": "K5MGSvw/sGPKQYdOVqSpsVbHBE8HccHIDEhUNjM1lui65KGF/slNZfijGU87ggQiVXTI802ebKiOYBkwiLotow==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Runtime.InteropServices.WindowsRuntime.nuspec", - "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Runtime.InteropServices.WindowsRuntime.dll", - "ref/dotnet/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/zh-hant/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/de/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/fr/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/it/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/ja/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/ko/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/ru/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/zh-hans/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/dotnet/es/System.Runtime.InteropServices.WindowsRuntime.xml", - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll", - "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.xml", - "ref/wp80/_._", - "ref/wpa81/_._", - "package/services/metadata/core-properties/3c944c6b4d6044d28ee80e49a09300c9.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Runtime.Numerics/4.0.0": { - "sha512": "aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Runtime.Numerics.nuspec", - "lib/dotnet/System.Runtime.Numerics.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/netcore50/System.Runtime.Numerics.dll", - "lib/wpa81/_._", - "ref/dotnet/System.Runtime.Numerics.dll", - "ref/dotnet/System.Runtime.Numerics.xml", - "ref/dotnet/zh-hant/System.Runtime.Numerics.xml", - "ref/dotnet/de/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/zh-hans/System.Runtime.Numerics.xml", - "ref/dotnet/es/System.Runtime.Numerics.xml", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Runtime.Numerics.dll", - "ref/netcore50/System.Runtime.Numerics.xml", - "ref/wpa81/_._", - "package/services/metadata/core-properties/2e43dbd3dfbf4af5bb74bedaf3a67bd5.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Runtime.WindowsRuntime/4.0.10": { - "sha512": "9w6ypdnEw8RrLRlxTbLAYrap4eL1xIQeNoOaumQVOQ8TTD/5g9FGrBtY3KLiGxAPieN9AwAAEIDkugU85Cwuvg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Runtime.WindowsRuntime.nuspec", - "lib/netcore50/System.Runtime.WindowsRuntime.dll", - "lib/win81/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Runtime.WindowsRuntime.dll", - "ref/dotnet/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/zh-hant/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/de/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/zh-hans/System.Runtime.WindowsRuntime.xml", - "ref/dotnet/es/System.Runtime.WindowsRuntime.xml", - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll", - "ref/win81/_._", - "ref/netcore50/System.Runtime.WindowsRuntime.dll", - "ref/netcore50/System.Runtime.WindowsRuntime.xml", - "ref/wpa81/_._", - "package/services/metadata/core-properties/a81cabb2b7e843ce801ecf91886941d4.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Security.Claims/4.0.0": { - "sha512": "94NFR/7JN3YdyTH7hl2iSvYmdA8aqShriTHectcK+EbizT71YczMaG6LuqJBQP/HWo66AQyikYYM9aw+4EzGXg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Security.Claims.nuspec", - "lib/dotnet/System.Security.Claims.dll", - "lib/net46/System.Security.Claims.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Security.Claims.dll", - "ref/dotnet/System.Security.Claims.xml", - "ref/dotnet/zh-hant/System.Security.Claims.xml", - "ref/dotnet/de/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/zh-hans/System.Security.Claims.xml", - "ref/dotnet/es/System.Security.Claims.xml", - "ref/net46/System.Security.Claims.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/b682071d85754e6793ca9777ffabaf8a.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Security.Principal/4.0.0": { - "sha512": "FOhq3jUOONi6fp5j3nPYJMrKtSJlqAURpjiO3FaDIV4DJNEYymWW5uh1pfxySEB8dtAW+I66IypzNge/w9OzZQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Security.Principal.nuspec", - "lib/dotnet/System.Security.Principal.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/netcore50/System.Security.Principal.dll", - "lib/wp80/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Security.Principal.dll", - "ref/dotnet/System.Security.Principal.xml", - "ref/dotnet/zh-hant/System.Security.Principal.xml", - "ref/dotnet/de/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/zh-hans/System.Security.Principal.xml", - "ref/dotnet/es/System.Security.Principal.xml", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Security.Principal.dll", - "ref/netcore50/System.Security.Principal.xml", - "ref/wp80/_._", - "ref/wpa81/_._", - "package/services/metadata/core-properties/5d44fbabc99d4204b6a2f76329d0a184.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Text.Encoding/4.0.10": { - "sha512": "fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Text.Encoding.nuspec", - "lib/netcore50/System.Text.Encoding.dll", - "lib/DNXCore50/System.Text.Encoding.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Text.Encoding.dll", - "ref/dotnet/System.Text.Encoding.xml", - "ref/dotnet/zh-hant/System.Text.Encoding.xml", - "ref/dotnet/de/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/zh-hans/System.Text.Encoding.xml", - "ref/dotnet/es/System.Text.Encoding.xml", - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/829e172aadac4937a5a6a4b386855282.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Text.Encoding.Extensions/4.0.10": { - "sha512": "TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Text.Encoding.Extensions.nuspec", - "lib/netcore50/System.Text.Encoding.Extensions.dll", - "lib/DNXCore50/System.Text.Encoding.Extensions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Text.Encoding.Extensions.dll", - "ref/dotnet/System.Text.Encoding.Extensions.xml", - "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/dotnet/de/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/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/dotnet/es/System.Text.Encoding.Extensions.xml", - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/894d51cf918c4bca91e81a732d958707.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Text.RegularExpressions/4.0.10": { - "sha512": "0vDuHXJePpfMCecWBNOabOKCvzfTbFMNcGgklt3l5+RqHV5SzmF7RUVpuet8V0rJX30ROlL66xdehw2Rdsn2DA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Text.RegularExpressions.nuspec", - "lib/dotnet/System.Text.RegularExpressions.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Text.RegularExpressions.dll", - "ref/dotnet/System.Text.RegularExpressions.xml", - "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", - "ref/dotnet/de/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/zh-hans/System.Text.RegularExpressions.xml", - "ref/dotnet/es/System.Text.RegularExpressions.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/548eb1bd139e4c8cbc55e9f7f4f404dd.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Threading/4.0.10": { - "sha512": "0w6pRxIEE7wuiOJeKabkDgeIKmqf4ER1VNrs6qFwHnooEE78yHwi/bKkg5Jo8/pzGLm0xQJw0nEmPXt1QBAIUA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Threading.nuspec", - "lib/DNXCore50/System.Threading.dll", - "lib/netcore50/System.Threading.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Threading.dll", - "ref/dotnet/System.Threading.xml", - "ref/dotnet/zh-hant/System.Threading.xml", - "ref/dotnet/de/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/zh-hans/System.Threading.xml", - "ref/dotnet/es/System.Threading.xml", - "runtimes/win8-aot/lib/netcore50/System.Threading.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/c17c3791d8fa4efbb8aded2ca8c71fbe.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Threading.Overlapped/4.0.0": { - "sha512": "X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Threading.Overlapped.nuspec", - "lib/netcore50/System.Threading.Overlapped.dll", - "lib/DNXCore50/System.Threading.Overlapped.dll", - "lib/net46/System.Threading.Overlapped.dll", - "ref/dotnet/System.Threading.Overlapped.dll", - "ref/dotnet/System.Threading.Overlapped.xml", - "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", - "ref/dotnet/de/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/zh-hans/System.Threading.Overlapped.xml", - "ref/dotnet/es/System.Threading.Overlapped.xml", - "ref/net46/System.Threading.Overlapped.dll", - "package/services/metadata/core-properties/e9846a81e829434aafa4ae2e8c3517d7.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Threading.Tasks/4.0.10": { - "sha512": "NOwJGDfk79jR0bnzosbXLVD/PdI8KzBeESoa3CofEM5v9R5EBfcI0Jyf18stx+0IYV9okmDIDxVtxq9TbnR9bQ==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Threading.Tasks.nuspec", - "lib/netcore50/System.Threading.Tasks.dll", - "lib/DNXCore50/System.Threading.Tasks.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Threading.Tasks.dll", - "ref/dotnet/System.Threading.Tasks.xml", - "ref/dotnet/zh-hant/System.Threading.Tasks.xml", - "ref/dotnet/de/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/zh-hans/System.Threading.Tasks.xml", - "ref/dotnet/es/System.Threading.Tasks.xml", - "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/a4ed35f8764a4b68bb39ec8d13b3e730.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Threading.Tasks.Dataflow/4.5.25": { - "sha512": "Y5/Dj+tYlDxHBwie7bFKp3+1uSG4vqTJRF7Zs7kaUQ3ahYClffCTxvgjrJyPclC+Le55uE7bMLgjZQVOQr3Jfg==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Threading.Tasks.Dataflow.nuspec", - "lib/dotnet/System.Threading.Tasks.Dataflow.dll", - "lib/dotnet/System.Threading.Tasks.Dataflow.XML", - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.XML", - "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.XML", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.dll", - "package/services/metadata/core-properties/b27f9e16f16b429f924c31eb4be21d09.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Threading.Tasks.Parallel/4.0.0": { - "sha512": "GXDhjPhF3nE4RtDia0W6JR4UMdmhOyt9ibHmsNV6GLRT4HAGqU636Teo4tqvVQOFp2R6b1ffxPXiRaoqtzGxuA==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Threading.Tasks.Parallel.nuspec", - "lib/dotnet/System.Threading.Tasks.Parallel.dll", - "lib/net45/_._", - "lib/win8/_._", - "lib/netcore50/System.Threading.Tasks.Parallel.dll", - "lib/wpa81/_._", - "ref/dotnet/System.Threading.Tasks.Parallel.dll", - "ref/dotnet/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/zh-hant/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/de/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/fr/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/it/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/ja/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/ko/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/ru/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/zh-hans/System.Threading.Tasks.Parallel.xml", - "ref/dotnet/es/System.Threading.Tasks.Parallel.xml", - "ref/net45/_._", - "ref/win8/_._", - "ref/netcore50/System.Threading.Tasks.Parallel.dll", - "ref/netcore50/System.Threading.Tasks.Parallel.xml", - "ref/wpa81/_._", - "package/services/metadata/core-properties/260c0741092249239a3182de21f409ef.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Threading.Timer/4.0.0": { - "sha512": "BIdJH5/e4FnVl7TkRUiE3pWytp7OYiRUGtwUbyLewS/PhKiLepFetdtlW+FvDYOVn60Q2NMTrhHhJ51q+sVW5g==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Threading.Timer.nuspec", - "lib/netcore50/System.Threading.Timer.dll", - "lib/DNXCore50/System.Threading.Timer.dll", - "lib/net451/_._", - "lib/win81/_._", - "lib/wpa81/_._", - "ref/dotnet/System.Threading.Timer.dll", - "ref/dotnet/System.Threading.Timer.xml", - "ref/dotnet/zh-hant/System.Threading.Timer.xml", - "ref/dotnet/de/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/zh-hans/System.Threading.Timer.xml", - "ref/dotnet/es/System.Threading.Timer.xml", - "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", - "ref/net451/_._", - "ref/win81/_._", - "ref/netcore50/System.Threading.Timer.dll", - "ref/netcore50/System.Threading.Timer.xml", - "ref/wpa81/_._", - "package/services/metadata/core-properties/c02c4d3d0eff43ec9b54de9f60bd68ad.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Xml.ReaderWriter/4.0.10": { - "sha512": "VdmWWMH7otrYV7D+cviUo7XjX0jzDnD/lTGSZTlZqfIQ5PhXk85j+6P0TK9od3PnOd5ZIM+pOk01G/J+3nh9/w==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Xml.ReaderWriter.nuspec", - "lib/dotnet/System.Xml.ReaderWriter.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Xml.ReaderWriter.dll", - "ref/dotnet/System.Xml.ReaderWriter.xml", - "ref/dotnet/zh-hant/System.Xml.ReaderWriter.xml", - "ref/dotnet/de/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/zh-hans/System.Xml.ReaderWriter.xml", - "ref/dotnet/es/System.Xml.ReaderWriter.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/ef76b636720e4f2d8cfd570899d52df8.psmdcp", - "[Content_Types].xml" - ] - }, - "System.Xml.XDocument/4.0.10": { - "sha512": "+ej0g0INnXDjpS2tDJsLO7/BjyBzC+TeBXLeoGnvRrm4AuBH9PhBjjZ1IuKWOhCkxPkFognUOKhZHS2glIOlng==", - "type": "Package", - "files": [ - "_rels/.rels", - "System.Xml.XDocument.nuspec", - "lib/dotnet/System.Xml.XDocument.dll", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "ref/dotnet/System.Xml.XDocument.dll", - "ref/dotnet/System.Xml.XDocument.xml", - "ref/dotnet/zh-hant/System.Xml.XDocument.xml", - "ref/dotnet/de/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/zh-hans/System.Xml.XDocument.xml", - "ref/dotnet/es/System.Xml.XDocument.xml", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "package/services/metadata/core-properties/f5c45d6b065347dfaa1d90d06221623d.psmdcp", - "[Content_Types].xml" - ] - } - }, - "projectFileDependencyGroups": { - "": [ - "Microsoft.NETCore >= 5.0.0", - "Microsoft.NETCore.Portable.Compatibility >= 1.0.0" - ], - ".NETPlatform,Version=v5.0": [] - } -} \ No newline at end of file diff --git a/QueryString.Portable/Properties/AssemblyInfo.cs b/QueryString.Portable/Properties/AssemblyInfo.cs deleted file mode 100644 index 61f5630..0000000 --- a/QueryString.Portable/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,30 +0,0 @@ -using System.Resources; -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("QueryString")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("QueryString")] -[assembly: AssemblyCopyright("Copyright © 2015")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] -[assembly: NeutralResourcesLanguage("en")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/QueryString.Portable/QueryString.Portable.csproj b/QueryString.Portable/QueryString.Portable.csproj index da08c2b..22adba8 100644 --- a/QueryString.Portable/QueryString.Portable.csproj +++ b/QueryString.Portable/QueryString.Portable.csproj @@ -1,54 +1,21 @@ - - - - - 10.0 - Debug - AnyCPU - {3B63708F-2D48-48CF-B604-B607F2154208} - Library - Properties - QueryStringDotNET - QueryString.Portable - en-US - 512 - {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - Profile328 - v4.0 - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - bin\Release\QueryString.Portable.xml - - - - - - - - - - + + + QueryStringDotNET + en-US + netstandard2.0 + QueryString + QueryString + en + Copyright © 2015 + bin\$(Configuration)\ + + + full + + + + pdbonly + bin\$(Configuration)\QueryString.Portable.xml + + \ No newline at end of file diff --git a/QueryString.sln b/QueryString.sln index e97af9f..7f4631a 100644 --- a/QueryString.sln +++ b/QueryString.sln @@ -1,33 +1,27 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 14 -VisualStudioVersion = 14.0.23107.0 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31129.286 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QueryString.Portable", "QueryString.Portable\QueryString.Portable.csproj", "{3B63708F-2D48-48CF-B604-B607F2154208}" EndProject Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "QueryString", "QueryString\QueryString.shproj", "{B0CC4E32-6A41-4AA8-8294-E2B6312FBD78}" EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{16E4CDFC-FA4F-4CF7-8A54-3E2DC623EF21}" - ProjectSection(SolutionItems) = preProject - global.json = global.json - EndProjectSection -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QueryString.NETCore", "QueryString.NETCore\QueryString.NETCore.csproj", "{0A678142-55E1-4611-B81A-8AFB1EA0D2B2}" EndProject Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "QueryStringTest", "QueryStringTest\QueryStringTest.shproj", "{49B7F04C-71A2-45D3-99EF-70E71AA1BBB0}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QueryStringTest.Windows", "QueryStringTest.Windows\QueryStringTest.Windows.csproj", "{ED343F4D-5AE4-42B4-99F9-CCDA5996806C}" -EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QueryStringTest.Portable", "QueryStringTest.Portable\QueryStringTest.Portable.csproj", "{E6DAFF7F-8873-4A25-B501-7E5F2F7C3A85}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "QueryStringTest.NetCore", "QueryStringTest.NetCore\QueryStringTest.NetCore.csproj", "{D68A5608-C627-439F-9517-D25586F50578}" +EndProject Global GlobalSection(SharedMSBuildProjectFiles) = preSolution - QueryString\QueryString.projitems*{3b63708f-2d48-48cf-b604-b607f2154208}*SharedItemsImports = 4 - QueryString\QueryString.projitems*{0a678142-55e1-4611-b81a-8afb1ea0d2b2}*SharedItemsImports = 4 - QueryStringTest\QueryStringTest.projitems*{e6daff7f-8873-4a25-b501-7e5f2f7c3a85}*SharedItemsImports = 4 - QueryString\QueryString.projitems*{b0cc4e32-6a41-4aa8-8294-e2b6312fbd78}*SharedItemsImports = 13 + QueryString\QueryString.projitems*{0a678142-55e1-4611-b81a-8afb1ea0d2b2}*SharedItemsImports = 5 + QueryString\QueryString.projitems*{3b63708f-2d48-48cf-b604-b607f2154208}*SharedItemsImports = 5 QueryStringTest\QueryStringTest.projitems*{49b7f04c-71a2-45d3-99ef-70e71aa1bbb0}*SharedItemsImports = 13 - QueryStringTest\QueryStringTest.projitems*{ed343f4d-5ae4-42b4-99f9-ccda5996806c}*SharedItemsImports = 4 + QueryString\QueryString.projitems*{b0cc4e32-6a41-4aa8-8294-e2b6312fbd78}*SharedItemsImports = 13 + QueryStringTest\QueryStringTest.projitems*{e6daff7f-8873-4a25-b501-7e5f2f7c3a85}*SharedItemsImports = 5 EndGlobalSection GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -72,30 +66,6 @@ Global {0A678142-55E1-4611-B81A-8AFB1EA0D2B2}.Release|x64.Build.0 = Release|Any CPU {0A678142-55E1-4611-B81A-8AFB1EA0D2B2}.Release|x86.ActiveCfg = Release|Any CPU {0A678142-55E1-4611-B81A-8AFB1EA0D2B2}.Release|x86.Build.0 = Release|Any CPU - {ED343F4D-5AE4-42B4-99F9-CCDA5996806C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {ED343F4D-5AE4-42B4-99F9-CCDA5996806C}.Debug|Any CPU.Build.0 = Debug|Any CPU - {ED343F4D-5AE4-42B4-99F9-CCDA5996806C}.Debug|Any CPU.Deploy.0 = Debug|Any CPU - {ED343F4D-5AE4-42B4-99F9-CCDA5996806C}.Debug|ARM.ActiveCfg = Debug|ARM - {ED343F4D-5AE4-42B4-99F9-CCDA5996806C}.Debug|ARM.Build.0 = Debug|ARM - {ED343F4D-5AE4-42B4-99F9-CCDA5996806C}.Debug|ARM.Deploy.0 = Debug|ARM - {ED343F4D-5AE4-42B4-99F9-CCDA5996806C}.Debug|x64.ActiveCfg = Debug|x64 - {ED343F4D-5AE4-42B4-99F9-CCDA5996806C}.Debug|x64.Build.0 = Debug|x64 - {ED343F4D-5AE4-42B4-99F9-CCDA5996806C}.Debug|x64.Deploy.0 = Debug|x64 - {ED343F4D-5AE4-42B4-99F9-CCDA5996806C}.Debug|x86.ActiveCfg = Debug|x86 - {ED343F4D-5AE4-42B4-99F9-CCDA5996806C}.Debug|x86.Build.0 = Debug|x86 - {ED343F4D-5AE4-42B4-99F9-CCDA5996806C}.Debug|x86.Deploy.0 = Debug|x86 - {ED343F4D-5AE4-42B4-99F9-CCDA5996806C}.Release|Any CPU.ActiveCfg = Release|Any CPU - {ED343F4D-5AE4-42B4-99F9-CCDA5996806C}.Release|Any CPU.Build.0 = Release|Any CPU - {ED343F4D-5AE4-42B4-99F9-CCDA5996806C}.Release|Any CPU.Deploy.0 = Release|Any CPU - {ED343F4D-5AE4-42B4-99F9-CCDA5996806C}.Release|ARM.ActiveCfg = Release|ARM - {ED343F4D-5AE4-42B4-99F9-CCDA5996806C}.Release|ARM.Build.0 = Release|ARM - {ED343F4D-5AE4-42B4-99F9-CCDA5996806C}.Release|ARM.Deploy.0 = Release|ARM - {ED343F4D-5AE4-42B4-99F9-CCDA5996806C}.Release|x64.ActiveCfg = Release|x64 - {ED343F4D-5AE4-42B4-99F9-CCDA5996806C}.Release|x64.Build.0 = Release|x64 - {ED343F4D-5AE4-42B4-99F9-CCDA5996806C}.Release|x64.Deploy.0 = Release|x64 - {ED343F4D-5AE4-42B4-99F9-CCDA5996806C}.Release|x86.ActiveCfg = Release|x86 - {ED343F4D-5AE4-42B4-99F9-CCDA5996806C}.Release|x86.Build.0 = Release|x86 - {ED343F4D-5AE4-42B4-99F9-CCDA5996806C}.Release|x86.Deploy.0 = Release|x86 {E6DAFF7F-8873-4A25-B501-7E5F2F7C3A85}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {E6DAFF7F-8873-4A25-B501-7E5F2F7C3A85}.Debug|Any CPU.Build.0 = Debug|Any CPU {E6DAFF7F-8873-4A25-B501-7E5F2F7C3A85}.Debug|ARM.ActiveCfg = Debug|Any CPU @@ -112,8 +82,27 @@ Global {E6DAFF7F-8873-4A25-B501-7E5F2F7C3A85}.Release|x64.Build.0 = Release|Any CPU {E6DAFF7F-8873-4A25-B501-7E5F2F7C3A85}.Release|x86.ActiveCfg = Release|Any CPU {E6DAFF7F-8873-4A25-B501-7E5F2F7C3A85}.Release|x86.Build.0 = Release|Any CPU + {D68A5608-C627-439F-9517-D25586F50578}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D68A5608-C627-439F-9517-D25586F50578}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D68A5608-C627-439F-9517-D25586F50578}.Debug|ARM.ActiveCfg = Debug|Any CPU + {D68A5608-C627-439F-9517-D25586F50578}.Debug|ARM.Build.0 = Debug|Any CPU + {D68A5608-C627-439F-9517-D25586F50578}.Debug|x64.ActiveCfg = Debug|Any CPU + {D68A5608-C627-439F-9517-D25586F50578}.Debug|x64.Build.0 = Debug|Any CPU + {D68A5608-C627-439F-9517-D25586F50578}.Debug|x86.ActiveCfg = Debug|Any CPU + {D68A5608-C627-439F-9517-D25586F50578}.Debug|x86.Build.0 = Debug|Any CPU + {D68A5608-C627-439F-9517-D25586F50578}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D68A5608-C627-439F-9517-D25586F50578}.Release|Any CPU.Build.0 = Release|Any CPU + {D68A5608-C627-439F-9517-D25586F50578}.Release|ARM.ActiveCfg = Release|Any CPU + {D68A5608-C627-439F-9517-D25586F50578}.Release|ARM.Build.0 = Release|Any CPU + {D68A5608-C627-439F-9517-D25586F50578}.Release|x64.ActiveCfg = Release|Any CPU + {D68A5608-C627-439F-9517-D25586F50578}.Release|x64.Build.0 = Release|Any CPU + {D68A5608-C627-439F-9517-D25586F50578}.Release|x86.ActiveCfg = Release|Any CPU + {D68A5608-C627-439F-9517-D25586F50578}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {E444EEAA-49CC-459D-B8DD-15D903979A50} + EndGlobalSection EndGlobal diff --git a/QueryString/QueryString.cs b/QueryString/QueryString.cs index a53385a..2f87540 100644 --- a/QueryString/QueryString.cs +++ b/QueryString/QueryString.cs @@ -70,7 +70,7 @@ internal QueryStringParameter(string name, string value = null) public enum QueryStringSeparator { /// - /// The default separator for query string parameters. Generated query string is like "a=1&b=5". + /// The default separator for query string parameters. Generated query string is like "a=&b=5". /// Ampersand, diff --git a/QueryStringTest.NET/QueryStringTest.NET.csproj b/QueryStringTest.NET/QueryStringTest.NET.csproj new file mode 100644 index 0000000..b4aae8b --- /dev/null +++ b/QueryStringTest.NET/QueryStringTest.NET.csproj @@ -0,0 +1,15 @@ + + + + net48 + + false + + + + + + + + + diff --git a/QueryStringTest.NetCore/QueryStringTest.NetCore.csproj b/QueryStringTest.NetCore/QueryStringTest.NetCore.csproj new file mode 100644 index 0000000..c2106de --- /dev/null +++ b/QueryStringTest.NetCore/QueryStringTest.NetCore.csproj @@ -0,0 +1,19 @@ + + + + netcoreapp3.1 + + false + + + + + + + + + + + + + diff --git a/QueryStringTest.Portable/Properties/AssemblyInfo.cs b/QueryStringTest.Portable/Properties/AssemblyInfo.cs index 4e4baeb..f0a85f8 100644 --- a/QueryStringTest.Portable/Properties/AssemblyInfo.cs +++ b/QueryStringTest.Portable/Properties/AssemblyInfo.cs @@ -2,18 +2,6 @@ using System.Runtime.CompilerServices; using System.Runtime.InteropServices; -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("QueryStringTest.Portable")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("QueryStringTest.Portable")] -[assembly: AssemblyCopyright("Copyright © 2015")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from // COM, set the ComVisible attribute to true on that type. @@ -21,16 +9,3 @@ // The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("e6daff7f-8873-4a25-b501-7e5f2f7c3a85")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/QueryStringTest.Portable/QueryStringTest.Portable.csproj b/QueryStringTest.Portable/QueryStringTest.Portable.csproj index ed5eb74..3e10869 100644 --- a/QueryStringTest.Portable/QueryStringTest.Portable.csproj +++ b/QueryStringTest.Portable/QueryStringTest.Portable.csproj @@ -1,89 +1,32 @@ - - + - Debug - AnyCPU - {E6DAFF7F-8873-4A25-B501-7E5F2F7C3A85} - Library - Properties - QueryStringTest.Portable - QueryStringTest.Portable - v4.5.2 - 512 + net48 {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 10.0 $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) $(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages False UnitTest + QueryStringTest.Portable + QueryStringTest.Portable + Copyright © 2015 + bin\$(Configuration)\ - true full - false - bin\Debug\ TRACE;DEBUG;TEST_PORTABLE - prompt - 4 pdbonly - true - bin\Release\ TRACE;TEST_PORTABLE - prompt - 4 + + - - - - - - - - - - - - - - - - + + + - - {3b63708f-2d48-48cf-b604-b607f2154208} - QueryString.Portable - + - - - - - False - - - False - - - False - - - False - - - - - - - - \ No newline at end of file diff --git a/QueryStringTest.Windows/Images/UnitTestLogo.scale-100.png b/QueryStringTest.Windows/Images/UnitTestLogo.scale-100.png deleted file mode 100644 index ebd735aa9352cf97bfcbe11dc4281617d570dca4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5789 zcmbVQhdons_quWX^nDTL^UGD1W-M)v9$NwN~MJA93- zj3}e~I=}n-2kt$ObDYQdIOqL&yFDB;YCRff7OZo zzr!1qpV5s#A|g5*;YHl%`^uGw2w`EYuVWLIx0&x{nmcjY*YQqvGKXl5Xzbvu`hN-~3vVQfC}-5L3(A;*@D-)(~>zUC6%_N{FA>F7+BQ z2aofMWTv?E9X;$K5A1XH_TDCosdb%+j5s+eT-kfr89zjSoUx}iq|&j%X=`k3Ohl@S zL5*<{p>FAR^IMWIrf5^?OOgmNU@0@T|F0Kx6ME2m8XEaqGHmAaq_C{uAOhef) zaY-!vS5moqu1dF&D(1Gj6>86wFgVvvDF-Z3(s8LKw6>}@<4~mfl?jy5oHe~-g*&*xb-3u!Sb=9T4-;*6NTJ66FeT%B9Xd^Xw9N%W|h7>0=6e>`{S_ho7;u|sd)O^R>Q9HLw|qQNb!}Qy&S#^`)gxIi&rv2O zCX#v7+bQRpXJ%#bNlVjPl{0g3ajpLN5kIi}@OFf~6f11Q$mH9}CaQMIvfL)kNKl52 zM%LF!JnK7QBVJw-%+zF%u}|)Dl8CFO(?!&VNn}K++#2`BJrj)tbwffF9ixA{83{54 z1qBt9l~K?=I2Whw{VOfQq{LE``Q~Fcq$J`fQj?v7!$th-8;2H4YwP$6BIX6{?c5hH zUL=Z5PNsqgB_$=hD=&$oFi68>_ix*-yGc#)p`^g`v>11=KX3CqHnR($ux`1-@iL$ta#EW&=L3cTqQQl5oth>8= z!PuINic0dy$w~coN)NiOq2cX;x=;xG`jt-O$jGf8D_3>Q%n%0X_E2TBPL5($b>BLOwLMrl!Wy$tm^SJH;akwGYeHni*d`0K{#Q`J24TSn)Oo%!Z7Qa(?2E&3H$idx#)QCHb=jBZns zl5na9QQo<8Cv2-}CGFX>rnP#_7xah}p$eO;6d0!SMECFChtXGLIgi{lXx}f9F08I* zxcrPJTiWTqdD(Ob+JES|Mq0lsYS0^!0L#fMD*8wuQhIcwqcz)iv)&fe*Rve|+MHHg zHn*_QgG6|GiZA6b5gVGOX(k&M$MvA&=C|j6*MQi_{YN>ux$%x~`?|aJCuK)y z@m730^ZvGtYkX>I9MbJa{Bx0eW_g-Xf699{oY^se2F&V*Gl5=vPSB&l!NJO*Tb$pf zr*TiIiF$i`Ayi$H<79GtxFiu956^=x=g#-t>8L4 zi8ewaCedVKQc}I;)@8iuMt*GdW51@0e%Q<$| zC-q2SH6a~M+zAUnqV&atleBrY9UQnme*DOf*f$PS=YAe@c6TSNHH~65S5{H+epgr5 zs|ntCf0_EyZH7i zp(7(XPft&gj*g{jnXjB%k>PFJ?zJkyLjB2|lap-tG2ZHP-PEOerCC|t2@^knGH^RP zGP8yHwD=y9Smcg`Y(LI=MLM46=lAUI%jXyRoPQ0FP|D&8Bd>gSSC9a~mvaXf z{l31tJwt;?Nh~Vj2b$}P!lxl?8XGBFX4^OSlP7*Wn&QkhEbfZfZlh>( z3=CY|+%y1ua=g2omF87SsSP9QdijR^H^_3MKc2j~r3EMi?f7q8|EEtU9mw_q=nsga z&h8R4*Ta;QhDr;O?ic0dV)m_Jj4{6loMhzXNgJlQ_7u@lh-$m5br3>EKPf;wU`x5p z$JL)h<|t=pqK@O)?cu4Z)~r;r>AEgj4~iszpE|^g|ew%OgO-#rs7j$ zP6Xzn4jpLd>Bp=lSVFP)B&DTsu9s0B9+c(f<$?;mNfh+l3)vkfLaJ(NvI+_Y)5R`z z$z+wE@0yvKE_B6HAmQ$&!qdNG!`}Bc&iVlBE?n>U!?HEsVbMQhqdY8*s8+2GZL()$ zV~ZW}NH7xQFPAml2vM7hKE89ZW)X9*2W^}r65+x6pFBc%PEPZ7o|u1BI;5#R>)ExA zr-lgGo|>9Um{J!+b(7dq`~tc-I_&sM3u0z;)anVl63XA7@%kJ4F6ro>=KmhLplMRSe@6#sF8r0beEHsaR;h)}hWS!gVikm79#RJs4rmDoH?^)#9w02C zZgIn0n1NEe$`)Uybt;;ND}#cv%zuDxiTtxx=GSDOHn1#vm-%_Jq?A-qaq&5= z-~ATD6BF5KZC^43>ySDCfL}ZnfUs$j^+^gXKdjzs_rp$kAK`e;VxcAE+}}#}j$;Ks zI#{Svk&;l&>zzttRg*XGX#Ud2nKEESEGeMM*tydo&8K5`SOMN z>)a1D7MQg6?{xuh@4>Wt$O~^=7^4zFQx-vGd(+-B6slq+S=`JWg;Fd5-KVeSy)(<1OK4`PMI*jAe3NXWyJ&lU0_u%qoG0D zGHd?hz5FFK7AfiK>Pk>PT1Q>z+v>T0b$J;mEgc*l&CJ+C9zT8h)E(u_a~%tc5%m7f>~=J()A6^7_UiK=f5ze# zoww)OK&29B61N!Jhflt_&BBVk7ifLy(xtGyK_&mA9n|iEejWpLqF4EdPXlf_pvTSG zq6rCN5v1?i)?MoMz5H!${&dSJPSiOoYwL+Eb`fD=*pJ!o&gWKGQW9c1ZuKPJnB!^X z;B{s(xl%^O+(#M_zY1DgIrsMVa&mHFr#DL_6|DFX4{$m@K2ndlH6GU98u~t5s3&+J zMA_8T^s1`L05T;E%PJ{dG4{kXA^ZFLK@5BN`t~)nA6#N)Vd>djrjmsXEIzySJkCS%Mc#@C3B?U8zqzFETPLz&J}ti6&s;w;-%?Y< zl)>c!GLm4QO#h=Ed-m^k=WOe+dx0(@h_vNz1Q`{*U(B<(vxvjY&6t&qExu1YAGWj5 z^>kwJ(xB;J_XAwAtbiZUJ85}FEcg7`_Inr zNH8PJ2*fCtNwga{t*2(0iD6HP=cc2>fe* zQ$w2U8v|G9&i+hv^e#~{0O4~e`4rUF%B{z%K<%$xyVf;Xk(S^zIz>tM;KIStN6-2q za6B-T^Qd~ek>TN3P@4KDI^-n8pN59;qa|12hHTv2hW{&~1i}Xa@<5_5t*n4_F<`!s zFJn~+KKaA)ZW1-XrZl%^WYU{AQub}(!FOa2Kj*7~O-xa){}ZXnMneuRDXh)WzBz~r zG=tIY=D2hzXk!M+}zxd zWC_t7Ja$!x7m>SEZ|s|D7VlTXC$MQCOX$>s$qp;FH#ei!kGmWApJT-if~g|VsT``}&-eg6C%?1~KgBf@NgoY7ojZCbb~mLbqn7b_*?2`{Eza^SlS3aF$u< zVReFDU4GZ*f^T>+%qURc=6A{4?op>J~N@!AXTW0 ztGoOCJi7SX)n#QOFTMJDdw04hcsf1gzc2M?g#DVj)xbFkxWz%8NCMl=$;+b=E7b>& z2bt9=wB(hO3mo$T3=fZp_&IWgN2kj6fdVgmDemFJhiMZ$r_oyb;TrqlQ6Dx*SBAh* zI?J>BZ%ks%LZ=8)-AE8{1;dnbt%0ySQ?e_LRv+Y|JUgwFV{6j<-?PJ`iHSF%(#W@89`-=G(daBdo2h3GD{t?iju%R99D5 z$uSAaORwC9AJC+tMl|bVu+Rrk&$F|$s~a1bew}Yn5Dg6tKHAFoF*fpe zz6!-zA0?o3U^T*SPmcTn3w^7iq_WQgyO-NEZ(dMOCULPUG!>3mSLb>=kus!tOyk>j zfS9|x!bL+v)4dV&>t=&bVqMzCLHNkn*o9g$Z=klA6FiS{%$d68*%7|%S0HOj560vH zW(^B&AM`14<>!L=_9(E4TwzB$eD+e;O{XujKMFfJk_Ad=T&pwO$*i&5BFCXXZ^QI} zc8?$N(1+Px3Q!3M3@o$}Pk;IpaTt#ih+{;Tl$7Ye&P7Bh*dLKQI5@0sZQX|xDOWvN z2p3|5vnkK92l6M;S_JQW`I+c#r`O}?fB+_#Dlpmv4ly>S>PE}LztMBhh4+EgmT-Ep^8Qt%kG|H*?Trfn$P( zSLUSS)Qn{FY2dJzQd%^(Idx*=dkQWNeCqyw(9Ank`x`g9s%|#ye3BcgyfCnRSlrRU z17`zL*rU^EWR-2?Zoi0;v2kJ4>rG4NZim9LHDEiNnb5y&QOCdTw-tj;7|d0|pAo}& zgMCuxGcTW~GfXmIh1lcc<1MI|DM=SXT3n))8pn9ice*})r1qI<#F|&Ow`)Qd4zu0( zuGjtTey)6#s=p4Z*-mS{SQ;;^yL5m diff --git a/QueryStringTest.Windows/Images/UnitTestSmallLogo.scale-100.png b/QueryStringTest.Windows/Images/UnitTestSmallLogo.scale-100.png deleted file mode 100644 index 92dd1058fbfb70c4491d934fe5f60ff2bacd41e9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 745 zcmVGVQpR4ciyoglSwB91#GhGhn{+`40 zKOYZLtJUy5M#Hz+??BTuEf5G^US9q^+F&rqWU^c?_f@o5EFKPriyn{1Bb7>Dq2Gpm zj6OIx0Dx2~HJwfYfY0ae?(T|2B8f!u{QL|62qB-(r&KC$Z*SK_*J?F}VN52|>FMcU zFfbSl3WWjytX69-my^roXJ=<#ua{)79{TC&>GAP#Z*OmVdpj13x!rDr5V@9aw;PYg zH#axi?RKlx`izXlVo|Hrs#L0EGRd+maoTJ)o6W}O^8uh-F3h|y@YSS;jQC=}8(jWHGo1n>Siolbo|pUdSMkH^GQuh+}v@;m@7 z&Jc>C4i68Hj*hr+T!t~ezP`S?y22R0k0z$q>n|=YHa0d^OdOHmY;9-&aER;zuc8|`*G;bM$g zmK6$x05F+MNKYb!91h14^s=n;`Mg%E?Q}Y^Sj_A71_A*9C=?2bL}EUktX3=67~#xX zqtR?_Z50ZIlarIdV8G+?{C+<<@8RKLe}A70Rh>@PY&O@+Iv5NhgzoO{=BuF5Xoy6j zot>Spu7XS^v$&ZilS!#ml1in7OJvMsGGeiKZ5iKgy!-omnN0R!*h(_~++zV_yx462 b>BH;~a9|}kOw?>(00000NkvXXu0mjfaI93Z diff --git a/QueryStringTest.Windows/Images/UnitTestSplashScreen.scale-100.png b/QueryStringTest.Windows/Images/UnitTestSplashScreen.scale-100.png deleted file mode 100644 index 193187f108f50dd242cb5c589b02a29691b7432a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 9381 zcmeHs_dDBt)PI_yHA>VTRkZe|wPy)R?Y(D>nzd(8MXaJ~uc9_FOYOTxRcpoGYExp@ zitu$y`dr^X;d!p>{^4^a`Mk$D=XGA^^&W{-S5>%&M~w#n0Pa0kl+y$NfQ|sbEzY|* z*KZ(9yQ9}1Shg}MG5|pJy8xs{;`MKOD@9Ee03d=00EoGMP}hS(qyd0HUjSe;8UPSq z1puh}+{MGZ0RTJ^ds$g^bvqXi7k4`sSNi9&vh=QQE;ja#F986>o~&eVZS4v2h{0BG zzubOapl0}d^FM%L|3p);MJkm!>uo}TC)EsjKw_|5I-{a`S1?@tv94S-h*Z1k&f~kR ze3W2qP8a#{Xjpm6$-x0~x!eU&d(w#9ZXGnF0K6~aNlC#`z7_w2WG_@abCWnh!($r| ze2dOJm<{kkSH8)t%Kt8?_h)}tHiH|`4C~gOpMDF_b!12&SoO|T&L@M-fRK$;0C7gG z2o)zW1yqt!5xII@MTy!V7kL~dwnR{+@I$h>u#k#;13)l%@=1A+c9Wfc!97$`T z1(5Gv81OGm4}-z=Pd?YzJ$WL)k1AEa@;r1=nw*+OpiEP2^=n<-Wa5-g{`(Y1L@2e0_T0)g z+sBeSaR);tBKt2aqJp_$G#p$^D&LE2KM5GnHZA5voIbpB=}Ctplj%d4(@6q;8(A3h zQyKI*qh}58i@msL%1KW8DN*O;r|w4b$l+6Bb*q@*QBQVh2;vSa9x*)}*==%_@6vY4 zOAql~WKWECzuFZ-*?uipVhYXJ6B%G)eLHafK!D<;Yw-TZTelQ}?D2PgNI%#B$eQDn z2Xnb%IsZd*8VUm8>fR<-#3~6Us*$Ff#KM!|o5Vd1ex-hgT1LPQyGMpa7<(X8`4{z< zTh5_KbJ7>Vw&vt5IQSqe3kH6LpH^f z?4hN(e#KPhbfUOf5ise{Arm`-^l(VT{MWlL-jr0`FUO|oB)GO0BKu3n71)9^5QhKj zfh*H2;9;29ufx5kr-I^mQlaahU=T5NUKAxGK^OMELSDSj+qiOtsCc|jx9q`936d+! z{84@ME*g}i*kA>!JV%Y}Vs%pd&p4mybl#N8KaltQ=%*p1VO4A}s_=xW0y?fR^Rab^ zcmvCWya{9y;{2>3pC`{HpJk|$kCNbCer$Dzk0m4D^VH9&_xmJY(5%tgfCS#9by`** z=m(ZR7=QS)3$H3{l6_la+h7~y1w`T~bd~(-bKUvEN=uXySN6|?uUTL3Ei%8x_hD;c zp2yjZvt4%ID>#)85V{nF0NbVGne9ln?=rl7+`;^eDL2VAVJ~>^z2f6i;)=)+Iquhw zs^9y>_@oKT2PnU1*i0~1gg<7mzq1M2q}}A+WJ-H6&M5Xi|2y!2&`sbBct(5{iv{jb z>`;EgRV|YzpC@anxYYRAR8wpCx!Y%Jn043+ZtvE60Zkt^E;b6b!co5x>XJmwN1E=# zr1o0&L7Uo}_ctF6>wPM+uHrZ3cjk9Y1Ez)YQ&@jvy9>@*dS;;^s6~A}kVKn6C*wC* zC68RIJ)cnB_T@|Kl-}@Oo1f#~vy&ebFg)Q(r{D_HRT5LBDQq>$tLw7Iwe3A-s!$G3 z?)%A=cR7Bu;jqDU#ET~@g^NCwujGD!X%~3N*vqFCZWm{MGKK}n`x=JjSyp!Fu<41E z9em(c_RcFB;@E6GGSC6*sOjXsYW*Gj`%QYiVXGJ*E<+vZ1c0d`AV335Y$2 z6^+fNaiCP7+U4I7xU{phcyBpu=eD5zZFJ_zLfy=fw}6B|vO(+=mwQcP^BK+|_aVj4 zqmf*DlRN;OmgNpDbIw~L%Cz z(yhic$+WGSs_LOwu9&&lfTKx5Dg|-o5v}t@c0c zr|d&F&o{$1^Bo+=w+#e-o-7Kzl%^`wAqH9hrhW;LL(taH!nB&p=Glu zAn~H+LNB9J$eV(d%#o9FVX3;HKs_(sOt@yu%VAD%RB)$01hF<#Rv*M^Nnyez$OdDD zn02r>p2uzqB`pL@6SrG^9If%VQteZnA6PUYY$i;3p0b)8yL&t{r=iNj!yfdR#bz)m z>Lr<{Kdyh6zXC@fM|0_uQZL=sO4afu-CopBgv@|r>e{hZojgK0A&fX&n@B>u?ZFy!)Bt5&=e)N{blx0nDR(c*89W`88?`t80SEYMA z%eG8}%3VB&xF3oOtnhkV7H;(`H?%mLG`B7t|8m{f%SzZtfQxO5X?bhyw0%kOby>Xp zc4y-bn5ckGS6nk-bgy=2&?!GTzo^H!=ltOvsWzzr>Y!ugZ#=s!c-iqe+Am692&$#2 zWTkuMwC#JWjzrpS4wBp81tnd6K5iU1dMmMPHvQ2qe)MXpEW0td zQK3@HjHi#HH6h6Tlxx{(p?S|c5#M09dY40L1F~_sak&4rXjCod68m=Q;YCx|#>n-C z6W3MIz#Ra0e za^0u;xtxr)k11l#rOVVd9k3UpZJ;F2pGGtTXJ38UHZbr))(5u)q$GI{^?^q~l=&^w zhpO-xUtESPyZ)*V7J8czrT1cCyrc5@d<6uZlRIxU3+qLdQZFWtshAT18xDa?t zksuV{$9X9KI)CJJ#Qq7&=+gfR*%$=jmdZf|1mZYqKE{Mq#{$A0bFTXdcLpOpaw%uV zrD_+prFy2EcxWU@Fbcp-55gXawBwO)ZmoFb*a>mFh*|E!(l7XnjBu(nDVQZ6$ z#0i_e)c=;WpCzteD5-)`63PT=QYkSwOu^`)-(aSDLIyeLBe0W2{2D(ABQ;e`(xjpb z(O!oDoe|spsTSxjy)nJy!JZu7{eL=-M=$M`{uGhV526ms1}*}Q6H!i0FX`I&O#;sm z&(Ssr4CwJP1mKWbnU@|yl8JhrYwL0K30B8Oe{z;re72m^Cej2gM_4d){^%LPYVDOj zXOIs(*V^`fH0=(5S4U@V5lq`aEw%jJM|X~2O)u@3&;A<*r*R5s$LhoU)<(;ML;7QX zuIZ^i3a_q6sPxFpzBT?x_LZ84Sj+zvOh;Bwx6&nRP!b|^ax=ipc6eN+QuHu+-)6SV zabn^@=Osp5Lv*q8-kd?|7GUbVD|!*@hW83r2OeEs{P0Su^cz`5az*6(V}$r0w-8n( z7)-r*HSUn*4^3qs%QQQMmaz%UjtJ938Xu@p9>6gj#Kkraq1g5IB6}J02Vr+sKIGC6 z?^gY@kH>Irs;*$9p((0Y_^$)98Uf-oh;|zG4;KlS1$J>>-DFlMONMMS58>lQ_JzV| zlHsi>m?b|U8aH065LQvhmlen1nf=R!*{*sg7$uKOl+kpyi~lwXWjhb&zbZsTn0&M5 zM0;g!1Jnq+sLQ>7#yIa^P4u4fBrE;P{3cs=K;ARIQ70+HBW|nvXxK<7pg)#Z!+|UL zK9vo3J_%(F{B|%Leq`7*>cn$Gmhl?*W<3gt#FhK}nsd7OUYLTUUTuafBOINnpjEraK27n2L&B{MB|ETuzZ% zuh;piMyEqV`1QXXXS&0M7o0-CDQJ}b8O5fC)E=k!RF0JKq!`5InwLe@x1>KsDP=6w zab?);V#>q}SMKTSg2LicaZ@RYCuP;7jyiBJ(WQ!Jvzesasi+7v(WbA2OgeGINy#v(e6yErwFI4O+|YZ5^`6LI6;lKcn0Us(+x;XHJRgBT76Rn%0@IB z${T-0(t!po^gfi4A?MzCPx{h&$HzA&cWq*@jdbcviX$b~zt$>51Pn#S-q<~20AW9y zYaKs6huUWG^%z#^fM-lqE?~4K>-1GTH`z_SE*Q&C1^ZM zepgdCjv3Sk9NTTuIqg<#Sp;FY@eFv+EXkNdUKX*tmAiIpsb>JOGVr5>I;aA9fYXx04102YV*rJKws) zYZ}zV)bg3xW6c|DLp9Rn2bJXH$O%Kb`r4f$(<&zGl~Y58K|L{9K@5CDFlo-C95QmG z0OH-W$*us~q*8$yQ?$gvK_s~_Wceph#jkUI9#__k?&|MM#DD4ZF+DAhB7@Gr7D7^SAy!;@dw zXjdie^m^IS^h8QxSelKM7w`K?y)S^c@&SVFlWusH##gT=ZvAIQvvl^@x<%;trIEnu z(p_@$lV(KREaI*^+oa}GH!g|N9|(yiiIo_6v_CAMXyocMzS@RX;&Av#A6|Xyv$m87 zK9W4lf-p`F4MXW#yw2%Eh||64D>vtun_nKEz7s)&*<*KtpwHGup79BkEL7^4k&KT! zcBV!mz{HVsY>$!ah}e%T=#+jG2+<$SVddOD5ySu38M5XPUcs)uOW_8|lXa8DfH(t! zVz+wWLo;SJ{Otn!s?3`WzWZu6yrP=sW2QsrDoUDjg90!5JXRNHt8s*i+;IY5#BAG_ znm`TBigFGR{<*Td!Kkf%l?ms{#c)#(6osL8HnycqP<~Z$&X!2IZnz8kq$p%Ji*ol& z_x4_zmM>IMr%4b0b+1p|+}U<=?MXLZ!$4KPeaEWO&HQAk zBQBGLV$rL8md>bfC+9?Nvws~-E&L}Fc0X&4VBB_<9p2dgCE#C#&1-0Or2a}odF0BO$OwZ6k&pV(II6J)SF=yMugy{Y37Qs^5*Y)8`D#DL_D>(*-XLr!?3 zN)vj<^y_^=t2XN-x2nL5?@O{nziQqFo_=MSdbAn=uTx~k%K2M}IevOu3+menqs&2B z0B(XVq`xM@R7W1f9j~!pA|iDnBdpO0p`q`7l8ja=I~98JBbI9_p~i7WU)uutDo^m; zk#e@TD52=(ZZbPKW8Hbsja8!2en;Kr87WWU_qJtP}m*zaK zB*&{aJ9(IPSC!^4KcZ9uCov$DG%A#UUSL^1VW zoS3=P50OQOiK>2#z1_1}Jfsc}RUS*&V^oC*`xT70MZxYA$mji#6t8}(GtT(!&CJ37 z7y_$*?UItC0_?pj-fhp8NcRm+rTfloJ^_VdbY$*sSI3o?#ePs(20XSVQo3(qt|N19 z_7hJI13EDIYjRwrrPn@Xkq2FFKZ|J;)e$h;X%%eFm+AP|3NJ?pD`1|7^p?vYp2g$d zZ{l;@ePf7(w>&S<^=Ynk-JV@0;;?*{myuV$*BHJ4%W}35HoYghQ6g6c9Ox)Gl87##Yr@~DMP-N}2LB>lw6Emf5oOnXa2=dJYr zE+psIJFH)ZDsZoo%G5P+=f3WO^s_I5wiJzM;hMsi3)zG8>*eqCk1xWB-Cgt6%GBeC zwp{55(7J)c1_E~oJhk=Q>Df}aLv_^kMrqw{(`33$tlFah?dDxa#-Y8jjf{+=b%8D1 zw^tc$cqW5=^ZyeeZ;O%ElP_Zm(F$^@*GX8OBaaw+iY5@Rdq66Pky4+LdgoJt2WnnBtk;+e&){RH);#HPBK(973dT4VYsD8(zh z$dCb+fo03zkU8^Dt_u{qd=&KDr0owzuvzEHqP$m*e* z94oER=6$Zf-}N36Yw>^Yt!VY>qoOLo$d|H<32{0H+wj2QP2!53*ILihvdzTyRyJ<9 zaZS)FGkUxjj(cFE`NAczWdvb?Y+cig*W*Pp)xXBZvGOKQpUc9NU0TTyCF4L!*Pb-* zq#zQw8cyb$A&g9v+?9L!UQMppKSqa~!?(RY=$)4jyNJ+gg0JqG&Ag|PpYNNmw1js> zZfG5ndsl9M-@2|anz+XG%%o00HnK5Rn7^HUu(0;k=E~GZrx(GJ7C)7aCTflk8*fXsSwo$I+=)rhb4vf(#maM?GTATdi~tYz?5A8v7(-Tl zJ`oN7&nfz#Z2mb)zLF^D?uQUJ4xo~_8=3bzV2NX7-TDJvH&#rB>XBb;s=bw-9FA8LOgrOxC4kM_0 zu-C3q-obCjCIdWK(@v+)Ry# zwY$08=zW%(d^LXs*~!WIIcO`@6P{7=9Zf9^%zyccmfioF{)6Q|Cj2j}f_&mrDTv9& Wc>{ycr|W-s0MEgya{drMKsZ^rAz8-3|8d+Ic`2PKS@(c;{5kDToaT(HAsZ>y@R9IPAVH+D86hVdo zpwiM(=yWqACH1{xb1(cIh&yuSwG44ZEk9#7H8rt&_wJEWsRUz; z5fQDguVZOxiD@(%QmIsaSw=+UcDu2%vcfbPO~@Qcl5qe2eb(OIP7!t_c~J`hhzKJi zBec4@3Z+sBzXoY(X(%WtpfFkT^NLcbr10^zwKWV44N(+WB`<3E+tSh!L{Y@Wix(3j zGn>r@hr_X_gcxWX$Kl|?gV=&c$To5u7l=kPGcyznpD2lA#Q*%`Q&UqYDJfz8P1@Yt z{0&+jj|X4BehvR``=n8!P(ZKOqp7J0`T6;NW&fVU^AH39j4|>%G{p!vQ8BYMURPI# z^73*bB6z)C$g&)~xa4#?(bv}ptJNCakXT&t^5sitwOU-gdKD*6o`gc7NJ^emSXdZw z+~@PbX0xHUw--Z0LjjJ8xa->;J_v$<%F0T1`SN9|udhc&M#i>~i5FV2WIP@ZhKGmI z+1bfPMn))>5pg-YEXxo@kroyfFg-numX;PAI&^4TIPJ6rKkM7KZ|LdifyH8h!{H#W z*SkHB#CsgX7(-@eCTeSIapT4foH%h}&!Oh?`Czx((ca#U{{DU}FE7W<^udJ4g5q;T z5@L)oK@d<}Tuira-NKnOXIM%~%5PDNZAFFPJ`qv0aRBgoy-XBEdid}m-o1OrHa0c_ zVlfCYz$d{`i?$;n`nw_0oM32#L(boiHXhvF`cV|Uq7vecp;c2;6Mz=a^GShLTU#5f zR_o576^|hbg#v|zg}89xLWr}+ozTS@-J&=<_Qcu!;rGgwD|GJMxj#1i#xz8wQlY7- zDd~h53u-o-4NsmtK~GPQzogz7j|hSQlgR{=$pl%JF+M*2YtpY21?lPOC@LySNa4A; zIsE+j6TvA;aI37W#M06d`uqE%vU}8|adUGM6B84dnVIp2Qwnx`j^n@>V+{=rbo=)0 zgp$S=FJ7Rdqk{n;pU(%M&le&_MC9>!V){zdq|xW|VR3PB+f%^S*4BiRMx9QFj~_qA zTaWDh0o{QE2T)a2m9Q@yJ9Z2@oeon|Q~P^B=ZBZcWMXQyI)tTnQ|hWzD%8}}Fo(mj z|D`U+aj34Yrj(QvKNQL7bYgID5LT;|u3x{7>gsB692a2f$;nBywY5=IRTUZ<8jzct zOB~06=Xsb+ChF+ufFw!#Tk7WIC>kW1tumYFgG`cf`S4t#;~}!7{W!eEMs(Z6!Y`*f!#3}4Cv|U zf!pogA49UUv*C8T@!-J&3=IuMWZdQDWsHxH!(cFg=XrYn{yi2J7JiePpP$F$$B!{R zJ&m%mGUVsy?<#uj>VPizT0xfONOc1PKt`hxj~+dOLZM)H@7|?n&z}8R*9vQEYgk)b zi&euA08CC!!r^d0tyWXexo*TcvMiI+>HKF7=(cNaw;KZk1IWqA!SeEQQWMOi-yvG9 zR%o@_q~0G!@{y==_`hFI6A|JtBB6Ke1X_uH!V!<$zv2@P{3$z - - - - - - QueryStringTest.Portable - anbare - Images\UnitTestStoreLogo.png - QueryStringTest.Portable - - - - 6.3.0 - 6.3.0 - - - - - - - - - - - - - - - - - - - - - - - diff --git a/QueryStringTest.Windows/Properties/AssemblyInfo.cs b/QueryStringTest.Windows/Properties/AssemblyInfo.cs deleted file mode 100644 index f891361..0000000 --- a/QueryStringTest.Windows/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,28 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("QueryStringTest.Portable")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("QueryStringTest.Portable")] -[assembly: AssemblyCopyright("Copyright © 2015")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/QueryStringTest.Windows/QueryStringTest.Windows.csproj b/QueryStringTest.Windows/QueryStringTest.Windows.csproj deleted file mode 100644 index ff5c385..0000000 --- a/QueryStringTest.Windows/QueryStringTest.Windows.csproj +++ /dev/null @@ -1,158 +0,0 @@ - - - - - Debug - AnyCPU - 8.0.30703 - 2.0 - {ED343F4D-5AE4-42B4-99F9-CCDA5996806C} - Library - Properties - QueryStringTest.Portable - QueryStringTest.Portable - en-US - 8.1 - 14 - 512 - {BC8A1FFA-BEE3-4634-8014-F334798102B3};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - QueryStringTest.Portable_TemporaryKey.pfx - Never - False - - - AnyCPU - true - full - false - bin\Debug\ - DEBUG;TRACE;NETFX_CORE - prompt - 4 - - - AnyCPU - pdbonly - true - bin\Release\ - TRACE;NETFX_CORE - prompt - 4 - - - true - bin\ARM\Debug\ - DEBUG;TRACE;NETFX_CORE - ;2008 - full - ARM - false - prompt - true - - - bin\ARM\Release\ - TRACE;NETFX_CORE - true - ;2008 - pdbonly - ARM - false - prompt - true - - - true - bin\x64\Debug\ - DEBUG;TRACE;NETFX_CORE - ;2008 - full - x64 - false - prompt - true - - - bin\x64\Release\ - TRACE;NETFX_CORE - true - ;2008 - pdbonly - x64 - false - prompt - true - - - true - bin\x86\Debug\ - DEBUG;TRACE;NETFX_CORE - ;2008 - full - x86 - false - prompt - true - - - bin\x86\Release\ - TRACE;NETFX_CORE - true - ;2008 - pdbonly - x86 - false - prompt - true - - - True - true - - - - - - - - - - - - Designer - - - - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - PreserveNewest - - - - - {3b63708f-2d48-48cf-b604-b607f2154208} - QueryString.Portable - - - - - 14.0 - - - - \ No newline at end of file diff --git a/global.json b/global.json index dd53be2..f003214 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "1.0.0-beta5", + "version": "2.1" "runtime": "clr", "architecture": "x86" }