From 22d2b339e35566054ec78870b9ec88edab9603b2 Mon Sep 17 00:00:00 2001 From: Julien Mialon Date: Wed, 20 Jan 2016 13:39:38 +0100 Subject: [PATCH 1/2] implement push notification open count tracking for windows phone and winrt --- .../Controller/ParseAnalyticsUtilities.cs | 339 ++++++++++++++++++ Parse/Public/Phone/ParseAnalytics.Phone.cs | 8 +- Parse/Public/WinRT/ParseAnalytics.WinRT.cs | 10 +- 3 files changed, 351 insertions(+), 6 deletions(-) create mode 100644 Parse/Internal/Analytics/Controller/ParseAnalyticsUtilities.cs diff --git a/Parse/Internal/Analytics/Controller/ParseAnalyticsUtilities.cs b/Parse/Internal/Analytics/Controller/ParseAnalyticsUtilities.cs new file mode 100644 index 00000000..f4c3c3d0 --- /dev/null +++ b/Parse/Internal/Analytics/Controller/ParseAnalyticsUtilities.cs @@ -0,0 +1,339 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace Parse.Internal.Analytics.Controller +{ + public static class ParseAnalyticsUtilities + { + public static string MD5DigestFromPushPayload(object payload) + { + string content; + if (payload == null) + { + content = ""; + } + else if (payload is IDictionary) + { + IDictionary array = (IDictionary) payload; + + List components = new List(); + foreach (string key in array.Keys.OrderBy(x => x)) + { + components.Add(key); + + object value = array[key]; + if (value is List) + { + components.Add(string.Join("", (List)value)); + } + else + { + components.Add(value as string); + } + } + + content = string.Join("", components); + } + else + { + content = payload as string ?? ""; + } + + return MD5HashFromString(content); + } + + public static string MD5HashFromString(string input) + { + byte[] hash = MD5.GetHash(input, Encoding.UTF8); + + StringBuilder builder = new StringBuilder(); + foreach (byte b in hash) + { + string part = string.Format("{0:X}", b); + for (int i = part.Length; i < 2; ++i) + { + builder.Append("0"); + } + builder.Append(part); + } + + return builder.ToString().ToLowerInvariant(); + } + + /// + /// Simple struct for the (a,b,c,d) which is used to compute the mesage digest. + /// + internal struct ABCDStruct + { + public uint A; + public uint B; + public uint C; + public uint D; + } + + /// + /// Raw implementation of the MD5 hash algorithm rom RFC 1321. + /// + internal sealed class MD5 + { + //// Prevent CSC from adding a default public constructor + private MD5() { } + + public static byte[] GetHash(string input, Encoding encoding) + { + if (null == input) + { + throw new System.ArgumentNullException("input", "Unable to calculate hash over null input data"); + } + if (null == encoding) + { + throw new System.ArgumentNullException("encoding", "Unable to calculate hash over a string without a default encoding. Consider using the GetHash(string) overload to use UTF8 Encoding"); + } + byte[] target = encoding.GetBytes(input); + return GetHash(target); + } + + public static byte[] GetHash(string input) + { + return GetHash(input, new UTF8Encoding()); + } + + public static string GetHashString(byte[] input) + { + if (null == input) + { + throw new System.ArgumentNullException("input", "Unable to calculate hash over null input data"); + } + string retval = BitConverter.ToString(GetHash(input)); + retval = retval.Replace("-", string.Empty); + return retval; + } + + public static string GetHashString(string input, Encoding encoding) + { + if (null == input) + { + throw new System.ArgumentNullException("input", "Unable to calculate hash over null input data"); + } + if (null == encoding) + { + throw new System.ArgumentNullException("encoding", "Unable to calculate hash over a string without a default encoding. Consider using the GetHashString(string) overload to use UTF8 Encoding"); + } + byte[] target = encoding.GetBytes(input); + return GetHashString(target); + } + + public static string GetHashString(string input) + { + return GetHashString(input, new UTF8Encoding()); + } + + public static byte[] GetHash(byte[] input) + { + if (null == input) + { + throw new System.ArgumentNullException("input", "Unable to calculate hash over null input data"); + } + + //// Intitial values defined in RFC 1321 + ABCDStruct abcd = new ABCDStruct(); + abcd.A = 0x67452301; + abcd.B = 0xefcdab89; + abcd.C = 0x98badcfe; + abcd.D = 0x10325476; + + //// We pass in the input array by block, the final block of data must be handled specialy for padding & length embeding + int startIndex = 0; + while (startIndex <= input.Length - 64) + { + MD5.GetHashBlock(input, ref abcd, startIndex); + startIndex += 64; + } + //// The final data block. + return MD5.GetHashFinalBlock(input, startIndex, input.Length - startIndex, abcd, (Int64)input.Length * 8); + } + + internal static byte[] GetHashFinalBlock(byte[] input, int ibStart, int cbSize, ABCDStruct ABCD, Int64 len) + { + byte[] working = new byte[64]; + byte[] length = BitConverter.GetBytes(len); + + //// Padding is a single bit 1, followed by the number of 0s required to make size congruent to 448 modulo 512. Step 1 of RFC 1321 + //// The CLR ensures that our buffer is 0-assigned, we don't need to explicitly set it. This is why it ends up being quicker to just + //// use a temporary array rather then doing in-place assignment (5% for small inputs) + Array.Copy(input, ibStart, working, 0, cbSize); + working[cbSize] = 0x80; + + //// We have enough room to store the length in this chunk + if (cbSize < 56) + { + Array.Copy(length, 0, working, 56, 8); + GetHashBlock(working, ref ABCD, 0); + } + else //// We need an aditional chunk to store the length + { + GetHashBlock(working, ref ABCD, 0); + //// Create an entirely new chunk due to the 0-assigned trick mentioned above, to avoid an extra function call clearing the array + working = new byte[64]; + Array.Copy(length, 0, working, 56, 8); + GetHashBlock(working, ref ABCD, 0); + } + byte[] output = new byte[16]; + Array.Copy(BitConverter.GetBytes(ABCD.A), 0, output, 0, 4); + Array.Copy(BitConverter.GetBytes(ABCD.B), 0, output, 4, 4); + Array.Copy(BitConverter.GetBytes(ABCD.C), 0, output, 8, 4); + Array.Copy(BitConverter.GetBytes(ABCD.D), 0, output, 12, 4); + return output; + } + + //// Performs a single block transform of MD5 for a given set of ABCD inputs + /* If implementing your own hashing framework, be sure to set the initial ABCD correctly according to RFC 1321: + // A = 0x67452301; + // B = 0xefcdab89; + // C = 0x98badcfe; + // D = 0x10325476; + */ + internal static void GetHashBlock(byte[] input, ref ABCDStruct ABCDValue, int ibStart) + { + uint[] temp = Converter(input, ibStart); + uint a = ABCDValue.A; + uint b = ABCDValue.B; + uint c = ABCDValue.C; + uint d = ABCDValue.D; + + a = r1(a, b, c, d, temp[0], 7, 0xd76aa478); + d = r1(d, a, b, c, temp[1], 12, 0xe8c7b756); + c = r1(c, d, a, b, temp[2], 17, 0x242070db); + b = r1(b, c, d, a, temp[3], 22, 0xc1bdceee); + a = r1(a, b, c, d, temp[4], 7, 0xf57c0faf); + d = r1(d, a, b, c, temp[5], 12, 0x4787c62a); + c = r1(c, d, a, b, temp[6], 17, 0xa8304613); + b = r1(b, c, d, a, temp[7], 22, 0xfd469501); + a = r1(a, b, c, d, temp[8], 7, 0x698098d8); + d = r1(d, a, b, c, temp[9], 12, 0x8b44f7af); + c = r1(c, d, a, b, temp[10], 17, 0xffff5bb1); + b = r1(b, c, d, a, temp[11], 22, 0x895cd7be); + a = r1(a, b, c, d, temp[12], 7, 0x6b901122); + d = r1(d, a, b, c, temp[13], 12, 0xfd987193); + c = r1(c, d, a, b, temp[14], 17, 0xa679438e); + b = r1(b, c, d, a, temp[15], 22, 0x49b40821); + + a = r2(a, b, c, d, temp[1], 5, 0xf61e2562); + d = r2(d, a, b, c, temp[6], 9, 0xc040b340); + c = r2(c, d, a, b, temp[11], 14, 0x265e5a51); + b = r2(b, c, d, a, temp[0], 20, 0xe9b6c7aa); + a = r2(a, b, c, d, temp[5], 5, 0xd62f105d); + d = r2(d, a, b, c, temp[10], 9, 0x02441453); + c = r2(c, d, a, b, temp[15], 14, 0xd8a1e681); + b = r2(b, c, d, a, temp[4], 20, 0xe7d3fbc8); + a = r2(a, b, c, d, temp[9], 5, 0x21e1cde6); + d = r2(d, a, b, c, temp[14], 9, 0xc33707d6); + c = r2(c, d, a, b, temp[3], 14, 0xf4d50d87); + b = r2(b, c, d, a, temp[8], 20, 0x455a14ed); + a = r2(a, b, c, d, temp[13], 5, 0xa9e3e905); + d = r2(d, a, b, c, temp[2], 9, 0xfcefa3f8); + c = r2(c, d, a, b, temp[7], 14, 0x676f02d9); + b = r2(b, c, d, a, temp[12], 20, 0x8d2a4c8a); + + a = r3(a, b, c, d, temp[5], 4, 0xfffa3942); + d = r3(d, a, b, c, temp[8], 11, 0x8771f681); + c = r3(c, d, a, b, temp[11], 16, 0x6d9d6122); + b = r3(b, c, d, a, temp[14], 23, 0xfde5380c); + a = r3(a, b, c, d, temp[1], 4, 0xa4beea44); + d = r3(d, a, b, c, temp[4], 11, 0x4bdecfa9); + c = r3(c, d, a, b, temp[7], 16, 0xf6bb4b60); + b = r3(b, c, d, a, temp[10], 23, 0xbebfbc70); + a = r3(a, b, c, d, temp[13], 4, 0x289b7ec6); + d = r3(d, a, b, c, temp[0], 11, 0xeaa127fa); + c = r3(c, d, a, b, temp[3], 16, 0xd4ef3085); + b = r3(b, c, d, a, temp[6], 23, 0x04881d05); + a = r3(a, b, c, d, temp[9], 4, 0xd9d4d039); + d = r3(d, a, b, c, temp[12], 11, 0xe6db99e5); + c = r3(c, d, a, b, temp[15], 16, 0x1fa27cf8); + b = r3(b, c, d, a, temp[2], 23, 0xc4ac5665); + + a = r4(a, b, c, d, temp[0], 6, 0xf4292244); + d = r4(d, a, b, c, temp[7], 10, 0x432aff97); + c = r4(c, d, a, b, temp[14], 15, 0xab9423a7); + b = r4(b, c, d, a, temp[5], 21, 0xfc93a039); + a = r4(a, b, c, d, temp[12], 6, 0x655b59c3); + d = r4(d, a, b, c, temp[3], 10, 0x8f0ccc92); + c = r4(c, d, a, b, temp[10], 15, 0xffeff47d); + b = r4(b, c, d, a, temp[1], 21, 0x85845dd1); + a = r4(a, b, c, d, temp[8], 6, 0x6fa87e4f); + d = r4(d, a, b, c, temp[15], 10, 0xfe2ce6e0); + c = r4(c, d, a, b, temp[6], 15, 0xa3014314); + b = r4(b, c, d, a, temp[13], 21, 0x4e0811a1); + a = r4(a, b, c, d, temp[4], 6, 0xf7537e82); + d = r4(d, a, b, c, temp[11], 10, 0xbd3af235); + c = r4(c, d, a, b, temp[2], 15, 0x2ad7d2bb); + b = r4(b, c, d, a, temp[9], 21, 0xeb86d391); + + ABCDValue.A = unchecked(a + ABCDValue.A); + ABCDValue.B = unchecked(b + ABCDValue.B); + ABCDValue.C = unchecked(c + ABCDValue.C); + ABCDValue.D = unchecked(d + ABCDValue.D); + return; + } + + //// Manually unrolling these equations nets us a 20% performance improvement + private static uint r1(uint a, uint b, uint c, uint d, uint x, int s, uint t) + { + //// (b + LSR((a + F(b, c, d) + x + t), s)) + //// F(x, y, z) ((x & y) | ((x ^ 0xFFFFFFFF) & z)) + return unchecked(b + LSR((a + ((b & c) | ((b ^ 0xFFFFFFFF) & d)) + x + t), s)); + } + + private static uint r2(uint a, uint b, uint c, uint d, uint x, int s, uint t) + { + //// (b + LSR((a + G(b, c, d) + x + t), s)) + //// G(x, y, z) ((x & z) | (y & (z ^ 0xFFFFFFFF))) + return unchecked(b + LSR((a + ((b & d) | (c & (d ^ 0xFFFFFFFF))) + x + t), s)); + } + + private static uint r3(uint a, uint b, uint c, uint d, uint x, int s, uint t) + { + //// (b + LSR((a + H(b, c, d) + k + i), s)) + //// H(x, y, z) (x ^ y ^ z) + return unchecked(b + LSR((a + (b ^ c ^ d) + x + t), s)); + } + + private static uint r4(uint a, uint b, uint c, uint d, uint x, int s, uint t) + { + //// (b + LSR((a + I(b, c, d) + k + i), s)) + //// I(x, y, z) (y ^ (x | (z ^ 0xFFFFFFFF))) + return unchecked(b + LSR((a + (c ^ (b | (d ^ 0xFFFFFFFF))) + x + t), s)); + } + + //// Implementation of left rotate + //// s is an int instead of a uint becuase the CLR requires the argument passed to >>/<< is of + //// type int. Doing the demoting inside this function would add overhead. + private static uint LSR(uint i, int s) + { + return ((i << s) | (i >> (32 - s))); + } + + //// Convert input array into array of UInts + private static uint[] Converter(byte[] input, int ibStart) + { + if (null == input) + { + throw new System.ArgumentNullException("input", "Unable convert null array to array of uInts"); + } + + uint[] result = new uint[16]; + for (int i = 0; i < 16; i++) + { + result[i] = (uint)input[ibStart + i * 4]; + result[i] += (uint)input[ibStart + i * 4 + 1] << 8; + result[i] += (uint)input[ibStart + i * 4 + 2] << 16; + result[i] += (uint)input[ibStart + i * 4 + 3] << 24; + } + + return result; + } + } + } +} diff --git a/Parse/Public/Phone/ParseAnalytics.Phone.cs b/Parse/Public/Phone/ParseAnalytics.Phone.cs index 4e47e95d..feae8a22 100644 --- a/Parse/Public/Phone/ParseAnalytics.Phone.cs +++ b/Parse/Public/Phone/ParseAnalytics.Phone.cs @@ -7,6 +7,7 @@ using System.Text; using System.Threading.Tasks; using System.Windows; +using Parse.Internal.Analytics.Controller; namespace Parse { public partial class ParseAnalytics { @@ -39,9 +40,10 @@ public static void TrackAppOpens(PhoneApplicationFrame frame) { return; } var json = ParsePush.PushJson(args.Uri.ToString()); - object hash = null; - if (json.TryGetValue("push_hash", out hash) || alwaysReport) { - await TrackAppOpenedWithPushHashAsync((string)hash); + object alert = null; + if(json.TryGetValue("alert", out alert) || alwaysReport) { + string pushHash = ParseAnalyticsUtilities.MD5DigestFromPushPayload(alert); + await TrackAppOpenedWithPushHashAsync(pushHash); } }; } diff --git a/Parse/Public/WinRT/ParseAnalytics.WinRT.cs b/Parse/Public/WinRT/ParseAnalytics.WinRT.cs index 563997bf..c26b3d5f 100644 --- a/Parse/Public/WinRT/ParseAnalytics.WinRT.cs +++ b/Parse/Public/WinRT/ParseAnalytics.WinRT.cs @@ -9,6 +9,7 @@ using System.Text; using System.Threading.Tasks; using Windows.ApplicationModel.Activation; +using Parse.Internal.Analytics.Controller; using Parse.Internal; @@ -31,10 +32,13 @@ public static Task TrackAppOpenedAsync(ILaunchActivatedEventArgs launchArgs) { return ((Task)null).Safe(); } - object pushHash; IDictionary contentJson = ParsePush.PushJson(launchArgs); - contentJson.TryGetValue("push_hash", out pushHash); - return ParseAnalytics.TrackAppOpenedWithPushHashAsync((string)pushHash); + object alert; + string pushHash = null; + if(contentJson.TryGetValue("alert", out alert)) { + pushHash = ParseAnalyticsUtilities.MD5DigestFromPushPayload(alert); + } + return ParseAnalytics.TrackAppOpenedWithPushHashAsync(pushHash); } } } From 93098300ca52c8a5b05ce2cdb179e48bc4a7dfde Mon Sep 17 00:00:00 2001 From: Julien Mialon Date: Wed, 20 Jan 2016 14:23:57 +0100 Subject: [PATCH 2/2] implement uwp support with track notification count --- .gitignore | 4 +- Parse.UWP/Parse.UWP.csproj | 162 + Parse.UWP/Properties/Parse.UWP.rd.xml | 33 + Parse.UWP/project.json | 16 + Parse.UWP/project.lock.json | 14573 ++++++++++++++++ Parse.sln | 814 +- .../Internal/HttpClient/UWP/HttpClient.UWP.cs | 165 + .../PlatformHooks/UWP/PlatformHooks.UWP.cs | 315 + Parse/Parse.Android.csproj | 1 + Parse/Parse.Unity.csproj | 19 +- Parse/Parse.csproj | 1 + Parse/Parse.iOS.csproj | 1 + Parse/Properties/AssemblyInfo.Portable.cs | 1 + Parse/Public/ParseClient.cs | 2 +- Parse/Public/UWP/ParseAnalytics.UWP.cs | 44 + Parse/Public/UWP/ParseFacebookUtils.UWP.cs | 189 + Parse/Public/UWP/ParsePush.UWP.cs | 105 + 17 files changed, 16056 insertions(+), 389 deletions(-) create mode 100644 Parse.UWP/Parse.UWP.csproj create mode 100644 Parse.UWP/Properties/Parse.UWP.rd.xml create mode 100644 Parse.UWP/project.json create mode 100644 Parse.UWP/project.lock.json create mode 100644 Parse/Internal/HttpClient/UWP/HttpClient.UWP.cs create mode 100644 Parse/Internal/PlatformHooks/UWP/PlatformHooks.UWP.cs create mode 100644 Parse/Public/UWP/ParseAnalytics.UWP.cs create mode 100644 Parse/Public/UWP/ParseFacebookUtils.UWP.cs create mode 100644 Parse/Public/UWP/ParsePush.UWP.cs diff --git a/.gitignore b/.gitignore index b6177144..f57f9610 100644 --- a/.gitignore +++ b/.gitignore @@ -108,4 +108,6 @@ Generated_Code #added for RIA/Silverlight projects # Visual Studio version. Backup files are not needed, because we have git ;-) _UpgradeReport_Files/ Backup*/ -UpgradeLog*.XML \ No newline at end of file +UpgradeLog*.XML + +.vs/ \ No newline at end of file diff --git a/Parse.UWP/Parse.UWP.csproj b/Parse.UWP/Parse.UWP.csproj new file mode 100644 index 00000000..e21243f7 --- /dev/null +++ b/Parse.UWP/Parse.UWP.csproj @@ -0,0 +1,162 @@ + + + + + Debug + AnyCPU + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08} + Library + Properties + Parse.UWP + Parse.UWP + en-US + UAP + 10.0.10586.0 + 10.0.10240.0 + 14 + 512 + {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE;NETFX_CORE;WINDOWS_UWP + prompt + 4 + + + x86 + true + bin\x86\Debug\ + DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP + ;2008 + full + x86 + false + prompt + + + x86 + bin\x86\Release\ + TRACE;NETFX_CORE;WINDOWS_UWP + true + ;2008 + pdbonly + x86 + false + prompt + + + ARM + true + bin\ARM\Debug\ + DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP + ;2008 + full + ARM + false + prompt + + + ARM + bin\ARM\Release\ + TRACE;NETFX_CORE;WINDOWS_UWP + true + ;2008 + pdbonly + ARM + false + prompt + + + x64 + true + bin\x64\Debug\ + DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP + ;2008 + full + x64 + false + prompt + + + x64 + bin\x64\Release\ + TRACE;NETFX_CORE;WINDOWS_UWP + true + ;2008 + pdbonly + x64 + false + prompt + + + + + + + + Internal\HttpClient\UWP\HttpClient.UWP.cs + + + Internal\PlatformHooks\UWP\PlatformHooks.UWP.cs + + + Properties\AssemblyInfo.cs + + + Properties\AssemblyInfo.Portable.cs + + + Properties\SharedAssemblyInfo.cs + + + Public\Partial\ParseAnalytics.cs + + + Public\Partial\ParseFacebookUtils.cs + + + Public\Partial\ParsePush.cs + + + Public\UWP\ParseAnalytics.UWP.cs + + + Public\UWP\ParseFacebookUtils.UWP.cs + + + Public\UWP\ParsePush.UWP.cs + + + + + + {de07a443-9619-4bd7-b540-41296f8a2959} + Parse + + + + 14.0 + + + + \ No newline at end of file diff --git a/Parse.UWP/Properties/Parse.UWP.rd.xml b/Parse.UWP/Properties/Parse.UWP.rd.xml new file mode 100644 index 00000000..dd6e6100 --- /dev/null +++ b/Parse.UWP/Properties/Parse.UWP.rd.xml @@ -0,0 +1,33 @@ + + + + + + + + + diff --git a/Parse.UWP/project.json b/Parse.UWP/project.json new file mode 100644 index 00000000..ae7afafb --- /dev/null +++ b/Parse.UWP/project.json @@ -0,0 +1,16 @@ +{ + "dependencies": { + "Microsoft.NETCore.UniversalWindowsPlatform": "5.0.0" + }, + "frameworks": { + "uap10.0": {} + }, + "runtimes": { + "win10-arm": {}, + "win10-arm-aot": {}, + "win10-x86": {}, + "win10-x86-aot": {}, + "win10-x64": {}, + "win10-x64-aot": {} + } +} \ No newline at end of file diff --git a/Parse.UWP/project.lock.json b/Parse.UWP/project.lock.json new file mode 100644 index 00000000..ada646d0 --- /dev/null +++ b/Parse.UWP/project.lock.json @@ -0,0 +1,14573 @@ +{ + "locked": false, + "version": 1, + "targets": { + "UAP,Version=v10.0": { + "Microsoft.CSharp/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Dynamic.Runtime": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.0, )", + "System.ObjectModel": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netcore50/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.NETCore/5.0.0": { + "dependencies": { + "Microsoft.CSharp": "[4.0.0, )", + "Microsoft.NETCore.Targets": "[1.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.Http": "[4.0.0, )", + "System.Net.NetworkInformation": "[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.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.Platforms": "[1.0.0, )", + "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )" + } + }, + "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, + "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { + "dependencies": { + "Microsoft.NETCore": "[5.0.0, )", + "Microsoft.NETCore.Portable.Compatibility": "[1.0.0, )", + "Microsoft.NETCore.Runtime": "[1.0.0, )", + "Microsoft.Win32.Primitives": "[4.0.0, )", + "System.ComponentModel.EventBasedAsync": "[4.0.10, )", + "System.Data.Common": "[4.0.0, )", + "System.Diagnostics.Contracts": "[4.0.0, )", + "System.Diagnostics.StackTrace": "[4.0.0, )", + "System.IO.IsolatedStorage": "[4.0.0, )", + "System.Net.Http.Rtc": "[4.0.0, )", + "System.Net.Requests": "[4.0.10, )", + "System.Net.Sockets": "[4.0.0, )", + "System.Net.WebHeaderCollection": "[4.0.0, )", + "System.Numerics.Vectors.WindowsRuntime": "[4.0.0, )", + "System.Reflection.Context": "[4.0.0, )", + "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )", + "System.Runtime.Serialization.Json": "[4.0.0, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )", + "System.Runtime.Serialization.Xml": "[4.0.10, )", + "System.Runtime.WindowsRuntime": "[4.0.10, )", + "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0, )", + "System.ServiceModel.Duplex": "[4.0.0, )", + "System.ServiceModel.Http": "[4.0.10, )", + "System.ServiceModel.NetTcp": "[4.0.0, )", + "System.ServiceModel.Primitives": "[4.0.0, )", + "System.ServiceModel.Security": "[4.0.0, )", + "System.Text.Encoding.CodePages": "[4.0.0, )", + "System.Xml.XmlSerializer": "[4.0.10, )" + } + }, + "Microsoft.VisualBasic/10.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Dynamic.Runtime": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.ObjectModel": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/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.Collections": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/netcore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10": { + "dependencies": { + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/netcore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[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.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.0": { + "dependencies": { + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.Globalization.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Specialized.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.Collections": "[4.0.10, )", + "System.ComponentModel": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10": { + "dependencies": { + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Data.Common/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Data.Common.dll": {} + }, + "runtime": { + "lib/dotnet/System.Data.Common.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.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.0, )", + "System.Text.Encoding": "[4.0.0, )", + "System.Threading": "[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.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.ObjectModel": "[4.0.0, )", + "System.Reflection": "[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.0, )", + "System.Threading": "[4.0.0, )" + }, + "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.Globalization": "[4.0.0, )", + "System.Runtime": "[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.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.10": { + "dependencies": { + "System.Globalization": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/netcore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.0, )", + "System.Text.Encoding": "[4.0.0, )", + "System.Threading": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.0, )" + }, + "compile": { + "ref/netcore50/System.IO.Compression.dll": {} + }, + "runtime": { + "lib/netcore50/System.IO.Compression.dll": {} + } + }, + "System.IO.Compression.ZipFile/4.0.0": { + "dependencies": { + "System.IO": "[4.0.10, )", + "System.IO.Compression": "[4.0.0, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.Encoding": "[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.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Runtime.WindowsRuntime": "[4.0.0, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Overlapped": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/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.IsolatedStorage/4.0.0": { + "dependencies": { + "System.IO": "[4.0.10, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.IO.IsolatedStorage.dll": {} + }, + "runtime": { + "lib/netcore50/System.IO.IsolatedStorage.dll": {} + } + }, + "System.IO.UnmanagedMemoryStream/4.0.0": { + "dependencies": { + "System.IO": "[4.0.10, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} + } + }, + "System.Linq/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Linq.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.0, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Threading": "[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.Collections": "[4.0.10, )", + "System.Collections.Concurrent": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[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.Collections": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Net.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Runtime.WindowsRuntime": "[4.0.10, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Net.Http.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Http.dll": {} + } + }, + "System.Net.Http.Rtc/4.0.0": { + "dependencies": { + "System.Net.Http": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.Net.Http.Rtc.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Http.Rtc.dll": {} + } + }, + "System.Net.NetworkInformation/4.0.0": { + "dependencies": { + "System.Runtime": "[4.0.0, )", + "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )", + "System.Threading": "[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.Private.Networking": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.Requests/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Net.Http": "[4.0.0, )", + "System.Net.Primitives": "[4.0.10, )", + "System.Net.WebHeaderCollection": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Net.Requests.dll": {} + }, + "runtime": { + "lib/dotnet/System.Net.Requests.dll": {} + } + }, + "System.Net.Sockets/4.0.0": { + "dependencies": { + "System.Private.Networking": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebHeaderCollection/4.0.0": { + "dependencies": { + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Collections.Specialized": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Net.WebHeaderCollection.dll": {} + }, + "runtime": { + "lib/dotnet/System.Net.WebHeaderCollection.dll": {} + } + }, + "System.Numerics.Vectors/4.1.0": { + "dependencies": { + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/dotnet/System.Numerics.Vectors.dll": {} + } + }, + "System.Numerics.Vectors.WindowsRuntime/4.0.0": { + "dependencies": { + "System.Numerics.Vectors": "[4.1.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.WindowsRuntime": "[4.0.0, )" + }, + "compile": { + "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} + } + }, + "System.ObjectModel/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )", + "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.Xml.ReaderWriter": "[4.0.10, )", + "System.Xml.XmlSerializer": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "runtime": { + "lib/netcore50/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Private.Networking/4.0.0": { + "dependencies": { + "Microsoft.Win32.Primitives": "[4.0.0, )", + "System.Collections": "[4.0.10, )", + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Overlapped": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "runtime": { + "lib/netcore50/System.Private.Networking.dll": {} + } + }, + "System.Private.ServiceModel/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Collections.Concurrent": "[4.0.10, )", + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Collections.Specialized": "[4.0.0, )", + "System.ComponentModel.EventBasedAsync": "[4.0.10, )", + "System.Diagnostics.Contracts": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.Compression": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.Linq.Queryable": "[4.0.0, )", + "System.Net.Http": "[4.0.0, )", + "System.Net.Primitives": "[4.0.10, )", + "System.Net.WebHeaderCollection": "[4.0.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.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )", + "System.Runtime.Serialization.Xml": "[4.0.10, )", + "System.Runtime.WindowsRuntime": "[4.0.10, )", + "System.Security.Claims": "[4.0.0, )", + "System.Security.Principal": "[4.0.0, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )", + "System.Threading.Timer": "[4.0.0, )", + "System.Xml.ReaderWriter": "[4.0.10, )", + "System.Xml.XmlDocument": "[4.0.0, )", + "System.Xml.XmlSerializer": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "runtime": { + "lib/netcore50/System.Private.ServiceModel.dll": {} + } + }, + "System.Private.Uri/4.0.0": { + "compile": { + "ref/netcore50/_._": {} + }, + "runtime": { + "lib/netcore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10": { + "dependencies": { + "System.IO": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Context/4.0.0": { + "dependencies": { + "System.Reflection": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.Reflection.Context.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Context.dll": {} + } + }, + "System.Reflection.DispatchProxy/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.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.Diagnostics.Debug": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "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, )" + }, + "compile": { + "ref/netcore50/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.0.22": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.Collections.Immutable": "[1.1.37, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Reflection": "[4.0.0, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.0, )", + "System.Text.Encoding": "[4.0.0, )", + "System.Text.Encoding.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )" + }, + "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.Diagnostics.Contracts": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "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.Globalization": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Runtime": "[4.0.20, )" + }, + "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.Reflection": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Handles": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/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.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Json/4.0.0": { + "dependencies": { + "System.Private.DataContractSerialization": "[4.0.0, )" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.0.10": { + "dependencies": { + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.0.10": { + "dependencies": { + "System.Private.DataContractSerialization": "[4.0.0, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Runtime.WindowsRuntime/4.0.10": { + "dependencies": { + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.0, )", + "System.IO": "[4.0.10, )", + "System.ObjectModel": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} + } + }, + "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { + "dependencies": { + "System.Globalization": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.WindowsRuntime": "[4.0.0, )" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + } + }, + "System.Security.Claims/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Security.Principal": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.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.ServiceModel.Duplex/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Duplex.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Duplex.dll": {} + } + }, + "System.ServiceModel.Http/4.0.10": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.ServiceModel.Http.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Http.dll": {} + } + }, + "System.ServiceModel.NetTcp/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.NetTcp.dll": {} + } + }, + "System.ServiceModel.Primitives/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Primitives.dll": {} + } + }, + "System.ServiceModel.Security/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Security.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Security.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.CodePages/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.Encoding.CodePages.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.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.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.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.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.Collections": "[4.0.0, )", + "System.Collections.Concurrent": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Diagnostics.Tracing": "[4.0.0, )", + "System.Dynamic.Runtime": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )", + "System.Threading.Tasks": "[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.Collections.Concurrent": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/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.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Xml.ReaderWriter": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Xml.ReaderWriter": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Xml.ReaderWriter": "[4.0.10, )", + "System.Xml.XmlDocument": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netcore50/System.Xml.XmlSerializer.dll": {} + } + } + }, + "UAP,Version=v10.0/win10-arm": { + "Microsoft.CSharp/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Dynamic.Runtime": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.0, )", + "System.ObjectModel": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netcore50/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.NETCore/5.0.0": { + "dependencies": { + "Microsoft.CSharp": "[4.0.0, )", + "Microsoft.NETCore.Targets": "[1.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.Http": "[4.0.0, )", + "System.Net.NetworkInformation": "[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.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.Contracts": "[4.0.0, 4.0.0]", + "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", + "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", + "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", + "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", + "System.Globalization": "[4.0.10, 4.0.10]", + "System.Globalization.Calendars": "[4.0.0, 4.0.0]", + "System.IO": "[4.0.10, 4.0.10]", + "System.ObjectModel": "[4.0.10, 4.0.10]", + "System.Private.Uri": "[4.0.0, 4.0.0]", + "System.Reflection": "[4.0.10, 4.0.10]", + "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": "[4.0.20, 4.0.20]", + "System.Runtime.Extensions": "[4.0.10, 4.0.10]", + "System.Runtime.Handles": "[4.0.0, 4.0.0]", + "System.Runtime.InteropServices": "[4.0.20, 4.0.20]", + "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.Threading.Timer": "[4.0.0, 4.0.0]" + }, + "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.Platforms": "[1.0.0, )", + "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )" + } + }, + "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, + "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { + "dependencies": { + "Microsoft.NETCore": "[5.0.0, )", + "Microsoft.NETCore.Portable.Compatibility": "[1.0.0, )", + "Microsoft.NETCore.Runtime": "[1.0.0, )", + "Microsoft.Win32.Primitives": "[4.0.0, )", + "System.ComponentModel.EventBasedAsync": "[4.0.10, )", + "System.Data.Common": "[4.0.0, )", + "System.Diagnostics.Contracts": "[4.0.0, )", + "System.Diagnostics.StackTrace": "[4.0.0, )", + "System.IO.IsolatedStorage": "[4.0.0, )", + "System.Net.Http.Rtc": "[4.0.0, )", + "System.Net.Requests": "[4.0.10, )", + "System.Net.Sockets": "[4.0.0, )", + "System.Net.WebHeaderCollection": "[4.0.0, )", + "System.Numerics.Vectors.WindowsRuntime": "[4.0.0, )", + "System.Reflection.Context": "[4.0.0, )", + "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )", + "System.Runtime.Serialization.Json": "[4.0.0, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )", + "System.Runtime.Serialization.Xml": "[4.0.10, )", + "System.Runtime.WindowsRuntime": "[4.0.10, )", + "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0, )", + "System.ServiceModel.Duplex": "[4.0.0, )", + "System.ServiceModel.Http": "[4.0.10, )", + "System.ServiceModel.NetTcp": "[4.0.0, )", + "System.ServiceModel.Primitives": "[4.0.0, )", + "System.ServiceModel.Security": "[4.0.0, )", + "System.Text.Encoding.CodePages": "[4.0.0, )", + "System.Xml.XmlSerializer": "[4.0.10, )" + } + }, + "Microsoft.VisualBasic/10.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Dynamic.Runtime": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.ObjectModel": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/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.Collections": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/netcore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10": { + "dependencies": { + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/netcore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[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.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.0": { + "dependencies": { + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.Globalization.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Specialized.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.Collections": "[4.0.10, )", + "System.ComponentModel": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10": { + "dependencies": { + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Data.Common/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Data.Common.dll": {} + }, + "runtime": { + "lib/dotnet/System.Data.Common.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.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.0, )", + "System.Text.Encoding": "[4.0.0, )", + "System.Threading": "[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.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.ObjectModel": "[4.0.0, )", + "System.Reflection": "[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.0, )", + "System.Threading": "[4.0.0, )" + }, + "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.Globalization": "[4.0.0, )", + "System.Runtime": "[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.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.10": { + "dependencies": { + "System.Globalization": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/netcore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.0, )", + "System.Text.Encoding": "[4.0.0, )", + "System.Threading": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.0, )" + }, + "compile": { + "ref/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.IO": "[4.0.10, )", + "System.IO.Compression": "[4.0.0, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.Encoding": "[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.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Runtime.WindowsRuntime": "[4.0.0, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Overlapped": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/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.IsolatedStorage/4.0.0": { + "dependencies": { + "System.IO": "[4.0.10, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.IO.IsolatedStorage.dll": {} + }, + "runtime": { + "lib/netcore50/System.IO.IsolatedStorage.dll": {} + } + }, + "System.IO.UnmanagedMemoryStream/4.0.0": { + "dependencies": { + "System.IO": "[4.0.10, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} + } + }, + "System.Linq/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Linq.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.0, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Threading": "[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.Collections": "[4.0.10, )", + "System.Collections.Concurrent": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[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.Collections": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Net.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Runtime.WindowsRuntime": "[4.0.10, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Net.Http.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Http.dll": {} + } + }, + "System.Net.Http.Rtc/4.0.0": { + "dependencies": { + "System.Net.Http": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.Net.Http.Rtc.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Http.Rtc.dll": {} + } + }, + "System.Net.NetworkInformation/4.0.0": { + "dependencies": { + "System.Runtime": "[4.0.0, )", + "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )", + "System.Threading": "[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.Private.Networking": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.Requests/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Net.Http": "[4.0.0, )", + "System.Net.Primitives": "[4.0.10, )", + "System.Net.WebHeaderCollection": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Net.Requests.dll": {} + }, + "runtime": { + "lib/dotnet/System.Net.Requests.dll": {} + } + }, + "System.Net.Sockets/4.0.0": { + "dependencies": { + "System.Private.Networking": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebHeaderCollection/4.0.0": { + "dependencies": { + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Collections.Specialized": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Net.WebHeaderCollection.dll": {} + }, + "runtime": { + "lib/dotnet/System.Net.WebHeaderCollection.dll": {} + } + }, + "System.Numerics.Vectors/4.1.0": { + "dependencies": { + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/dotnet/System.Numerics.Vectors.dll": {} + } + }, + "System.Numerics.Vectors.WindowsRuntime/4.0.0": { + "dependencies": { + "System.Numerics.Vectors": "[4.1.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.WindowsRuntime": "[4.0.0, )" + }, + "compile": { + "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} + } + }, + "System.ObjectModel/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )", + "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.Xml.ReaderWriter": "[4.0.10, )", + "System.Xml.XmlSerializer": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "runtime": { + "lib/netcore50/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Private.Networking/4.0.0": { + "dependencies": { + "Microsoft.Win32.Primitives": "[4.0.0, )", + "System.Collections": "[4.0.10, )", + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Overlapped": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "runtime": { + "lib/netcore50/System.Private.Networking.dll": {} + } + }, + "System.Private.ServiceModel/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Collections.Concurrent": "[4.0.10, )", + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Collections.Specialized": "[4.0.0, )", + "System.ComponentModel.EventBasedAsync": "[4.0.10, )", + "System.Diagnostics.Contracts": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.Compression": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.Linq.Queryable": "[4.0.0, )", + "System.Net.Http": "[4.0.0, )", + "System.Net.Primitives": "[4.0.10, )", + "System.Net.WebHeaderCollection": "[4.0.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.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )", + "System.Runtime.Serialization.Xml": "[4.0.10, )", + "System.Runtime.WindowsRuntime": "[4.0.10, )", + "System.Security.Claims": "[4.0.0, )", + "System.Security.Principal": "[4.0.0, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )", + "System.Threading.Timer": "[4.0.0, )", + "System.Xml.ReaderWriter": "[4.0.10, )", + "System.Xml.XmlDocument": "[4.0.0, )", + "System.Xml.XmlSerializer": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "runtime": { + "lib/netcore50/System.Private.ServiceModel.dll": {} + } + }, + "System.Private.Uri/4.0.0": { + "compile": { + "ref/netcore50/_._": {} + }, + "runtime": { + "lib/netcore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10": { + "dependencies": { + "System.IO": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Context/4.0.0": { + "dependencies": { + "System.Reflection": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.Reflection.Context.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Context.dll": {} + } + }, + "System.Reflection.DispatchProxy/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.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.IO": "[4.0.0, )", + "System.Reflection": "[4.0.0, )", + "System.Reflection.Emit.ILGeneration": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0": { + "dependencies": { + "System.Reflection": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.0": { + "dependencies": { + "System.Reflection": "[4.0.0, )", + "System.Reflection.Emit.ILGeneration": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0": { + "dependencies": { + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "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, )" + }, + "compile": { + "ref/netcore50/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.0.22": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.Collections.Immutable": "[1.1.37, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Reflection": "[4.0.0, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.0, )", + "System.Text.Encoding": "[4.0.0, )", + "System.Text.Encoding.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )" + }, + "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.Diagnostics.Contracts": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "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.Globalization": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Runtime": "[4.0.20, )" + }, + "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.Reflection": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Handles": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/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.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Json/4.0.0": { + "dependencies": { + "System.Private.DataContractSerialization": "[4.0.0, )" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.0.10": { + "dependencies": { + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.0.10": { + "dependencies": { + "System.Private.DataContractSerialization": "[4.0.0, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Runtime.WindowsRuntime/4.0.10": { + "dependencies": { + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.0, )", + "System.IO": "[4.0.10, )", + "System.ObjectModel": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} + } + }, + "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { + "dependencies": { + "System.Globalization": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.WindowsRuntime": "[4.0.0, )" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + } + }, + "System.Security.Claims/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Security.Principal": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.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.ServiceModel.Duplex/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Duplex.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Duplex.dll": {} + } + }, + "System.ServiceModel.Http/4.0.10": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.ServiceModel.Http.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Http.dll": {} + } + }, + "System.ServiceModel.NetTcp/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.NetTcp.dll": {} + } + }, + "System.ServiceModel.Primitives/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Primitives.dll": {} + } + }, + "System.ServiceModel.Security/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Security.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Security.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.CodePages/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.Encoding.CodePages.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.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.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.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.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.Collections": "[4.0.0, )", + "System.Collections.Concurrent": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Diagnostics.Tracing": "[4.0.0, )", + "System.Dynamic.Runtime": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )", + "System.Threading.Tasks": "[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.Collections.Concurrent": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/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.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Xml.ReaderWriter": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Xml.ReaderWriter": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Xml.ReaderWriter": "[4.0.10, )", + "System.Xml.XmlDocument": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netcore50/System.Xml.XmlSerializer.dll": {} + } + } + }, + "UAP,Version=v10.0/win10-arm-aot": { + "Microsoft.CSharp/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Dynamic.Runtime": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.0, )", + "System.ObjectModel": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netcore50/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.NETCore/5.0.0": { + "dependencies": { + "Microsoft.CSharp": "[4.0.0, )", + "Microsoft.NETCore.Targets": "[1.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.Http": "[4.0.0, )", + "System.Net.NetworkInformation": "[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.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.Contracts": "[4.0.0, 4.0.0]", + "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", + "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", + "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", + "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", + "System.Globalization": "[4.0.10, 4.0.10]", + "System.Globalization.Calendars": "[4.0.0, 4.0.0]", + "System.IO": "[4.0.10, 4.0.10]", + "System.ObjectModel": "[4.0.10, 4.0.10]", + "System.Private.Uri": "[4.0.0, 4.0.0]", + "System.Reflection": "[4.0.10, 4.0.10]", + "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": "[4.0.20, 4.0.20]", + "System.Runtime.Extensions": "[4.0.10, 4.0.10]", + "System.Runtime.Handles": "[4.0.0, 4.0.0]", + "System.Runtime.InteropServices": "[4.0.20, 4.0.20]", + "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.Threading.Timer": "[4.0.0, 4.0.0]" + } + }, + "Microsoft.NETCore.Targets/1.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "[1.0.0, )", + "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )" + } + }, + "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, + "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { + "dependencies": { + "Microsoft.NETCore": "[5.0.0, )", + "Microsoft.NETCore.Portable.Compatibility": "[1.0.0, )", + "Microsoft.NETCore.Runtime": "[1.0.0, )", + "Microsoft.Win32.Primitives": "[4.0.0, )", + "System.ComponentModel.EventBasedAsync": "[4.0.10, )", + "System.Data.Common": "[4.0.0, )", + "System.Diagnostics.Contracts": "[4.0.0, )", + "System.Diagnostics.StackTrace": "[4.0.0, )", + "System.IO.IsolatedStorage": "[4.0.0, )", + "System.Net.Http.Rtc": "[4.0.0, )", + "System.Net.Requests": "[4.0.10, )", + "System.Net.Sockets": "[4.0.0, )", + "System.Net.WebHeaderCollection": "[4.0.0, )", + "System.Numerics.Vectors.WindowsRuntime": "[4.0.0, )", + "System.Reflection.Context": "[4.0.0, )", + "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )", + "System.Runtime.Serialization.Json": "[4.0.0, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )", + "System.Runtime.Serialization.Xml": "[4.0.10, )", + "System.Runtime.WindowsRuntime": "[4.0.10, )", + "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0, )", + "System.ServiceModel.Duplex": "[4.0.0, )", + "System.ServiceModel.Http": "[4.0.10, )", + "System.ServiceModel.NetTcp": "[4.0.0, )", + "System.ServiceModel.Primitives": "[4.0.0, )", + "System.ServiceModel.Security": "[4.0.0, )", + "System.Text.Encoding.CodePages": "[4.0.0, )", + "System.Xml.XmlSerializer": "[4.0.10, )" + } + }, + "Microsoft.VisualBasic/10.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Dynamic.Runtime": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.ObjectModel": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/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.Collections": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/netcore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10": { + "dependencies": { + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Threading": "[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.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[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.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.0": { + "dependencies": { + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.Globalization.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Specialized.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.Collections": "[4.0.10, )", + "System.ComponentModel": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10": { + "dependencies": { + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Data.Common/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Data.Common.dll": {} + }, + "runtime": { + "lib/dotnet/System.Data.Common.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.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.0, )", + "System.Text.Encoding": "[4.0.0, )", + "System.Threading": "[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.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.ObjectModel": "[4.0.0, )", + "System.Reflection": "[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.0, )", + "System.Threading": "[4.0.0, )" + }, + "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.Globalization": "[4.0.0, )", + "System.Runtime": "[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.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.10": { + "dependencies": { + "System.Globalization": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )", + "System.Threading.Tasks": "[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.Collections": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.0, )", + "System.Text.Encoding": "[4.0.0, )", + "System.Threading": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.0, )" + }, + "compile": { + "ref/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.IO": "[4.0.10, )", + "System.IO.Compression": "[4.0.0, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.Encoding": "[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.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Runtime.WindowsRuntime": "[4.0.0, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Overlapped": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/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.IsolatedStorage/4.0.0": { + "dependencies": { + "System.IO": "[4.0.10, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.IO.IsolatedStorage.dll": {} + }, + "runtime": { + "lib/netcore50/System.IO.IsolatedStorage.dll": {} + } + }, + "System.IO.UnmanagedMemoryStream/4.0.0": { + "dependencies": { + "System.IO": "[4.0.10, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} + } + }, + "System.Linq/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Linq.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.0, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Threading": "[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.Collections": "[4.0.10, )", + "System.Collections.Concurrent": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[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.Collections": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Net.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Runtime.WindowsRuntime": "[4.0.10, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Net.Http.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Http.dll": {} + } + }, + "System.Net.Http.Rtc/4.0.0": { + "dependencies": { + "System.Net.Http": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.Net.Http.Rtc.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Http.Rtc.dll": {} + } + }, + "System.Net.NetworkInformation/4.0.0": { + "dependencies": { + "System.Runtime": "[4.0.0, )", + "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )", + "System.Threading": "[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.Private.Networking": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.Requests/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Net.Http": "[4.0.0, )", + "System.Net.Primitives": "[4.0.10, )", + "System.Net.WebHeaderCollection": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Net.Requests.dll": {} + }, + "runtime": { + "lib/dotnet/System.Net.Requests.dll": {} + } + }, + "System.Net.Sockets/4.0.0": { + "dependencies": { + "System.Private.Networking": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebHeaderCollection/4.0.0": { + "dependencies": { + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Collections.Specialized": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Net.WebHeaderCollection.dll": {} + }, + "runtime": { + "lib/dotnet/System.Net.WebHeaderCollection.dll": {} + } + }, + "System.Numerics.Vectors/4.1.0": { + "dependencies": { + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/dotnet/System.Numerics.Vectors.dll": {} + } + }, + "System.Numerics.Vectors.WindowsRuntime/4.0.0": { + "dependencies": { + "System.Numerics.Vectors": "[4.1.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.WindowsRuntime": "[4.0.0, )" + }, + "compile": { + "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} + } + }, + "System.ObjectModel/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )", + "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.Xml.ReaderWriter": "[4.0.10, )", + "System.Xml.XmlSerializer": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "runtime": { + "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Private.Networking/4.0.0": { + "dependencies": { + "Microsoft.Win32.Primitives": "[4.0.0, )", + "System.Collections": "[4.0.10, )", + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Overlapped": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "runtime": { + "lib/netcore50/System.Private.Networking.dll": {} + } + }, + "System.Private.ServiceModel/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Collections.Concurrent": "[4.0.10, )", + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Collections.Specialized": "[4.0.0, )", + "System.ComponentModel.EventBasedAsync": "[4.0.10, )", + "System.Diagnostics.Contracts": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.Compression": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.Linq.Queryable": "[4.0.0, )", + "System.Net.Http": "[4.0.0, )", + "System.Net.Primitives": "[4.0.10, )", + "System.Net.WebHeaderCollection": "[4.0.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.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )", + "System.Runtime.Serialization.Xml": "[4.0.10, )", + "System.Runtime.WindowsRuntime": "[4.0.10, )", + "System.Security.Claims": "[4.0.0, )", + "System.Security.Principal": "[4.0.0, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )", + "System.Threading.Timer": "[4.0.0, )", + "System.Xml.ReaderWriter": "[4.0.10, )", + "System.Xml.XmlDocument": "[4.0.0, )", + "System.Xml.XmlSerializer": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "runtime": { + "lib/netcore50/System.Private.ServiceModel.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.IO": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Context/4.0.0": { + "dependencies": { + "System.Reflection": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.Reflection.Context.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Context.dll": {} + } + }, + "System.Reflection.DispatchProxy/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Reflection.DispatchProxy.dll": {} + }, + "runtime": { + "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} + } + }, + "System.Reflection.Emit/4.0.0": { + "dependencies": { + "System.IO": "[4.0.0, )", + "System.Reflection": "[4.0.0, )", + "System.Reflection.Emit.ILGeneration": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0": { + "dependencies": { + "System.Reflection": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0": { + "dependencies": { + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "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, )" + }, + "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.Collections": "[4.0.0, )", + "System.Collections.Immutable": "[1.1.37, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Reflection": "[4.0.0, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.0, )", + "System.Text.Encoding": "[4.0.0, )", + "System.Text.Encoding.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )" + }, + "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.Diagnostics.Contracts": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "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.Globalization": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Runtime": "[4.0.20, )" + }, + "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.Reflection": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Handles": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "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.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Json/4.0.0": { + "dependencies": { + "System.Private.DataContractSerialization": "[4.0.0, )" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} + }, + "runtime": { + "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.0.10": { + "dependencies": { + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.0.10": { + "dependencies": { + "System.Private.DataContractSerialization": "[4.0.0, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Runtime.WindowsRuntime/4.0.10": { + "dependencies": { + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.0, )", + "System.IO": "[4.0.10, )", + "System.ObjectModel": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} + }, + "runtime": { + "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} + } + }, + "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { + "dependencies": { + "System.Globalization": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.WindowsRuntime": "[4.0.0, )" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + } + }, + "System.Security.Claims/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Security.Principal": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.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.ServiceModel.Duplex/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Duplex.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Duplex.dll": {} + } + }, + "System.ServiceModel.Http/4.0.10": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.ServiceModel.Http.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Http.dll": {} + } + }, + "System.ServiceModel.NetTcp/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.NetTcp.dll": {} + } + }, + "System.ServiceModel.Primitives/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Primitives.dll": {} + } + }, + "System.ServiceModel.Security/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Security.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Security.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.CodePages/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.Encoding.CodePages.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.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.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.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.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.Collections": "[4.0.0, )", + "System.Collections.Concurrent": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Diagnostics.Tracing": "[4.0.0, )", + "System.Dynamic.Runtime": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )", + "System.Threading.Tasks": "[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.Collections.Concurrent": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/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.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Xml.ReaderWriter": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Xml.ReaderWriter": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Xml.ReaderWriter": "[4.0.10, )", + "System.Xml.XmlDocument": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} + } + } + }, + "UAP,Version=v10.0/win10-x64": { + "Microsoft.CSharp/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Dynamic.Runtime": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.0, )", + "System.ObjectModel": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netcore50/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.NETCore/5.0.0": { + "dependencies": { + "Microsoft.CSharp": "[4.0.0, )", + "Microsoft.NETCore.Targets": "[1.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.Http": "[4.0.0, )", + "System.Net.NetworkInformation": "[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.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.Contracts": "[4.0.0, 4.0.0]", + "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", + "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", + "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", + "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", + "System.Globalization": "[4.0.10, 4.0.10]", + "System.Globalization.Calendars": "[4.0.0, 4.0.0]", + "System.IO": "[4.0.10, 4.0.10]", + "System.ObjectModel": "[4.0.10, 4.0.10]", + "System.Private.Uri": "[4.0.0, 4.0.0]", + "System.Reflection": "[4.0.10, 4.0.10]", + "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": "[4.0.20, 4.0.20]", + "System.Runtime.Extensions": "[4.0.10, 4.0.10]", + "System.Runtime.Handles": "[4.0.0, 4.0.0]", + "System.Runtime.InteropServices": "[4.0.20, 4.0.20]", + "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.Threading.Timer": "[4.0.0, 4.0.0]" + }, + "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.Platforms": "[1.0.0, )", + "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )" + } + }, + "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, + "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { + "dependencies": { + "Microsoft.NETCore": "[5.0.0, )", + "Microsoft.NETCore.Portable.Compatibility": "[1.0.0, )", + "Microsoft.NETCore.Runtime": "[1.0.0, )", + "Microsoft.Win32.Primitives": "[4.0.0, )", + "System.ComponentModel.EventBasedAsync": "[4.0.10, )", + "System.Data.Common": "[4.0.0, )", + "System.Diagnostics.Contracts": "[4.0.0, )", + "System.Diagnostics.StackTrace": "[4.0.0, )", + "System.IO.IsolatedStorage": "[4.0.0, )", + "System.Net.Http.Rtc": "[4.0.0, )", + "System.Net.Requests": "[4.0.10, )", + "System.Net.Sockets": "[4.0.0, )", + "System.Net.WebHeaderCollection": "[4.0.0, )", + "System.Numerics.Vectors.WindowsRuntime": "[4.0.0, )", + "System.Reflection.Context": "[4.0.0, )", + "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )", + "System.Runtime.Serialization.Json": "[4.0.0, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )", + "System.Runtime.Serialization.Xml": "[4.0.10, )", + "System.Runtime.WindowsRuntime": "[4.0.10, )", + "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0, )", + "System.ServiceModel.Duplex": "[4.0.0, )", + "System.ServiceModel.Http": "[4.0.10, )", + "System.ServiceModel.NetTcp": "[4.0.0, )", + "System.ServiceModel.Primitives": "[4.0.0, )", + "System.ServiceModel.Security": "[4.0.0, )", + "System.Text.Encoding.CodePages": "[4.0.0, )", + "System.Xml.XmlSerializer": "[4.0.10, )" + } + }, + "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0": { + "native": { + "runtimes/win10-x64/native/_._": {} + } + }, + "Microsoft.VisualBasic/10.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Dynamic.Runtime": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.ObjectModel": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/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.Collections": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/netcore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10": { + "dependencies": { + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/netcore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[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.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.0": { + "dependencies": { + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.Globalization.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Specialized.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.Collections": "[4.0.10, )", + "System.ComponentModel": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10": { + "dependencies": { + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Data.Common/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Data.Common.dll": {} + }, + "runtime": { + "lib/dotnet/System.Data.Common.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.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.0, )", + "System.Text.Encoding": "[4.0.0, )", + "System.Threading": "[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.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.ObjectModel": "[4.0.0, )", + "System.Reflection": "[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.0, )", + "System.Threading": "[4.0.0, )" + }, + "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.Globalization": "[4.0.0, )", + "System.Runtime": "[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.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.10": { + "dependencies": { + "System.Globalization": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/netcore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.0, )", + "System.Text.Encoding": "[4.0.0, )", + "System.Threading": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.0, )" + }, + "compile": { + "ref/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.IO": "[4.0.10, )", + "System.IO.Compression": "[4.0.0, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.Encoding": "[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.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Runtime.WindowsRuntime": "[4.0.0, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Overlapped": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/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.IsolatedStorage/4.0.0": { + "dependencies": { + "System.IO": "[4.0.10, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.IO.IsolatedStorage.dll": {} + }, + "runtime": { + "lib/netcore50/System.IO.IsolatedStorage.dll": {} + } + }, + "System.IO.UnmanagedMemoryStream/4.0.0": { + "dependencies": { + "System.IO": "[4.0.10, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} + } + }, + "System.Linq/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Linq.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.0, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Threading": "[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.Collections": "[4.0.10, )", + "System.Collections.Concurrent": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[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.Collections": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Net.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Runtime.WindowsRuntime": "[4.0.10, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Net.Http.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Http.dll": {} + } + }, + "System.Net.Http.Rtc/4.0.0": { + "dependencies": { + "System.Net.Http": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.Net.Http.Rtc.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Http.Rtc.dll": {} + } + }, + "System.Net.NetworkInformation/4.0.0": { + "dependencies": { + "System.Runtime": "[4.0.0, )", + "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )", + "System.Threading": "[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.Private.Networking": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.Requests/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Net.Http": "[4.0.0, )", + "System.Net.Primitives": "[4.0.10, )", + "System.Net.WebHeaderCollection": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Net.Requests.dll": {} + }, + "runtime": { + "lib/dotnet/System.Net.Requests.dll": {} + } + }, + "System.Net.Sockets/4.0.0": { + "dependencies": { + "System.Private.Networking": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebHeaderCollection/4.0.0": { + "dependencies": { + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Collections.Specialized": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Net.WebHeaderCollection.dll": {} + }, + "runtime": { + "lib/dotnet/System.Net.WebHeaderCollection.dll": {} + } + }, + "System.Numerics.Vectors/4.1.0": { + "dependencies": { + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/dotnet/System.Numerics.Vectors.dll": {} + } + }, + "System.Numerics.Vectors.WindowsRuntime/4.0.0": { + "dependencies": { + "System.Numerics.Vectors": "[4.1.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.WindowsRuntime": "[4.0.0, )" + }, + "compile": { + "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} + } + }, + "System.ObjectModel/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )", + "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.Xml.ReaderWriter": "[4.0.10, )", + "System.Xml.XmlSerializer": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "runtime": { + "lib/netcore50/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Private.Networking/4.0.0": { + "dependencies": { + "Microsoft.Win32.Primitives": "[4.0.0, )", + "System.Collections": "[4.0.10, )", + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Overlapped": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "runtime": { + "lib/netcore50/System.Private.Networking.dll": {} + } + }, + "System.Private.ServiceModel/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Collections.Concurrent": "[4.0.10, )", + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Collections.Specialized": "[4.0.0, )", + "System.ComponentModel.EventBasedAsync": "[4.0.10, )", + "System.Diagnostics.Contracts": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.Compression": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.Linq.Queryable": "[4.0.0, )", + "System.Net.Http": "[4.0.0, )", + "System.Net.Primitives": "[4.0.10, )", + "System.Net.WebHeaderCollection": "[4.0.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.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )", + "System.Runtime.Serialization.Xml": "[4.0.10, )", + "System.Runtime.WindowsRuntime": "[4.0.10, )", + "System.Security.Claims": "[4.0.0, )", + "System.Security.Principal": "[4.0.0, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )", + "System.Threading.Timer": "[4.0.0, )", + "System.Xml.ReaderWriter": "[4.0.10, )", + "System.Xml.XmlDocument": "[4.0.0, )", + "System.Xml.XmlSerializer": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "runtime": { + "lib/netcore50/System.Private.ServiceModel.dll": {} + } + }, + "System.Private.Uri/4.0.0": { + "compile": { + "ref/netcore50/_._": {} + }, + "runtime": { + "lib/netcore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10": { + "dependencies": { + "System.IO": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Context/4.0.0": { + "dependencies": { + "System.Reflection": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.Reflection.Context.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Context.dll": {} + } + }, + "System.Reflection.DispatchProxy/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.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.IO": "[4.0.0, )", + "System.Reflection": "[4.0.0, )", + "System.Reflection.Emit.ILGeneration": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0": { + "dependencies": { + "System.Reflection": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.0": { + "dependencies": { + "System.Reflection": "[4.0.0, )", + "System.Reflection.Emit.ILGeneration": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0": { + "dependencies": { + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "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, )" + }, + "compile": { + "ref/netcore50/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.0.22": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.Collections.Immutable": "[1.1.37, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Reflection": "[4.0.0, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.0, )", + "System.Text.Encoding": "[4.0.0, )", + "System.Text.Encoding.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )" + }, + "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.Diagnostics.Contracts": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "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.Globalization": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Runtime": "[4.0.20, )" + }, + "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.Reflection": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Handles": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/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.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Json/4.0.0": { + "dependencies": { + "System.Private.DataContractSerialization": "[4.0.0, )" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.0.10": { + "dependencies": { + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.0.10": { + "dependencies": { + "System.Private.DataContractSerialization": "[4.0.0, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Runtime.WindowsRuntime/4.0.10": { + "dependencies": { + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.0, )", + "System.IO": "[4.0.10, )", + "System.ObjectModel": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} + } + }, + "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { + "dependencies": { + "System.Globalization": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.WindowsRuntime": "[4.0.0, )" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + } + }, + "System.Security.Claims/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Security.Principal": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.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.ServiceModel.Duplex/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Duplex.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Duplex.dll": {} + } + }, + "System.ServiceModel.Http/4.0.10": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.ServiceModel.Http.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Http.dll": {} + } + }, + "System.ServiceModel.NetTcp/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.NetTcp.dll": {} + } + }, + "System.ServiceModel.Primitives/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Primitives.dll": {} + } + }, + "System.ServiceModel.Security/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Security.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Security.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.CodePages/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.Encoding.CodePages.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.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.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.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.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.Collections": "[4.0.0, )", + "System.Collections.Concurrent": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Diagnostics.Tracing": "[4.0.0, )", + "System.Dynamic.Runtime": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )", + "System.Threading.Tasks": "[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.Collections.Concurrent": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/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.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Xml.ReaderWriter": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Xml.ReaderWriter": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Xml.ReaderWriter": "[4.0.10, )", + "System.Xml.XmlDocument": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netcore50/System.Xml.XmlSerializer.dll": {} + } + } + }, + "UAP,Version=v10.0/win10-x64-aot": { + "Microsoft.CSharp/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Dynamic.Runtime": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.0, )", + "System.ObjectModel": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netcore50/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.NETCore/5.0.0": { + "dependencies": { + "Microsoft.CSharp": "[4.0.0, )", + "Microsoft.NETCore.Targets": "[1.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.Http": "[4.0.0, )", + "System.Net.NetworkInformation": "[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.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.Contracts": "[4.0.0, 4.0.0]", + "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", + "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", + "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", + "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", + "System.Globalization": "[4.0.10, 4.0.10]", + "System.Globalization.Calendars": "[4.0.0, 4.0.0]", + "System.IO": "[4.0.10, 4.0.10]", + "System.ObjectModel": "[4.0.10, 4.0.10]", + "System.Private.Uri": "[4.0.0, 4.0.0]", + "System.Reflection": "[4.0.10, 4.0.10]", + "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": "[4.0.20, 4.0.20]", + "System.Runtime.Extensions": "[4.0.10, 4.0.10]", + "System.Runtime.Handles": "[4.0.0, 4.0.0]", + "System.Runtime.InteropServices": "[4.0.20, 4.0.20]", + "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.Threading.Timer": "[4.0.0, 4.0.0]" + } + }, + "Microsoft.NETCore.Targets/1.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "[1.0.0, )", + "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )" + } + }, + "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, + "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { + "dependencies": { + "Microsoft.NETCore": "[5.0.0, )", + "Microsoft.NETCore.Portable.Compatibility": "[1.0.0, )", + "Microsoft.NETCore.Runtime": "[1.0.0, )", + "Microsoft.Win32.Primitives": "[4.0.0, )", + "System.ComponentModel.EventBasedAsync": "[4.0.10, )", + "System.Data.Common": "[4.0.0, )", + "System.Diagnostics.Contracts": "[4.0.0, )", + "System.Diagnostics.StackTrace": "[4.0.0, )", + "System.IO.IsolatedStorage": "[4.0.0, )", + "System.Net.Http.Rtc": "[4.0.0, )", + "System.Net.Requests": "[4.0.10, )", + "System.Net.Sockets": "[4.0.0, )", + "System.Net.WebHeaderCollection": "[4.0.0, )", + "System.Numerics.Vectors.WindowsRuntime": "[4.0.0, )", + "System.Reflection.Context": "[4.0.0, )", + "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )", + "System.Runtime.Serialization.Json": "[4.0.0, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )", + "System.Runtime.Serialization.Xml": "[4.0.10, )", + "System.Runtime.WindowsRuntime": "[4.0.10, )", + "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0, )", + "System.ServiceModel.Duplex": "[4.0.0, )", + "System.ServiceModel.Http": "[4.0.10, )", + "System.ServiceModel.NetTcp": "[4.0.0, )", + "System.ServiceModel.Primitives": "[4.0.0, )", + "System.ServiceModel.Security": "[4.0.0, )", + "System.Text.Encoding.CodePages": "[4.0.0, )", + "System.Xml.XmlSerializer": "[4.0.10, )" + } + }, + "Microsoft.VisualBasic/10.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Dynamic.Runtime": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.ObjectModel": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/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.Collections": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/netcore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10": { + "dependencies": { + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Threading": "[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.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[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.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.0": { + "dependencies": { + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.Globalization.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Specialized.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.Collections": "[4.0.10, )", + "System.ComponentModel": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10": { + "dependencies": { + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Data.Common/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Data.Common.dll": {} + }, + "runtime": { + "lib/dotnet/System.Data.Common.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.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.0, )", + "System.Text.Encoding": "[4.0.0, )", + "System.Threading": "[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.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.ObjectModel": "[4.0.0, )", + "System.Reflection": "[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.0, )", + "System.Threading": "[4.0.0, )" + }, + "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.Globalization": "[4.0.0, )", + "System.Runtime": "[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.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.10": { + "dependencies": { + "System.Globalization": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )", + "System.Threading.Tasks": "[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.Collections": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.0, )", + "System.Text.Encoding": "[4.0.0, )", + "System.Threading": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.0, )" + }, + "compile": { + "ref/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.IO": "[4.0.10, )", + "System.IO.Compression": "[4.0.0, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.Encoding": "[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.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Runtime.WindowsRuntime": "[4.0.0, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Overlapped": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/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.IsolatedStorage/4.0.0": { + "dependencies": { + "System.IO": "[4.0.10, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.IO.IsolatedStorage.dll": {} + }, + "runtime": { + "lib/netcore50/System.IO.IsolatedStorage.dll": {} + } + }, + "System.IO.UnmanagedMemoryStream/4.0.0": { + "dependencies": { + "System.IO": "[4.0.10, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} + } + }, + "System.Linq/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Linq.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.0, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Threading": "[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.Collections": "[4.0.10, )", + "System.Collections.Concurrent": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[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.Collections": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Net.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Runtime.WindowsRuntime": "[4.0.10, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Net.Http.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Http.dll": {} + } + }, + "System.Net.Http.Rtc/4.0.0": { + "dependencies": { + "System.Net.Http": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.Net.Http.Rtc.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Http.Rtc.dll": {} + } + }, + "System.Net.NetworkInformation/4.0.0": { + "dependencies": { + "System.Runtime": "[4.0.0, )", + "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )", + "System.Threading": "[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.Private.Networking": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.Requests/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Net.Http": "[4.0.0, )", + "System.Net.Primitives": "[4.0.10, )", + "System.Net.WebHeaderCollection": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Net.Requests.dll": {} + }, + "runtime": { + "lib/dotnet/System.Net.Requests.dll": {} + } + }, + "System.Net.Sockets/4.0.0": { + "dependencies": { + "System.Private.Networking": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebHeaderCollection/4.0.0": { + "dependencies": { + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Collections.Specialized": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Net.WebHeaderCollection.dll": {} + }, + "runtime": { + "lib/dotnet/System.Net.WebHeaderCollection.dll": {} + } + }, + "System.Numerics.Vectors/4.1.0": { + "dependencies": { + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/dotnet/System.Numerics.Vectors.dll": {} + } + }, + "System.Numerics.Vectors.WindowsRuntime/4.0.0": { + "dependencies": { + "System.Numerics.Vectors": "[4.1.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.WindowsRuntime": "[4.0.0, )" + }, + "compile": { + "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} + } + }, + "System.ObjectModel/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )", + "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.Xml.ReaderWriter": "[4.0.10, )", + "System.Xml.XmlSerializer": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "runtime": { + "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Private.Networking/4.0.0": { + "dependencies": { + "Microsoft.Win32.Primitives": "[4.0.0, )", + "System.Collections": "[4.0.10, )", + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Overlapped": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "runtime": { + "lib/netcore50/System.Private.Networking.dll": {} + } + }, + "System.Private.ServiceModel/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Collections.Concurrent": "[4.0.10, )", + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Collections.Specialized": "[4.0.0, )", + "System.ComponentModel.EventBasedAsync": "[4.0.10, )", + "System.Diagnostics.Contracts": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.Compression": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.Linq.Queryable": "[4.0.0, )", + "System.Net.Http": "[4.0.0, )", + "System.Net.Primitives": "[4.0.10, )", + "System.Net.WebHeaderCollection": "[4.0.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.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )", + "System.Runtime.Serialization.Xml": "[4.0.10, )", + "System.Runtime.WindowsRuntime": "[4.0.10, )", + "System.Security.Claims": "[4.0.0, )", + "System.Security.Principal": "[4.0.0, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )", + "System.Threading.Timer": "[4.0.0, )", + "System.Xml.ReaderWriter": "[4.0.10, )", + "System.Xml.XmlDocument": "[4.0.0, )", + "System.Xml.XmlSerializer": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "runtime": { + "lib/netcore50/System.Private.ServiceModel.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.IO": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Context/4.0.0": { + "dependencies": { + "System.Reflection": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.Reflection.Context.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Context.dll": {} + } + }, + "System.Reflection.DispatchProxy/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Reflection.DispatchProxy.dll": {} + }, + "runtime": { + "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} + } + }, + "System.Reflection.Emit/4.0.0": { + "dependencies": { + "System.IO": "[4.0.0, )", + "System.Reflection": "[4.0.0, )", + "System.Reflection.Emit.ILGeneration": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0": { + "dependencies": { + "System.Reflection": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0": { + "dependencies": { + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "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, )" + }, + "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.Collections": "[4.0.0, )", + "System.Collections.Immutable": "[1.1.37, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Reflection": "[4.0.0, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.0, )", + "System.Text.Encoding": "[4.0.0, )", + "System.Text.Encoding.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )" + }, + "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.Diagnostics.Contracts": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "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.Globalization": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Runtime": "[4.0.20, )" + }, + "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.Reflection": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Handles": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "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.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Json/4.0.0": { + "dependencies": { + "System.Private.DataContractSerialization": "[4.0.0, )" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} + }, + "runtime": { + "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.0.10": { + "dependencies": { + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.0.10": { + "dependencies": { + "System.Private.DataContractSerialization": "[4.0.0, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Runtime.WindowsRuntime/4.0.10": { + "dependencies": { + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.0, )", + "System.IO": "[4.0.10, )", + "System.ObjectModel": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} + }, + "runtime": { + "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} + } + }, + "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { + "dependencies": { + "System.Globalization": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.WindowsRuntime": "[4.0.0, )" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + } + }, + "System.Security.Claims/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Security.Principal": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.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.ServiceModel.Duplex/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Duplex.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Duplex.dll": {} + } + }, + "System.ServiceModel.Http/4.0.10": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.ServiceModel.Http.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Http.dll": {} + } + }, + "System.ServiceModel.NetTcp/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.NetTcp.dll": {} + } + }, + "System.ServiceModel.Primitives/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Primitives.dll": {} + } + }, + "System.ServiceModel.Security/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Security.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Security.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.CodePages/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.Encoding.CodePages.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.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.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.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.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.Collections": "[4.0.0, )", + "System.Collections.Concurrent": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Diagnostics.Tracing": "[4.0.0, )", + "System.Dynamic.Runtime": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )", + "System.Threading.Tasks": "[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.Collections.Concurrent": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/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.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Xml.ReaderWriter": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Xml.ReaderWriter": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Xml.ReaderWriter": "[4.0.10, )", + "System.Xml.XmlDocument": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} + } + } + }, + "UAP,Version=v10.0/win10-x86": { + "Microsoft.CSharp/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Dynamic.Runtime": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.0, )", + "System.ObjectModel": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netcore50/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.NETCore/5.0.0": { + "dependencies": { + "Microsoft.CSharp": "[4.0.0, )", + "Microsoft.NETCore.Targets": "[1.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.Http": "[4.0.0, )", + "System.Net.NetworkInformation": "[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.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.Contracts": "[4.0.0, 4.0.0]", + "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", + "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", + "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", + "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", + "System.Globalization": "[4.0.10, 4.0.10]", + "System.Globalization.Calendars": "[4.0.0, 4.0.0]", + "System.IO": "[4.0.10, 4.0.10]", + "System.ObjectModel": "[4.0.10, 4.0.10]", + "System.Private.Uri": "[4.0.0, 4.0.0]", + "System.Reflection": "[4.0.10, 4.0.10]", + "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": "[4.0.20, 4.0.20]", + "System.Runtime.Extensions": "[4.0.10, 4.0.10]", + "System.Runtime.Handles": "[4.0.0, 4.0.0]", + "System.Runtime.InteropServices": "[4.0.20, 4.0.20]", + "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.Threading.Timer": "[4.0.0, 4.0.0]" + }, + "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.Platforms": "[1.0.0, )", + "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )" + } + }, + "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, + "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { + "dependencies": { + "Microsoft.NETCore": "[5.0.0, )", + "Microsoft.NETCore.Portable.Compatibility": "[1.0.0, )", + "Microsoft.NETCore.Runtime": "[1.0.0, )", + "Microsoft.Win32.Primitives": "[4.0.0, )", + "System.ComponentModel.EventBasedAsync": "[4.0.10, )", + "System.Data.Common": "[4.0.0, )", + "System.Diagnostics.Contracts": "[4.0.0, )", + "System.Diagnostics.StackTrace": "[4.0.0, )", + "System.IO.IsolatedStorage": "[4.0.0, )", + "System.Net.Http.Rtc": "[4.0.0, )", + "System.Net.Requests": "[4.0.10, )", + "System.Net.Sockets": "[4.0.0, )", + "System.Net.WebHeaderCollection": "[4.0.0, )", + "System.Numerics.Vectors.WindowsRuntime": "[4.0.0, )", + "System.Reflection.Context": "[4.0.0, )", + "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )", + "System.Runtime.Serialization.Json": "[4.0.0, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )", + "System.Runtime.Serialization.Xml": "[4.0.10, )", + "System.Runtime.WindowsRuntime": "[4.0.10, )", + "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0, )", + "System.ServiceModel.Duplex": "[4.0.0, )", + "System.ServiceModel.Http": "[4.0.10, )", + "System.ServiceModel.NetTcp": "[4.0.0, )", + "System.ServiceModel.Primitives": "[4.0.0, )", + "System.ServiceModel.Security": "[4.0.0, )", + "System.Text.Encoding.CodePages": "[4.0.0, )", + "System.Xml.XmlSerializer": "[4.0.10, )" + } + }, + "Microsoft.NETCore.Windows.ApiSets-x86/1.0.0": { + "native": { + "runtimes/win10-x86/native/_._": {} + } + }, + "Microsoft.VisualBasic/10.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Dynamic.Runtime": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.ObjectModel": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/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.Collections": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/netcore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10": { + "dependencies": { + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Collections.dll": {} + }, + "runtime": { + "lib/netcore50/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[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.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.0": { + "dependencies": { + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.Globalization.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Specialized.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.Collections": "[4.0.10, )", + "System.ComponentModel": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10": { + "dependencies": { + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Data.Common/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Data.Common.dll": {} + }, + "runtime": { + "lib/dotnet/System.Data.Common.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.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.0, )", + "System.Text.Encoding": "[4.0.0, )", + "System.Threading": "[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.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.ObjectModel": "[4.0.0, )", + "System.Reflection": "[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.0, )", + "System.Threading": "[4.0.0, )" + }, + "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.Globalization": "[4.0.0, )", + "System.Runtime": "[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.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.10": { + "dependencies": { + "System.Globalization": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.IO.dll": {} + }, + "runtime": { + "lib/netcore50/System.IO.dll": {} + } + }, + "System.IO.Compression/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.0, )", + "System.Text.Encoding": "[4.0.0, )", + "System.Threading": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.0, )" + }, + "compile": { + "ref/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.IO": "[4.0.10, )", + "System.IO.Compression": "[4.0.0, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.Encoding": "[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.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Runtime.WindowsRuntime": "[4.0.0, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Overlapped": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/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.IsolatedStorage/4.0.0": { + "dependencies": { + "System.IO": "[4.0.10, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.IO.IsolatedStorage.dll": {} + }, + "runtime": { + "lib/netcore50/System.IO.IsolatedStorage.dll": {} + } + }, + "System.IO.UnmanagedMemoryStream/4.0.0": { + "dependencies": { + "System.IO": "[4.0.10, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} + } + }, + "System.Linq/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Linq.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.0, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Threading": "[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.Collections": "[4.0.10, )", + "System.Collections.Concurrent": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[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.Collections": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Net.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Runtime.WindowsRuntime": "[4.0.10, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Net.Http.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Http.dll": {} + } + }, + "System.Net.Http.Rtc/4.0.0": { + "dependencies": { + "System.Net.Http": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.Net.Http.Rtc.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Http.Rtc.dll": {} + } + }, + "System.Net.NetworkInformation/4.0.0": { + "dependencies": { + "System.Runtime": "[4.0.0, )", + "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )", + "System.Threading": "[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.Private.Networking": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.Requests/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Net.Http": "[4.0.0, )", + "System.Net.Primitives": "[4.0.10, )", + "System.Net.WebHeaderCollection": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Net.Requests.dll": {} + }, + "runtime": { + "lib/dotnet/System.Net.Requests.dll": {} + } + }, + "System.Net.Sockets/4.0.0": { + "dependencies": { + "System.Private.Networking": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebHeaderCollection/4.0.0": { + "dependencies": { + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Collections.Specialized": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Net.WebHeaderCollection.dll": {} + }, + "runtime": { + "lib/dotnet/System.Net.WebHeaderCollection.dll": {} + } + }, + "System.Numerics.Vectors/4.1.0": { + "dependencies": { + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/dotnet/System.Numerics.Vectors.dll": {} + } + }, + "System.Numerics.Vectors.WindowsRuntime/4.0.0": { + "dependencies": { + "System.Numerics.Vectors": "[4.1.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.WindowsRuntime": "[4.0.0, )" + }, + "compile": { + "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} + } + }, + "System.ObjectModel/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )", + "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.Xml.ReaderWriter": "[4.0.10, )", + "System.Xml.XmlSerializer": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "runtime": { + "lib/netcore50/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Private.Networking/4.0.0": { + "dependencies": { + "Microsoft.Win32.Primitives": "[4.0.0, )", + "System.Collections": "[4.0.10, )", + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Overlapped": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "runtime": { + "lib/netcore50/System.Private.Networking.dll": {} + } + }, + "System.Private.ServiceModel/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Collections.Concurrent": "[4.0.10, )", + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Collections.Specialized": "[4.0.0, )", + "System.ComponentModel.EventBasedAsync": "[4.0.10, )", + "System.Diagnostics.Contracts": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.Compression": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.Linq.Queryable": "[4.0.0, )", + "System.Net.Http": "[4.0.0, )", + "System.Net.Primitives": "[4.0.10, )", + "System.Net.WebHeaderCollection": "[4.0.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.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )", + "System.Runtime.Serialization.Xml": "[4.0.10, )", + "System.Runtime.WindowsRuntime": "[4.0.10, )", + "System.Security.Claims": "[4.0.0, )", + "System.Security.Principal": "[4.0.0, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )", + "System.Threading.Timer": "[4.0.0, )", + "System.Xml.ReaderWriter": "[4.0.10, )", + "System.Xml.XmlDocument": "[4.0.0, )", + "System.Xml.XmlSerializer": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "runtime": { + "lib/netcore50/System.Private.ServiceModel.dll": {} + } + }, + "System.Private.Uri/4.0.0": { + "compile": { + "ref/netcore50/_._": {} + }, + "runtime": { + "lib/netcore50/System.Private.Uri.dll": {} + } + }, + "System.Reflection/4.0.10": { + "dependencies": { + "System.IO": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Context/4.0.0": { + "dependencies": { + "System.Reflection": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.Reflection.Context.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Context.dll": {} + } + }, + "System.Reflection.DispatchProxy/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.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.IO": "[4.0.0, )", + "System.Reflection": "[4.0.0, )", + "System.Reflection.Emit.ILGeneration": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0": { + "dependencies": { + "System.Reflection": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.0": { + "dependencies": { + "System.Reflection": "[4.0.0, )", + "System.Reflection.Emit.ILGeneration": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.Lightweight.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0": { + "dependencies": { + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "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, )" + }, + "compile": { + "ref/netcore50/System.Reflection.Extensions.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/1.0.22": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.Collections.Immutable": "[1.1.37, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Reflection": "[4.0.0, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.0, )", + "System.Text.Encoding": "[4.0.0, )", + "System.Text.Encoding.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )" + }, + "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.Diagnostics.Contracts": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "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.Globalization": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Runtime": "[4.0.20, )" + }, + "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.Reflection": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Handles": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "lib/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.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Json/4.0.0": { + "dependencies": { + "System.Private.DataContractSerialization": "[4.0.0, )" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.0.10": { + "dependencies": { + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.0.10": { + "dependencies": { + "System.Private.DataContractSerialization": "[4.0.0, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Runtime.WindowsRuntime/4.0.10": { + "dependencies": { + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.0, )", + "System.IO": "[4.0.10, )", + "System.ObjectModel": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.WindowsRuntime.dll": {} + } + }, + "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { + "dependencies": { + "System.Globalization": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.WindowsRuntime": "[4.0.0, )" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + } + }, + "System.Security.Claims/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Security.Principal": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.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.ServiceModel.Duplex/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Duplex.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Duplex.dll": {} + } + }, + "System.ServiceModel.Http/4.0.10": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.ServiceModel.Http.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Http.dll": {} + } + }, + "System.ServiceModel.NetTcp/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.NetTcp.dll": {} + } + }, + "System.ServiceModel.Primitives/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Primitives.dll": {} + } + }, + "System.ServiceModel.Security/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Security.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Security.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.CodePages/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.Encoding.CodePages.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.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.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.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.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.Collections": "[4.0.0, )", + "System.Collections.Concurrent": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Diagnostics.Tracing": "[4.0.0, )", + "System.Dynamic.Runtime": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )", + "System.Threading.Tasks": "[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.Collections.Concurrent": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/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.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Xml.ReaderWriter": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Xml.ReaderWriter": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Xml.ReaderWriter": "[4.0.10, )", + "System.Xml.XmlDocument": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "lib/netcore50/System.Xml.XmlSerializer.dll": {} + } + } + }, + "UAP,Version=v10.0/win10-x86-aot": { + "Microsoft.CSharp/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Dynamic.Runtime": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.0, )", + "System.ObjectModel": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netcore50/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.NETCore/5.0.0": { + "dependencies": { + "Microsoft.CSharp": "[4.0.0, )", + "Microsoft.NETCore.Targets": "[1.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.Http": "[4.0.0, )", + "System.Net.NetworkInformation": "[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.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.Contracts": "[4.0.0, 4.0.0]", + "System.Diagnostics.Debug": "[4.0.10, 4.0.10]", + "System.Diagnostics.StackTrace": "[4.0.0, 4.0.0]", + "System.Diagnostics.Tools": "[4.0.0, 4.0.0]", + "System.Diagnostics.Tracing": "[4.0.20, 4.0.20]", + "System.Globalization": "[4.0.10, 4.0.10]", + "System.Globalization.Calendars": "[4.0.0, 4.0.0]", + "System.IO": "[4.0.10, 4.0.10]", + "System.ObjectModel": "[4.0.10, 4.0.10]", + "System.Private.Uri": "[4.0.0, 4.0.0]", + "System.Reflection": "[4.0.10, 4.0.10]", + "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": "[4.0.20, 4.0.20]", + "System.Runtime.Extensions": "[4.0.10, 4.0.10]", + "System.Runtime.Handles": "[4.0.0, 4.0.0]", + "System.Runtime.InteropServices": "[4.0.20, 4.0.20]", + "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.Threading.Timer": "[4.0.0, 4.0.0]" + } + }, + "Microsoft.NETCore.Targets/1.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "[1.0.0, )", + "Microsoft.NETCore.Targets.UniversalWindowsPlatform": "[5.0.0, )" + } + }, + "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": {}, + "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { + "dependencies": { + "Microsoft.NETCore": "[5.0.0, )", + "Microsoft.NETCore.Portable.Compatibility": "[1.0.0, )", + "Microsoft.NETCore.Runtime": "[1.0.0, )", + "Microsoft.Win32.Primitives": "[4.0.0, )", + "System.ComponentModel.EventBasedAsync": "[4.0.10, )", + "System.Data.Common": "[4.0.0, )", + "System.Diagnostics.Contracts": "[4.0.0, )", + "System.Diagnostics.StackTrace": "[4.0.0, )", + "System.IO.IsolatedStorage": "[4.0.0, )", + "System.Net.Http.Rtc": "[4.0.0, )", + "System.Net.Requests": "[4.0.10, )", + "System.Net.Sockets": "[4.0.0, )", + "System.Net.WebHeaderCollection": "[4.0.0, )", + "System.Numerics.Vectors.WindowsRuntime": "[4.0.0, )", + "System.Reflection.Context": "[4.0.0, )", + "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )", + "System.Runtime.Serialization.Json": "[4.0.0, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )", + "System.Runtime.Serialization.Xml": "[4.0.10, )", + "System.Runtime.WindowsRuntime": "[4.0.10, )", + "System.Runtime.WindowsRuntime.UI.Xaml": "[4.0.0, )", + "System.ServiceModel.Duplex": "[4.0.0, )", + "System.ServiceModel.Http": "[4.0.10, )", + "System.ServiceModel.NetTcp": "[4.0.0, )", + "System.ServiceModel.Primitives": "[4.0.0, )", + "System.ServiceModel.Security": "[4.0.0, )", + "System.Text.Encoding.CodePages": "[4.0.0, )", + "System.Xml.XmlSerializer": "[4.0.10, )" + } + }, + "Microsoft.VisualBasic/10.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Dynamic.Runtime": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.ObjectModel": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/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.Collections": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.AppContext.dll": {} + }, + "runtime": { + "lib/netcore50/System.AppContext.dll": {} + } + }, + "System.Collections/4.0.10": { + "dependencies": { + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Threading": "[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.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/1.1.37": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[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.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.0.0": { + "dependencies": { + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.Globalization.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/dotnet/System.Collections.Specialized.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.Collections": "[4.0.10, )", + "System.ComponentModel": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.ComponentModel.Annotations.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.Annotations.dll": {} + } + }, + "System.ComponentModel.EventBasedAsync/4.0.10": { + "dependencies": { + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + }, + "runtime": { + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll": {} + } + }, + "System.Data.Common/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Data.Common.dll": {} + }, + "runtime": { + "lib/dotnet/System.Data.Common.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.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.0, )", + "System.Text.Encoding": "[4.0.0, )", + "System.Threading": "[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.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.ObjectModel": "[4.0.0, )", + "System.Reflection": "[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.0, )", + "System.Threading": "[4.0.0, )" + }, + "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.Globalization": "[4.0.0, )", + "System.Runtime": "[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.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Globalization.Extensions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Globalization.Extensions.dll": {} + } + }, + "System.IO/4.0.10": { + "dependencies": { + "System.Globalization": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )", + "System.Threading.Tasks": "[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.Collections": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.0, )", + "System.Text.Encoding": "[4.0.0, )", + "System.Threading": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.0, )" + }, + "compile": { + "ref/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.IO": "[4.0.10, )", + "System.IO.Compression": "[4.0.0, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.Encoding": "[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.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Runtime.WindowsRuntime": "[4.0.0, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Overlapped": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/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.IsolatedStorage/4.0.0": { + "dependencies": { + "System.IO": "[4.0.10, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.IO.IsolatedStorage.dll": {} + }, + "runtime": { + "lib/netcore50/System.IO.IsolatedStorage.dll": {} + } + }, + "System.IO.UnmanagedMemoryStream/4.0.0": { + "dependencies": { + "System.IO": "[4.0.10, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.IO.UnmanagedMemoryStream.dll": {} + }, + "runtime": { + "lib/dotnet/System.IO.UnmanagedMemoryStream.dll": {} + } + }, + "System.Linq/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Linq.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.0, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Threading": "[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.Collections": "[4.0.10, )", + "System.Collections.Concurrent": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[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.Collections": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.Linq.Queryable.dll": {} + }, + "runtime": { + "lib/netcore50/System.Linq.Queryable.dll": {} + } + }, + "System.Net.Http/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Net.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Runtime.WindowsRuntime": "[4.0.10, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Net.Http.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Http.dll": {} + } + }, + "System.Net.Http.Rtc/4.0.0": { + "dependencies": { + "System.Net.Http": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.Net.Http.Rtc.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Http.Rtc.dll": {} + } + }, + "System.Net.NetworkInformation/4.0.0": { + "dependencies": { + "System.Runtime": "[4.0.0, )", + "System.Runtime.InteropServices.WindowsRuntime": "[4.0.0, )", + "System.Threading": "[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.Private.Networking": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Net.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Primitives.dll": {} + } + }, + "System.Net.Requests/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Net.Http": "[4.0.0, )", + "System.Net.Primitives": "[4.0.10, )", + "System.Net.WebHeaderCollection": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Net.Requests.dll": {} + }, + "runtime": { + "lib/dotnet/System.Net.Requests.dll": {} + } + }, + "System.Net.Sockets/4.0.0": { + "dependencies": { + "System.Private.Networking": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Net.Sockets.dll": {} + }, + "runtime": { + "lib/netcore50/System.Net.Sockets.dll": {} + } + }, + "System.Net.WebHeaderCollection/4.0.0": { + "dependencies": { + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Collections.Specialized": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Net.WebHeaderCollection.dll": {} + }, + "runtime": { + "lib/dotnet/System.Net.WebHeaderCollection.dll": {} + } + }, + "System.Numerics.Vectors/4.1.0": { + "dependencies": { + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Numerics.Vectors.dll": {} + }, + "runtime": { + "lib/dotnet/System.Numerics.Vectors.dll": {} + } + }, + "System.Numerics.Vectors.WindowsRuntime/4.0.0": { + "dependencies": { + "System.Numerics.Vectors": "[4.1.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.WindowsRuntime": "[4.0.0, )" + }, + "compile": { + "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} + }, + "runtime": { + "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll": {} + } + }, + "System.ObjectModel/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/dotnet/System.ObjectModel.dll": {} + } + }, + "System.Private.DataContractSerialization/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )", + "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.Xml.ReaderWriter": "[4.0.10, )", + "System.Xml.XmlSerializer": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "runtime": { + "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll": {} + } + }, + "System.Private.Networking/4.0.0": { + "dependencies": { + "Microsoft.Win32.Primitives": "[4.0.0, )", + "System.Collections": "[4.0.10, )", + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Overlapped": "[4.0.0, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "runtime": { + "lib/netcore50/System.Private.Networking.dll": {} + } + }, + "System.Private.ServiceModel/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Collections.Concurrent": "[4.0.10, )", + "System.Collections.NonGeneric": "[4.0.0, )", + "System.Collections.Specialized": "[4.0.0, )", + "System.ComponentModel.EventBasedAsync": "[4.0.10, )", + "System.Diagnostics.Contracts": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.Compression": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Linq.Expressions": "[4.0.10, )", + "System.Linq.Queryable": "[4.0.0, )", + "System.Net.Http": "[4.0.0, )", + "System.Net.Primitives": "[4.0.10, )", + "System.Net.WebHeaderCollection": "[4.0.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.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )", + "System.Runtime.Serialization.Xml": "[4.0.10, )", + "System.Runtime.WindowsRuntime": "[4.0.10, )", + "System.Security.Claims": "[4.0.0, )", + "System.Security.Principal": "[4.0.0, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )", + "System.Threading.Timer": "[4.0.0, )", + "System.Xml.ReaderWriter": "[4.0.10, )", + "System.Xml.XmlDocument": "[4.0.0, )", + "System.Xml.XmlSerializer": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/_._": {} + }, + "runtime": { + "lib/netcore50/System.Private.ServiceModel.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.IO": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Reflection.dll": {} + }, + "runtime": { + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll": {} + } + }, + "System.Reflection.Context/4.0.0": { + "dependencies": { + "System.Reflection": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.Reflection.Context.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Context.dll": {} + } + }, + "System.Reflection.DispatchProxy/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Reflection.DispatchProxy.dll": {} + }, + "runtime": { + "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll": {} + } + }, + "System.Reflection.Emit/4.0.0": { + "dependencies": { + "System.IO": "[4.0.0, )", + "System.Reflection": "[4.0.0, )", + "System.Reflection.Emit.ILGeneration": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.0": { + "dependencies": { + "System.Reflection": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Extensions/4.0.0": { + "dependencies": { + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "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, )" + }, + "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.Collections": "[4.0.0, )", + "System.Collections.Immutable": "[1.1.37, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Reflection": "[4.0.0, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.0, )", + "System.Text.Encoding": "[4.0.0, )", + "System.Text.Encoding.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )" + }, + "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.Diagnostics.Contracts": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "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.Globalization": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Runtime": "[4.0.20, )" + }, + "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.Reflection": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Handles": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Runtime.InteropServices.dll": {} + }, + "runtime": { + "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.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.Numerics.dll": {} + } + }, + "System.Runtime.Serialization.Json/4.0.0": { + "dependencies": { + "System.Private.DataContractSerialization": "[4.0.0, )" + }, + "compile": { + "ref/netcore50/System.Runtime.Serialization.Json.dll": {} + }, + "runtime": { + "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll": {} + } + }, + "System.Runtime.Serialization.Primitives/4.0.10": { + "dependencies": { + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/dotnet/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Runtime.Serialization.Xml/4.0.10": { + "dependencies": { + "System.Private.DataContractSerialization": "[4.0.0, )", + "System.Runtime.Serialization.Primitives": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Runtime.Serialization.Xml.dll": {} + }, + "runtime": { + "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll": {} + } + }, + "System.Runtime.WindowsRuntime/4.0.10": { + "dependencies": { + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.0, )", + "System.IO": "[4.0.10, )", + "System.ObjectModel": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.dll": {} + }, + "runtime": { + "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll": {} + } + }, + "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { + "dependencies": { + "System.Globalization": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.WindowsRuntime": "[4.0.0, )" + }, + "compile": { + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + }, + "runtime": { + "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll": {} + } + }, + "System.Security.Claims/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Globalization": "[4.0.0, )", + "System.IO": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Security.Principal": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Security.Claims.dll": {} + }, + "runtime": { + "lib/dotnet/System.Security.Claims.dll": {} + } + }, + "System.Security.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.ServiceModel.Duplex/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Duplex.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Duplex.dll": {} + } + }, + "System.ServiceModel.Http/4.0.10": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/dotnet/System.ServiceModel.Http.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Http.dll": {} + } + }, + "System.ServiceModel.NetTcp/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.NetTcp.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.NetTcp.dll": {} + } + }, + "System.ServiceModel.Primitives/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Primitives.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Primitives.dll": {} + } + }, + "System.ServiceModel.Security/4.0.0": { + "dependencies": { + "System.Private.ServiceModel": "[4.0.0, )", + "System.Runtime": "[4.0.20, )" + }, + "compile": { + "ref/netcore50/System.ServiceModel.Security.dll": {} + }, + "runtime": { + "lib/netcore50/System.ServiceModel.Security.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.CodePages/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.Encoding.CodePages.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.Collections": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/dotnet/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.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.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Runtime.Handles": "[4.0.0, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.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.Collections": "[4.0.0, )", + "System.Collections.Concurrent": "[4.0.0, )", + "System.Diagnostics.Debug": "[4.0.0, )", + "System.Diagnostics.Tracing": "[4.0.0, )", + "System.Dynamic.Runtime": "[4.0.0, )", + "System.Linq": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.0, )", + "System.Runtime.Extensions": "[4.0.0, )", + "System.Threading": "[4.0.0, )", + "System.Threading.Tasks": "[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.Collections.Concurrent": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Diagnostics.Tracing": "[4.0.20, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/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.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.IO.FileSystem": "[4.0.0, )", + "System.IO.FileSystem.Primitives": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Runtime.InteropServices": "[4.0.20, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Text.Encoding.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.10, )", + "System.Threading.Tasks": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Reflection": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Xml.ReaderWriter": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.0.0": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.Encoding": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Xml.ReaderWriter": "[4.0.10, )" + }, + "compile": { + "ref/dotnet/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/dotnet/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XmlSerializer/4.0.10": { + "dependencies": { + "System.Collections": "[4.0.10, )", + "System.Diagnostics.Debug": "[4.0.10, )", + "System.Globalization": "[4.0.10, )", + "System.IO": "[4.0.10, )", + "System.Linq": "[4.0.0, )", + "System.Reflection": "[4.0.10, )", + "System.Reflection.Extensions": "[4.0.0, )", + "System.Reflection.Primitives": "[4.0.0, )", + "System.Reflection.TypeExtensions": "[4.0.0, )", + "System.Resources.ResourceManager": "[4.0.0, )", + "System.Runtime": "[4.0.20, )", + "System.Runtime.Extensions": "[4.0.10, )", + "System.Text.RegularExpressions": "[4.0.10, )", + "System.Threading": "[4.0.10, )", + "System.Xml.ReaderWriter": "[4.0.10, )", + "System.Xml.XmlDocument": "[4.0.0, )" + }, + "compile": { + "ref/dotnet/System.Xml.XmlSerializer.dll": {} + }, + "runtime": { + "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.CSharp/4.0.0": { + "sha512": "oWqeKUxHXdK6dL2CFjgMcaBISbkk+AqEg+yvJHE4DElNzS4QaTsCflgkkqZwVlWby1Dg9zo9n+iCAMFefFdJ/A==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/Microsoft.CSharp.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "Microsoft.CSharp.nuspec", + "package/services/metadata/core-properties/a8a7171824ab4656b3141cda0591ff66.psmdcp", + "ref/dotnet/de/Microsoft.CSharp.xml", + "ref/dotnet/es/Microsoft.CSharp.xml", + "ref/dotnet/fr/Microsoft.CSharp.xml", + "ref/dotnet/it/Microsoft.CSharp.xml", + "ref/dotnet/ja/Microsoft.CSharp.xml", + "ref/dotnet/ko/Microsoft.CSharp.xml", + "ref/dotnet/Microsoft.CSharp.dll", + "ref/dotnet/Microsoft.CSharp.xml", + "ref/dotnet/ru/Microsoft.CSharp.xml", + "ref/dotnet/zh-hans/Microsoft.CSharp.xml", + "ref/dotnet/zh-hant/Microsoft.CSharp.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._" + ] + }, + "Microsoft.NETCore/5.0.0": { + "sha512": "QQMp0yYQbIdfkKhdEE6Umh2Xonau7tasG36Trw/YlHoWgYQLp7T9L+ZD8EPvdj5ubRhtOuKEKwM7HMpkagB9ZA==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_._", + "_rels/.rels", + "Microsoft.NETCore.nuspec", + "package/services/metadata/core-properties/340ac37fb1224580ae47c59ebdd88964.psmdcp" + ] + }, + "Microsoft.NETCore.Platforms/1.0.0": { + "sha512": "0N77OwGZpXqUco2C/ynv1os7HqdFYifvNIbveLDKqL5PZaz05Rl9enCwVBjF61aumHKueLWIJ3prnmdAXxww4A==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "Microsoft.NETCore.Platforms.nuspec", + "package/services/metadata/core-properties/36b51d4c6b524527902ff1a182a64e42.psmdcp", + "runtime.json" + ] + }, + "Microsoft.NETCore.Portable.Compatibility/1.0.0": { + "sha512": "5/IFqf2zN1jzktRJitxO+5kQ+0AilcIbPvSojSJwDG3cGNSMZg44LXLB5E9RkSETE0Wh4QoALdNh1koKoF7/mA==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "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/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/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "Microsoft.NETCore.Portable.Compatibility.nuspec", + "package/services/metadata/core-properties/8131b8ae030a45e7986737a0c1d04ef5.psmdcp", + "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", + "ref/net45/_._", + "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/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "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": { + "sha512": "AjaMNpXLW4miEQorIqyn6iQ+BZBId6qXkhwyeh1vl6kXLqosZusbwmLNlvj/xllSQrd3aImJbvlHusam85g+xQ==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "Microsoft.NETCore.Runtime.nuspec", + "package/services/metadata/core-properties/f289de2ffef9428684eca0c193bc8765.psmdcp", + "runtime.json" + ] + }, + "Microsoft.NETCore.Runtime.CoreCLR-arm/1.0.0": { + "sha512": "vUQyaKbHCa7BJAAzdfCP2FfBYOSt0YnDw7VMJLmD1/k68HIJgw1QO7GAfHhqoa39zkkvimC47QBH27wG4C5OGQ==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "Microsoft.NETCore.Runtime.CoreCLR-arm.nuspec", + "package/services/metadata/core-properties/c1cbeaed81514106b6b7971ac193f132.psmdcp", + "ref/dotnet/_._", + "runtimes/win8-arm/lib/dotnet/mscorlib.ni.dll", + "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.Runtime.CoreCLR-x64/1.0.0": { + "sha512": "DaY5Z13xCZpnVIGluC5sCo4/0wy1rl6mptBH7v3RYi3guAmG88aSeFoQzyZepo0H0jEixUxNFM0+MB6Jc+j0bw==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "Microsoft.NETCore.Runtime.CoreCLR-x64.nuspec", + "package/services/metadata/core-properties/bd7bd26b6b8242179b5b8ca3d9ffeb95.psmdcp", + "ref/dotnet/_._", + "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll", + "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.Runtime.CoreCLR-x86/1.0.0": { + "sha512": "2LDffu5Is/X01GVPVuye4Wmz9/SyGDNq1Opgl5bXG3206cwNiCwsQgILOtfSWVp5mn4w401+8cjhBy3THW8HQQ==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "Microsoft.NETCore.Runtime.CoreCLR-x86.nuspec", + "package/services/metadata/core-properties/dd7e29450ade4bdaab9794850cd11d7a.psmdcp", + "ref/dotnet/_._", + "runtimes/win7-x86/lib/dotnet/mscorlib.ni.dll", + "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.Runtime.Native/1.0.0": { + "sha512": "tMsWWrH1AJCguiM22zK/vr6COxqz62Q1F02B07IXAUN405R3HGk5SkD/DL0Hte+OTjNtW9LkKXpOggGBRwYFNg==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_._", + "_rels/.rels", + "Microsoft.NETCore.Runtime.Native.nuspec", + "package/services/metadata/core-properties/a985563978b547f984c16150ef73e353.psmdcp" + ] + }, + "Microsoft.NETCore.Targets/1.0.0": { + "sha512": "XfITpPjYLYRmAeZtb9diw6P7ylLQsSC1U2a/xj10iQpnHxkiLEBXop/psw15qMPuNca7lqgxWvzZGpQxphuXaw==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "Microsoft.NETCore.Targets.nuspec", + "package/services/metadata/core-properties/5413a5ed3fde4121a1c9ee8feb12ba66.psmdcp", + "runtime.json" + ] + }, + "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { + "sha512": "jszcJ6okLlhqF4OQbhSbixLOuLUyVT3BP7Y7/i7fcDMwnHBd1Pmdz6M1Al9SMDKVLA2oSaItg4tq6C0ydv8lYQ==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "Microsoft.NETCore.Targets.UniversalWindowsPlatform.nuspec", + "package/services/metadata/core-properties/0d18100c9f8c491492d8ddeaa9581526.psmdcp", + "runtime.json" + ] + }, + "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { + "sha512": "D0nsAm+yTk0oSSC7E6PcmuuEewBAQbGgIXNcCnRqQ4qLPdQLMjMHg8cilGs3xZgwTRQmMtEn45TAatrU1otWPQ==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_._", + "_rels/.rels", + "Microsoft.NETCore.UniversalWindowsPlatform.nuspec", + "package/services/metadata/core-properties/5dffd3ce5b6640febe2db09251387062.psmdcp" + ] + }, + "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0": { + "sha512": "NC+dpFMdhujz2sWAdJ8EmBk07p1zOlNi0FCCnZEbzftABpw9xZ99EMP/bUJrPTgCxHfzJAiuLPOtAauzVINk0w==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "Microsoft.NETCore.Windows.ApiSets-x64.nuspec", + "package/services/metadata/core-properties/b25894a2a9234c329a98dc84006b2292.psmdcp", + "runtimes/win10-x64/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-comm-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-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-StringAnsi-L1-1-0.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-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-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-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/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/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-stringloader-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-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" + ] + }, + "Microsoft.NETCore.Windows.ApiSets-x86/1.0.0": { + "sha512": "/HDRdhz5bZyhHwQ/uk/IbnDIX5VDTsHntEZYkTYo57dM+U3Ttel9/OJv0mjL64wTO/QKUJJNKp9XO+m7nSVjJQ==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "Microsoft.NETCore.Windows.ApiSets-x86.nuspec", + "package/services/metadata/core-properties/b773d829b3664669b45b4b4e97bdb635.psmdcp", + "runtimes/win10-x86/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-comm-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-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-StringAnsi-L1-1-0.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-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-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-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/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/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-stringloader-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-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" + ] + }, + "Microsoft.VisualBasic/10.0.0": { + "sha512": "5BEm2/HAVd97whRlCChU7rmSh/9cwGlZ/NTNe3Jl07zuPWfKQq5TUvVNUmdvmEe8QRecJLZ4/e7WF1i1O8V42g==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/Microsoft.VisualBasic.dll", + "lib/net45/_._", + "lib/netcore50/Microsoft.VisualBasic.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "Microsoft.VisualBasic.nuspec", + "package/services/metadata/core-properties/5dbd3a7042354092a8b352b655cf4376.psmdcp", + "ref/dotnet/de/Microsoft.VisualBasic.xml", + "ref/dotnet/es/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/Microsoft.VisualBasic.dll", + "ref/dotnet/Microsoft.VisualBasic.xml", + "ref/dotnet/ru/Microsoft.VisualBasic.xml", + "ref/dotnet/zh-hans/Microsoft.VisualBasic.xml", + "ref/dotnet/zh-hant/Microsoft.VisualBasic.xml", + "ref/net45/_._", + "ref/netcore50/Microsoft.VisualBasic.dll", + "ref/netcore50/Microsoft.VisualBasic.xml", + "ref/win8/_._", + "ref/wpa81/_._" + ] + }, + "Microsoft.Win32.Primitives/4.0.0": { + "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/Microsoft.Win32.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "Microsoft.Win32.Primitives.nuspec", + "package/services/metadata/core-properties/1d4eb9d0228b48b88d2df3822fba2d86.psmdcp", + "ref/dotnet/de/Microsoft.Win32.Primitives.xml", + "ref/dotnet/es/Microsoft.Win32.Primitives.xml", + "ref/dotnet/fr/Microsoft.Win32.Primitives.xml", + "ref/dotnet/it/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ja/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ko/Microsoft.Win32.Primitives.xml", + "ref/dotnet/Microsoft.Win32.Primitives.dll", + "ref/dotnet/Microsoft.Win32.Primitives.xml", + "ref/dotnet/ru/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/dotnet/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._" + ] + }, + "System.AppContext/4.0.0": { + "sha512": "gUoYgAWDC3+xhKeU5KSLbYDhTdBYk9GssrMSCcWUADzOglW+s0AmwVhOUGt2tL5xUl7ZXoYTPdA88zCgKrlG0A==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.AppContext.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/3b390478e0cd42eb8818bbab19299738.psmdcp", + "ref/dotnet/de/System.AppContext.xml", + "ref/dotnet/es/System.AppContext.xml", + "ref/dotnet/fr/System.AppContext.xml", + "ref/dotnet/it/System.AppContext.xml", + "ref/dotnet/ja/System.AppContext.xml", + "ref/dotnet/ko/System.AppContext.xml", + "ref/dotnet/ru/System.AppContext.xml", + "ref/dotnet/System.AppContext.dll", + "ref/dotnet/System.AppContext.xml", + "ref/dotnet/zh-hans/System.AppContext.xml", + "ref/dotnet/zh-hant/System.AppContext.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.AppContext.nuspec" + ] + }, + "System.Collections/4.0.10": { + "sha512": "ux6ilcZZjV/Gp7JEZpe+2V1eTueq6NuoGRM3eZCFuPM25hLVVgCRuea6STW8hvqreIOE59irJk5/ovpA5xQipw==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Collections.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Collections.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/b4f8061406e54dbda8f11b23186be11a.psmdcp", + "ref/dotnet/de/System.Collections.xml", + "ref/dotnet/es/System.Collections.xml", + "ref/dotnet/fr/System.Collections.xml", + "ref/dotnet/it/System.Collections.xml", + "ref/dotnet/ja/System.Collections.xml", + "ref/dotnet/ko/System.Collections.xml", + "ref/dotnet/ru/System.Collections.xml", + "ref/dotnet/System.Collections.dll", + "ref/dotnet/System.Collections.xml", + "ref/dotnet/zh-hans/System.Collections.xml", + "ref/dotnet/zh-hant/System.Collections.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "System.Collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.0.10": { + "sha512": "ZtMEqOPAjAIqR8fqom9AOKRaB94a+emO2O8uOP6vyJoNswSPrbiwN7iH53rrVpvjMVx0wr4/OMpI7486uGZjbw==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.Collections.Concurrent.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/c982a1e1e1644b62952fc4d4dcbe0d42.psmdcp", + "ref/dotnet/de/System.Collections.Concurrent.xml", + "ref/dotnet/es/System.Collections.Concurrent.xml", + "ref/dotnet/fr/System.Collections.Concurrent.xml", + "ref/dotnet/it/System.Collections.Concurrent.xml", + "ref/dotnet/ja/System.Collections.Concurrent.xml", + "ref/dotnet/ko/System.Collections.Concurrent.xml", + "ref/dotnet/ru/System.Collections.Concurrent.xml", + "ref/dotnet/System.Collections.Concurrent.dll", + "ref/dotnet/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hans/System.Collections.Concurrent.xml", + "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Collections.Concurrent.nuspec" + ] + }, + "System.Collections.Immutable/1.1.37": { + "sha512": "fTpqwZYBzoklTT+XjTRK8KxvmrGkYHzBiylCcKyQcxiOM8k+QvhNBxRvFHDWzy4OEP5f8/9n+xQ9mEgEXY+muA==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.Collections.Immutable.dll", + "lib/dotnet/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "package/services/metadata/core-properties/a02fdeabe1114a24bba55860b8703852.psmdcp", + "System.Collections.Immutable.nuspec" + ] + }, + "System.Collections.NonGeneric/4.0.0": { + "sha512": "rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.Collections.NonGeneric.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/185704b1dc164b078b61038bde9ab31a.psmdcp", + "ref/dotnet/de/System.Collections.NonGeneric.xml", + "ref/dotnet/es/System.Collections.NonGeneric.xml", + "ref/dotnet/fr/System.Collections.NonGeneric.xml", + "ref/dotnet/it/System.Collections.NonGeneric.xml", + "ref/dotnet/ja/System.Collections.NonGeneric.xml", + "ref/dotnet/ko/System.Collections.NonGeneric.xml", + "ref/dotnet/ru/System.Collections.NonGeneric.xml", + "ref/dotnet/System.Collections.NonGeneric.dll", + "ref/dotnet/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hans/System.Collections.NonGeneric.xml", + "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Collections.NonGeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.0.0": { + "sha512": "poJFwQCUOoXqvdoGxx+3p8Z63yawcYKPBSFP67Z2jICeOINvEIQZN7mVOAnC7gsVF0WU+A2wtVwfhagC7UCgAg==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.Collections.Specialized.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/e7002e4ccd044c00a7cbd4a37efe3400.psmdcp", + "ref/dotnet/de/System.Collections.Specialized.xml", + "ref/dotnet/es/System.Collections.Specialized.xml", + "ref/dotnet/fr/System.Collections.Specialized.xml", + "ref/dotnet/it/System.Collections.Specialized.xml", + "ref/dotnet/ja/System.Collections.Specialized.xml", + "ref/dotnet/ko/System.Collections.Specialized.xml", + "ref/dotnet/ru/System.Collections.Specialized.xml", + "ref/dotnet/System.Collections.Specialized.dll", + "ref/dotnet/System.Collections.Specialized.xml", + "ref/dotnet/zh-hans/System.Collections.Specialized.xml", + "ref/dotnet/zh-hant/System.Collections.Specialized.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Collections.Specialized.nuspec" + ] + }, + "System.ComponentModel/4.0.0": { + "sha512": "BzpLdSi++ld7rJLOOt5f/G9GxujP202bBgKORsHcGV36rLB0mfSA2h8chTMoBzFhgN7TE14TmJ2J7Q1RyNCTAw==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.ComponentModel.dll", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "package/services/metadata/core-properties/58b9abdedb3a4985a487cb8bf4bdcbd7.psmdcp", + "ref/dotnet/de/System.ComponentModel.xml", + "ref/dotnet/es/System.ComponentModel.xml", + "ref/dotnet/fr/System.ComponentModel.xml", + "ref/dotnet/it/System.ComponentModel.xml", + "ref/dotnet/ja/System.ComponentModel.xml", + "ref/dotnet/ko/System.ComponentModel.xml", + "ref/dotnet/ru/System.ComponentModel.xml", + "ref/dotnet/System.ComponentModel.dll", + "ref/dotnet/System.ComponentModel.xml", + "ref/dotnet/zh-hans/System.ComponentModel.xml", + "ref/dotnet/zh-hant/System.ComponentModel.xml", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.ComponentModel.nuspec" + ] + }, + "System.ComponentModel.Annotations/4.0.10": { + "sha512": "7+XGyEZx24nP1kpHxCB9e+c6D0fdVDvFwE1xujE9BzlXyNVcy5J5aIO0H/ECupx21QpyRvzZibGAHfL/XLL6dw==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.ComponentModel.Annotations.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/012e5fa97b3d450eb20342cd9ba88069.psmdcp", + "ref/dotnet/de/System.ComponentModel.Annotations.xml", + "ref/dotnet/es/System.ComponentModel.Annotations.xml", + "ref/dotnet/fr/System.ComponentModel.Annotations.xml", + "ref/dotnet/it/System.ComponentModel.Annotations.xml", + "ref/dotnet/ja/System.ComponentModel.Annotations.xml", + "ref/dotnet/ko/System.ComponentModel.Annotations.xml", + "ref/dotnet/ru/System.ComponentModel.Annotations.xml", + "ref/dotnet/System.ComponentModel.Annotations.dll", + "ref/dotnet/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hans/System.ComponentModel.Annotations.xml", + "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ComponentModel.Annotations.nuspec" + ] + }, + "System.ComponentModel.EventBasedAsync/4.0.10": { + "sha512": "d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/5094900f1f7e4f4dae27507acc72f2a5.psmdcp", + "ref/dotnet/de/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/es/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/fr/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/it/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ja/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ko/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/ru/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/System.ComponentModel.EventBasedAsync.dll", + "ref/dotnet/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/zh-hans/System.ComponentModel.EventBasedAsync.xml", + "ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ComponentModel.EventBasedAsync.nuspec" + ] + }, + "System.Data.Common/4.0.0": { + "sha512": "SA7IdoTWiImVr0exDM68r0mKmR4f/qFGxZUrJQKu4YS7F+3afWzSOCezHxWdevQ0ONi4WRQsOiv+Zf9p8H0Feg==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.Data.Common.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Data.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/aa5ad20c33d94c8e8016ba4fc64d8d66.psmdcp", + "ref/dotnet/de/System.Data.Common.xml", + "ref/dotnet/es/System.Data.Common.xml", + "ref/dotnet/fr/System.Data.Common.xml", + "ref/dotnet/it/System.Data.Common.xml", + "ref/dotnet/ja/System.Data.Common.xml", + "ref/dotnet/ko/System.Data.Common.xml", + "ref/dotnet/ru/System.Data.Common.xml", + "ref/dotnet/System.Data.Common.dll", + "ref/dotnet/System.Data.Common.xml", + "ref/dotnet/zh-hans/System.Data.Common.xml", + "ref/dotnet/zh-hant/System.Data.Common.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Data.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Data.Common.nuspec" + ] + }, + "System.Diagnostics.Contracts/4.0.0": { + "sha512": "lMc7HNmyIsu0pKTdA4wf+FMq5jvouUd+oUpV4BdtyqoV0Pkbg9u/7lTKFGqpjZRQosWHq1+B32Lch2wf4AmloA==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Diagnostics.Contracts.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "package/services/metadata/core-properties/c6cd3d0bbc304cbca14dc3d6bff6579c.psmdcp", + "ref/dotnet/de/System.Diagnostics.Contracts.xml", + "ref/dotnet/es/System.Diagnostics.Contracts.xml", + "ref/dotnet/fr/System.Diagnostics.Contracts.xml", + "ref/dotnet/it/System.Diagnostics.Contracts.xml", + "ref/dotnet/ja/System.Diagnostics.Contracts.xml", + "ref/dotnet/ko/System.Diagnostics.Contracts.xml", + "ref/dotnet/ru/System.Diagnostics.Contracts.xml", + "ref/dotnet/System.Diagnostics.Contracts.dll", + "ref/dotnet/System.Diagnostics.Contracts.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Contracts.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Contracts.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/netcore50/System.Diagnostics.Contracts.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll", + "System.Diagnostics.Contracts.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.10": { + "sha512": "pi2KthuvI2LWV2c2V+fwReDsDiKpNl040h6DcwFOb59SafsPT/V1fCy0z66OKwysurJkBMmp5j5CBe3Um+ub0g==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Diagnostics.Debug.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Debug.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/bfb05c26051f4a5f9015321db9cb045c.psmdcp", + "ref/dotnet/de/System.Diagnostics.Debug.xml", + "ref/dotnet/es/System.Diagnostics.Debug.xml", + "ref/dotnet/fr/System.Diagnostics.Debug.xml", + "ref/dotnet/it/System.Diagnostics.Debug.xml", + "ref/dotnet/ja/System.Diagnostics.Debug.xml", + "ref/dotnet/ko/System.Diagnostics.Debug.xml", + "ref/dotnet/ru/System.Diagnostics.Debug.xml", + "ref/dotnet/System.Diagnostics.Debug.dll", + "ref/dotnet/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Debug.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Debug.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "System.Diagnostics.Debug.nuspec" + ] + }, + "System.Diagnostics.StackTrace/4.0.0": { + "sha512": "PItgenqpRiMqErvQONBlfDwctKpWVrcDSW5pppNZPJ6Bpiyz+KjsWoSiaqs5dt03HEbBTMNCrZb8KCkh7YfXmw==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Diagnostics.StackTrace.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.StackTrace.dll", + "lib/netcore50/System.Diagnostics.StackTrace.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/5c7ca489a36944d895c628fced7e9107.psmdcp", + "ref/dotnet/de/System.Diagnostics.StackTrace.xml", + "ref/dotnet/es/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/System.Diagnostics.StackTrace.dll", + "ref/dotnet/System.Diagnostics.StackTrace.xml", + "ref/dotnet/zh-hans/System.Diagnostics.StackTrace.xml", + "ref/dotnet/zh-hant/System.Diagnostics.StackTrace.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.StackTrace.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll", + "System.Diagnostics.StackTrace.nuspec" + ] + }, + "System.Diagnostics.Tools/4.0.0": { + "sha512": "uw5Qi2u5Cgtv4xv3+8DeB63iaprPcaEHfpeJqlJiLjIVy6v0La4ahJ6VW9oPbJNIjcavd24LKq0ctT9ssuQXsw==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Diagnostics.Tools.dll", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Tools.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "package/services/metadata/core-properties/20f622a1ae5b4e3992fc226d88d36d59.psmdcp", + "ref/dotnet/de/System.Diagnostics.Tools.xml", + "ref/dotnet/es/System.Diagnostics.Tools.xml", + "ref/dotnet/fr/System.Diagnostics.Tools.xml", + "ref/dotnet/it/System.Diagnostics.Tools.xml", + "ref/dotnet/ja/System.Diagnostics.Tools.xml", + "ref/dotnet/ko/System.Diagnostics.Tools.xml", + "ref/dotnet/ru/System.Diagnostics.Tools.xml", + "ref/dotnet/System.Diagnostics.Tools.dll", + "ref/dotnet/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tools.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tools.xml", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "System.Diagnostics.Tools.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.0.20": { + "sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Diagnostics.Tracing.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Diagnostics.Tracing.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/13423e75e6344b289b3779b51522737c.psmdcp", + "ref/dotnet/de/System.Diagnostics.Tracing.xml", + "ref/dotnet/es/System.Diagnostics.Tracing.xml", + "ref/dotnet/fr/System.Diagnostics.Tracing.xml", + "ref/dotnet/it/System.Diagnostics.Tracing.xml", + "ref/dotnet/ja/System.Diagnostics.Tracing.xml", + "ref/dotnet/ko/System.Diagnostics.Tracing.xml", + "ref/dotnet/ru/System.Diagnostics.Tracing.xml", + "ref/dotnet/System.Diagnostics.Tracing.dll", + "ref/dotnet/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hans/System.Diagnostics.Tracing.xml", + "ref/dotnet/zh-hant/System.Diagnostics.Tracing.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "System.Diagnostics.Tracing.nuspec" + ] + }, + "System.Dynamic.Runtime/4.0.10": { + "sha512": "r10VTLdlxtYp46BuxomHnwx7vIoMOr04CFoC/jJJfY22f7HQQ4P+cXY2Nxo6/rIxNNqOxwdbQQwv7Gl88Jsu1w==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Dynamic.Runtime.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/b7571751b95d4952803c5011dab33c3b.psmdcp", + "ref/dotnet/de/System.Dynamic.Runtime.xml", + "ref/dotnet/es/System.Dynamic.Runtime.xml", + "ref/dotnet/fr/System.Dynamic.Runtime.xml", + "ref/dotnet/it/System.Dynamic.Runtime.xml", + "ref/dotnet/ja/System.Dynamic.Runtime.xml", + "ref/dotnet/ko/System.Dynamic.Runtime.xml", + "ref/dotnet/ru/System.Dynamic.Runtime.xml", + "ref/dotnet/System.Dynamic.Runtime.dll", + "ref/dotnet/System.Dynamic.Runtime.xml", + "ref/dotnet/zh-hans/System.Dynamic.Runtime.xml", + "ref/dotnet/zh-hant/System.Dynamic.Runtime.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", + "System.Dynamic.Runtime.nuspec" + ] + }, + "System.Globalization/4.0.10": { + "sha512": "kzRtbbCNAxdafFBDogcM36ehA3th8c1PGiz8QRkZn8O5yMBorDHSK8/TGJPYOaCS5zdsGk0u9qXHnW91nqy7fw==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Globalization.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Globalization.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/93bcad242a4e4ad7afd0b53244748763.psmdcp", + "ref/dotnet/de/System.Globalization.xml", + "ref/dotnet/es/System.Globalization.xml", + "ref/dotnet/fr/System.Globalization.xml", + "ref/dotnet/it/System.Globalization.xml", + "ref/dotnet/ja/System.Globalization.xml", + "ref/dotnet/ko/System.Globalization.xml", + "ref/dotnet/ru/System.Globalization.xml", + "ref/dotnet/System.Globalization.dll", + "ref/dotnet/System.Globalization.xml", + "ref/dotnet/zh-hans/System.Globalization.xml", + "ref/dotnet/zh-hant/System.Globalization.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "System.Globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.0.0": { + "sha512": "cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Globalization.Calendars.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/netcore50/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/95fc8eb4808e4f31a967f407c94eba0f.psmdcp", + "ref/dotnet/de/System.Globalization.Calendars.xml", + "ref/dotnet/es/System.Globalization.Calendars.xml", + "ref/dotnet/fr/System.Globalization.Calendars.xml", + "ref/dotnet/it/System.Globalization.Calendars.xml", + "ref/dotnet/ja/System.Globalization.Calendars.xml", + "ref/dotnet/ko/System.Globalization.Calendars.xml", + "ref/dotnet/ru/System.Globalization.Calendars.xml", + "ref/dotnet/System.Globalization.Calendars.dll", + "ref/dotnet/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hans/System.Globalization.Calendars.xml", + "ref/dotnet/zh-hant/System.Globalization.Calendars.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "System.Globalization.Calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.0.0": { + "sha512": "rqbUXiwpBCvJ18ySCsjh20zleazO+6fr3s5GihC2sVwhyS0MUl6+oc5Rzk0z6CKkS4kmxbZQSeZLsK7cFSO0ng==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.Globalization.Extensions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/a0490a34737f448fb53635b5210e48e4.psmdcp", + "ref/dotnet/de/System.Globalization.Extensions.xml", + "ref/dotnet/es/System.Globalization.Extensions.xml", + "ref/dotnet/fr/System.Globalization.Extensions.xml", + "ref/dotnet/it/System.Globalization.Extensions.xml", + "ref/dotnet/ja/System.Globalization.Extensions.xml", + "ref/dotnet/ko/System.Globalization.Extensions.xml", + "ref/dotnet/ru/System.Globalization.Extensions.xml", + "ref/dotnet/System.Globalization.Extensions.dll", + "ref/dotnet/System.Globalization.Extensions.xml", + "ref/dotnet/zh-hans/System.Globalization.Extensions.xml", + "ref/dotnet/zh-hant/System.Globalization.Extensions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Globalization.Extensions.nuspec" + ] + }, + "System.IO/4.0.10": { + "sha512": "kghf1CeYT+W2lw8a50/GxFz5HR9t6RkL4BvjxtTp1NxtEFWywnMA9W8FH/KYXiDNThcw9u/GOViDON4iJFGXIQ==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.IO.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.IO.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/db72fd58a86b4d13a6d2858ebec46705.psmdcp", + "ref/dotnet/de/System.IO.xml", + "ref/dotnet/es/System.IO.xml", + "ref/dotnet/fr/System.IO.xml", + "ref/dotnet/it/System.IO.xml", + "ref/dotnet/ja/System.IO.xml", + "ref/dotnet/ko/System.IO.xml", + "ref/dotnet/ru/System.IO.xml", + "ref/dotnet/System.IO.dll", + "ref/dotnet/System.IO.xml", + "ref/dotnet/zh-hans/System.IO.xml", + "ref/dotnet/zh-hant/System.IO.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "System.IO.nuspec" + ] + }, + "System.IO.Compression/4.0.0": { + "sha512": "S+ljBE3py8pujTrsOOYHtDg2cnAifn6kBu/pfh1hMWIXd8DoVh0ADTA6Puv4q+nYj+Msm6JoFLNwuRSmztbsDQ==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.IO.Compression.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.IO.Compression.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/cdbbc16eba65486f85d2caf9357894f3.psmdcp", + "ref/dotnet/de/System.IO.Compression.xml", + "ref/dotnet/es/System.IO.Compression.xml", + "ref/dotnet/fr/System.IO.Compression.xml", + "ref/dotnet/it/System.IO.Compression.xml", + "ref/dotnet/ja/System.IO.Compression.xml", + "ref/dotnet/ko/System.IO.Compression.xml", + "ref/dotnet/ru/System.IO.Compression.xml", + "ref/dotnet/System.IO.Compression.dll", + "ref/dotnet/System.IO.Compression.xml", + "ref/dotnet/zh-hans/System.IO.Compression.xml", + "ref/dotnet/zh-hant/System.IO.Compression.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "System.IO.Compression.nuspec" + ] + }, + "System.IO.Compression.clrcompression-arm/4.0.0": { + "sha512": "Kk21GecAbI+H6tMP6/lMssGObbhoHwLiREiB5UkNMCypdxACuF+6gmrdDTousCUcbH28CJeo7tArrnUc+bchuw==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "package/services/metadata/core-properties/e09228dcfd7b47adb2ddcf73e2eb6ddf.psmdcp", + "runtimes/win10-arm/native/ClrCompression.dll", + "runtimes/win7-arm/native/clrcompression.dll", + "System.IO.Compression.clrcompression-arm.nuspec" + ] + }, + "System.IO.Compression.clrcompression-x64/4.0.0": { + "sha512": "Lqr+URMwKzf+8HJF6YrqEqzKzDzFJTE4OekaxqdIns71r8Ufbd8SbZa0LKl9q+7nu6Em4SkIEXVMB7plSXekOw==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "package/services/metadata/core-properties/416c3fd9fab749d484e0fed458de199f.psmdcp", + "runtimes/win10-x64/native/ClrCompression.dll", + "runtimes/win7-x64/native/clrcompression.dll", + "System.IO.Compression.clrcompression-x64.nuspec" + ] + }, + "System.IO.Compression.clrcompression-x86/4.0.0": { + "sha512": "GmevpuaMRzYDXHu+xuV10fxTO8DsP7OKweWxYtkaxwVnDSj9X6RBupSiXdiveq9yj/xjZ1NbG+oRRRb99kj+VQ==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "package/services/metadata/core-properties/cd12f86c8cc2449589dfbe349763f7b3.psmdcp", + "runtimes/win10-x86/native/ClrCompression.dll", + "runtimes/win7-x86/native/clrcompression.dll", + "System.IO.Compression.clrcompression-x86.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.0.0": { + "sha512": "pwntmtsJqtt6Lez4Iyv4GVGW6DaXUTo9Rnlsx0MFagRgX+8F/sxG5S/IzDJabBj68sUWViz1QJrRZL4V9ngWDg==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.IO.Compression.ZipFile.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/60dc66d592ac41008e1384536912dabf.psmdcp", + "ref/dotnet/de/System.IO.Compression.ZipFile.xml", + "ref/dotnet/es/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/System.IO.Compression.ZipFile.dll", + "ref/dotnet/System.IO.Compression.ZipFile.xml", + "ref/dotnet/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/dotnet/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.IO.Compression.ZipFile.nuspec" + ] + }, + "System.IO.FileSystem/4.0.0": { + "sha512": "eo05SPWfG+54UA0wxgRIYOuOslq+2QrJLXZaJDDsfLXG15OLguaItW39NYZTqUb4DeGOkU4R0wpOLOW4ynMUDQ==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.IO.FileSystem.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/netcore50/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/0405bad2bcdd403884f42a0a79534bc1.psmdcp", + "ref/dotnet/de/System.IO.FileSystem.xml", + "ref/dotnet/es/System.IO.FileSystem.xml", + "ref/dotnet/fr/System.IO.FileSystem.xml", + "ref/dotnet/it/System.IO.FileSystem.xml", + "ref/dotnet/ja/System.IO.FileSystem.xml", + "ref/dotnet/ko/System.IO.FileSystem.xml", + "ref/dotnet/ru/System.IO.FileSystem.xml", + "ref/dotnet/System.IO.FileSystem.dll", + "ref/dotnet/System.IO.FileSystem.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.IO.FileSystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.0": { + "sha512": "7pJUvYi/Yq3A5nagqCCiOw3+aJp3xXc/Cjr8dnJDnER3/6kX3LEencfqmXUcPl9+7OvRNyPMNhqsLAcMK6K/KA==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.IO.FileSystem.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/2cf3542156f0426483f92b9e37d8d381.psmdcp", + "ref/dotnet/de/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/es/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/fr/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/it/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ja/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ko/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/ru/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/System.IO.FileSystem.Primitives.dll", + "ref/dotnet/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.IO.FileSystem.Primitives.nuspec" + ] + }, + "System.IO.IsolatedStorage/4.0.0": { + "sha512": "d5KimUbZ49Ki6A/uwU+Iodng+nhJvpRs7hr/828cfeXC02LxUiggnRnAu+COtWcKvJ2YbBmAGOcO4GLK4fX1+w==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/netcore50/System.IO.IsolatedStorage.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/0d69e649eab84c3cad77d63bb460f7e7.psmdcp", + "ref/dotnet/de/System.IO.IsolatedStorage.xml", + "ref/dotnet/es/System.IO.IsolatedStorage.xml", + "ref/dotnet/fr/System.IO.IsolatedStorage.xml", + "ref/dotnet/it/System.IO.IsolatedStorage.xml", + "ref/dotnet/ja/System.IO.IsolatedStorage.xml", + "ref/dotnet/ko/System.IO.IsolatedStorage.xml", + "ref/dotnet/ru/System.IO.IsolatedStorage.xml", + "ref/dotnet/System.IO.IsolatedStorage.dll", + "ref/dotnet/System.IO.IsolatedStorage.xml", + "ref/dotnet/zh-hans/System.IO.IsolatedStorage.xml", + "ref/dotnet/zh-hant/System.IO.IsolatedStorage.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.IO.IsolatedStorage.nuspec" + ] + }, + "System.IO.UnmanagedMemoryStream/4.0.0": { + "sha512": "i2xczgQfwHmolORBNHxV9b5izP8VOBxgSA2gf+H55xBvwqtR+9r9adtzlc7at0MAwiLcsk6V1TZlv2vfRQr8Sw==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.IO.UnmanagedMemoryStream.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.UnmanagedMemoryStream.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/cce1d37d7dc24e5fb4170ead20101af0.psmdcp", + "ref/dotnet/de/System.IO.UnmanagedMemoryStream.xml", + "ref/dotnet/es/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/System.IO.UnmanagedMemoryStream.dll", + "ref/dotnet/System.IO.UnmanagedMemoryStream.xml", + "ref/dotnet/zh-hans/System.IO.UnmanagedMemoryStream.xml", + "ref/dotnet/zh-hant/System.IO.UnmanagedMemoryStream.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.UnmanagedMemoryStream.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.IO.UnmanagedMemoryStream.nuspec" + ] + }, + "System.Linq/4.0.0": { + "sha512": "r6Hlc+ytE6m/9UBr+nNRRdoJEWjoeQiT3L3lXYFDHoXk3VYsRBCDNXrawcexw7KPLaH0zamQLiAb6avhZ50cGg==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.Linq.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "package/services/metadata/core-properties/6fcde56ce4094f6a8fff4b28267da532.psmdcp", + "ref/dotnet/de/System.Linq.xml", + "ref/dotnet/es/System.Linq.xml", + "ref/dotnet/fr/System.Linq.xml", + "ref/dotnet/it/System.Linq.xml", + "ref/dotnet/ja/System.Linq.xml", + "ref/dotnet/ko/System.Linq.xml", + "ref/dotnet/ru/System.Linq.xml", + "ref/dotnet/System.Linq.dll", + "ref/dotnet/System.Linq.xml", + "ref/dotnet/zh-hans/System.Linq.xml", + "ref/dotnet/zh-hant/System.Linq.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.nuspec" + ] + }, + "System.Linq.Expressions/4.0.10": { + "sha512": "qhFkPqRsTfXBaacjQhxwwwUoU7TEtwlBIULj7nG7i4qAkvivil31VvOvDKppCSui5yGw0/325ZeNaMYRvTotXw==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Linq.Expressions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/4e3c061f7c0a427fa5b65bd3d84e9bc3.psmdcp", + "ref/dotnet/de/System.Linq.Expressions.xml", + "ref/dotnet/es/System.Linq.Expressions.xml", + "ref/dotnet/fr/System.Linq.Expressions.xml", + "ref/dotnet/it/System.Linq.Expressions.xml", + "ref/dotnet/ja/System.Linq.Expressions.xml", + "ref/dotnet/ko/System.Linq.Expressions.xml", + "ref/dotnet/ru/System.Linq.Expressions.xml", + "ref/dotnet/System.Linq.Expressions.dll", + "ref/dotnet/System.Linq.Expressions.xml", + "ref/dotnet/zh-hans/System.Linq.Expressions.xml", + "ref/dotnet/zh-hant/System.Linq.Expressions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "System.Linq.Expressions.nuspec" + ] + }, + "System.Linq.Parallel/4.0.0": { + "sha512": "PtH7KKh1BbzVow4XY17pnrn7Io63ApMdwzRE2o2HnzsKQD/0o7X5xe6mxrDUqTm9ZCR3/PNhAlP13VY1HnHsbA==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.Linq.Parallel.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.Parallel.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "package/services/metadata/core-properties/5cc7d35889814f73a239a1b7dcd33451.psmdcp", + "ref/dotnet/de/System.Linq.Parallel.xml", + "ref/dotnet/es/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/System.Linq.Parallel.dll", + "ref/dotnet/System.Linq.Parallel.xml", + "ref/dotnet/zh-hans/System.Linq.Parallel.xml", + "ref/dotnet/zh-hant/System.Linq.Parallel.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.Parallel.dll", + "ref/netcore50/System.Linq.Parallel.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "System.Linq.Parallel.nuspec" + ] + }, + "System.Linq.Queryable/4.0.0": { + "sha512": "DIlvCNn3ucFvwMMzXcag4aFnFJ1fdxkQ5NqwJe9Nh7y8ozzhDm07YakQL/yoF3P1dLzY1T2cTpuwbAmVSdXyBA==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.Linq.Queryable.dll", + "lib/net45/_._", + "lib/netcore50/System.Linq.Queryable.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "package/services/metadata/core-properties/24a380caa65148a7883629840bf0c343.psmdcp", + "ref/dotnet/de/System.Linq.Queryable.xml", + "ref/dotnet/es/System.Linq.Queryable.xml", + "ref/dotnet/fr/System.Linq.Queryable.xml", + "ref/dotnet/it/System.Linq.Queryable.xml", + "ref/dotnet/ja/System.Linq.Queryable.xml", + "ref/dotnet/ko/System.Linq.Queryable.xml", + "ref/dotnet/ru/System.Linq.Queryable.xml", + "ref/dotnet/System.Linq.Queryable.dll", + "ref/dotnet/System.Linq.Queryable.xml", + "ref/dotnet/zh-hans/System.Linq.Queryable.xml", + "ref/dotnet/zh-hant/System.Linq.Queryable.xml", + "ref/net45/_._", + "ref/netcore50/System.Linq.Queryable.dll", + "ref/netcore50/System.Linq.Queryable.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Linq.Queryable.nuspec" + ] + }, + "System.Net.Http/4.0.0": { + "sha512": "mZuAl7jw/mFY8jUq4ITKECxVBh9a8SJt9BC/+lJbmo7cRKspxE3PsITz+KiaCEsexN5WYPzwBOx0oJH/0HlPyQ==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Net.Http.dll", + "lib/net45/_._", + "lib/netcore50/System.Net.Http.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "package/services/metadata/core-properties/62d64206d25643df9c8d01e867c05e27.psmdcp", + "ref/dotnet/de/System.Net.Http.xml", + "ref/dotnet/es/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/System.Net.Http.dll", + "ref/dotnet/System.Net.Http.xml", + "ref/dotnet/zh-hans/System.Net.Http.xml", + "ref/dotnet/zh-hant/System.Net.Http.xml", + "ref/net45/_._", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "System.Net.Http.nuspec" + ] + }, + "System.Net.Http.Rtc/4.0.0": { + "sha512": "PlE+oJgXdbxPmZYR6GBywRkyIPovjB1Y0SYHizj2Iflgu80uJQC4szl9gue4rKI2FgXiEbj9JL7wL5K3mp9HAQ==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/netcore50/System.Net.Http.Rtc.dll", + "lib/win8/_._", + "package/services/metadata/core-properties/5ae6b04142264f2abb319c7dccbfb69f.psmdcp", + "ref/dotnet/de/System.Net.Http.Rtc.xml", + "ref/dotnet/es/System.Net.Http.Rtc.xml", + "ref/dotnet/fr/System.Net.Http.Rtc.xml", + "ref/dotnet/it/System.Net.Http.Rtc.xml", + "ref/dotnet/ja/System.Net.Http.Rtc.xml", + "ref/dotnet/ko/System.Net.Http.Rtc.xml", + "ref/dotnet/ru/System.Net.Http.Rtc.xml", + "ref/dotnet/System.Net.Http.Rtc.dll", + "ref/dotnet/System.Net.Http.Rtc.xml", + "ref/dotnet/zh-hans/System.Net.Http.Rtc.xml", + "ref/dotnet/zh-hant/System.Net.Http.Rtc.xml", + "ref/netcore50/System.Net.Http.Rtc.dll", + "ref/netcore50/System.Net.Http.Rtc.xml", + "ref/win8/_._", + "System.Net.Http.Rtc.nuspec" + ] + }, + "System.Net.NetworkInformation/4.0.0": { + "sha512": "D68KCf5VK1G1GgFUwD901gU6cnMITksOdfdxUCt9ReCZfT1pigaDqjJ7XbiLAM4jm7TfZHB7g5mbOf1mbG3yBA==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Net.NetworkInformation.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/5daeae3f7319444d8efbd8a0c539559c.psmdcp", + "ref/dotnet/de/System.Net.NetworkInformation.xml", + "ref/dotnet/es/System.Net.NetworkInformation.xml", + "ref/dotnet/fr/System.Net.NetworkInformation.xml", + "ref/dotnet/it/System.Net.NetworkInformation.xml", + "ref/dotnet/ja/System.Net.NetworkInformation.xml", + "ref/dotnet/ko/System.Net.NetworkInformation.xml", + "ref/dotnet/ru/System.Net.NetworkInformation.xml", + "ref/dotnet/System.Net.NetworkInformation.dll", + "ref/dotnet/System.Net.NetworkInformation.xml", + "ref/dotnet/zh-hans/System.Net.NetworkInformation.xml", + "ref/dotnet/zh-hant/System.Net.NetworkInformation.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.NetworkInformation.dll", + "ref/netcore50/System.Net.NetworkInformation.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Net.NetworkInformation.nuspec" + ] + }, + "System.Net.Primitives/4.0.10": { + "sha512": "YQqIpmMhnKjIbT7rl6dlf7xM5DxaMR+whduZ9wKb9OhMLjoueAJO3HPPJI+Naf3v034kb+xZqdc3zo44o3HWcg==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Net.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Net.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/3e2f49037d5645bdad757b3fd5b7c103.psmdcp", + "ref/dotnet/de/System.Net.Primitives.xml", + "ref/dotnet/es/System.Net.Primitives.xml", + "ref/dotnet/fr/System.Net.Primitives.xml", + "ref/dotnet/it/System.Net.Primitives.xml", + "ref/dotnet/ja/System.Net.Primitives.xml", + "ref/dotnet/ko/System.Net.Primitives.xml", + "ref/dotnet/ru/System.Net.Primitives.xml", + "ref/dotnet/System.Net.Primitives.dll", + "ref/dotnet/System.Net.Primitives.xml", + "ref/dotnet/zh-hans/System.Net.Primitives.xml", + "ref/dotnet/zh-hant/System.Net.Primitives.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Net.Primitives.nuspec" + ] + }, + "System.Net.Requests/4.0.10": { + "sha512": "A6XBR7TztiIQg6hx7VGfbBKmRTAavUERm2E7pmNz/gZeGvwyP0lcKHZxylJtNVKj7DPwr91bD87oLY6zZYntcg==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.Net.Requests.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/7a4e397882e44db3aa06d6d8c9dd3d66.psmdcp", + "ref/dotnet/de/System.Net.Requests.xml", + "ref/dotnet/es/System.Net.Requests.xml", + "ref/dotnet/fr/System.Net.Requests.xml", + "ref/dotnet/it/System.Net.Requests.xml", + "ref/dotnet/ja/System.Net.Requests.xml", + "ref/dotnet/ko/System.Net.Requests.xml", + "ref/dotnet/ru/System.Net.Requests.xml", + "ref/dotnet/System.Net.Requests.dll", + "ref/dotnet/System.Net.Requests.xml", + "ref/dotnet/zh-hans/System.Net.Requests.xml", + "ref/dotnet/zh-hant/System.Net.Requests.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Net.Requests.nuspec" + ] + }, + "System.Net.Sockets/4.0.0": { + "sha512": "7bBNLdO6Xw0BGyFVSxjloGXMvsc3qQmW+70bYMLwHEAVivMK8zx+E7XO8CeJnAko2mFj6R402E798EGYUksFcQ==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/netcore50/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/cca33bc0996f49c68976fa5bab1500ff.psmdcp", + "ref/dotnet/de/System.Net.Sockets.xml", + "ref/dotnet/es/System.Net.Sockets.xml", + "ref/dotnet/fr/System.Net.Sockets.xml", + "ref/dotnet/it/System.Net.Sockets.xml", + "ref/dotnet/ja/System.Net.Sockets.xml", + "ref/dotnet/ko/System.Net.Sockets.xml", + "ref/dotnet/ru/System.Net.Sockets.xml", + "ref/dotnet/System.Net.Sockets.dll", + "ref/dotnet/System.Net.Sockets.xml", + "ref/dotnet/zh-hans/System.Net.Sockets.xml", + "ref/dotnet/zh-hant/System.Net.Sockets.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Net.Sockets.nuspec" + ] + }, + "System.Net.WebHeaderCollection/4.0.0": { + "sha512": "IsIZAsHm/yK7R/XASnEc4EMffFLIMgYchG3/zJv6B4LwMnXZwrVlSPpNbPgEVb0lSXyztsn7A6sIPAACQQ2vTQ==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.Net.WebHeaderCollection.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/7ab0d7bde19b47548622bfa222a4eccb.psmdcp", + "ref/dotnet/de/System.Net.WebHeaderCollection.xml", + "ref/dotnet/es/System.Net.WebHeaderCollection.xml", + "ref/dotnet/fr/System.Net.WebHeaderCollection.xml", + "ref/dotnet/it/System.Net.WebHeaderCollection.xml", + "ref/dotnet/ja/System.Net.WebHeaderCollection.xml", + "ref/dotnet/ko/System.Net.WebHeaderCollection.xml", + "ref/dotnet/ru/System.Net.WebHeaderCollection.xml", + "ref/dotnet/System.Net.WebHeaderCollection.dll", + "ref/dotnet/System.Net.WebHeaderCollection.xml", + "ref/dotnet/zh-hans/System.Net.WebHeaderCollection.xml", + "ref/dotnet/zh-hant/System.Net.WebHeaderCollection.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Net.WebHeaderCollection.nuspec" + ] + }, + "System.Numerics.Vectors/4.1.0": { + "sha512": "jpubR06GWPoZA0oU5xLM7kHeV59/CKPBXZk4Jfhi0T3DafxbrdueHZ8kXlb+Fb5nd3DAyyMh2/eqEzLX0xv6Qg==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.Numerics.Vectors.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/e501a8a91f4a4138bd1d134abcc769b0.psmdcp", + "ref/dotnet/System.Numerics.Vectors.dll", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Numerics.Vectors.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Numerics.Vectors.nuspec" + ] + }, + "System.Numerics.Vectors.WindowsRuntime/4.0.0": { + "sha512": "Ly7GvoPFZq6GyfZpfS0E7uCk1cinl5BANAngXVuau3lD2QqZJMHitzlPv6n1FlIn6krfv99X2IPkIaVzUwDHXA==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll", + "package/services/metadata/core-properties/6db0e2464a274e8eb688cd193eb37876.psmdcp", + "System.Numerics.Vectors.WindowsRuntime.nuspec" + ] + }, + "System.ObjectModel/4.0.10": { + "sha512": "Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.ObjectModel.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/36c2aaa0c5d24949a7707921f36ee13f.psmdcp", + "ref/dotnet/de/System.ObjectModel.xml", + "ref/dotnet/es/System.ObjectModel.xml", + "ref/dotnet/fr/System.ObjectModel.xml", + "ref/dotnet/it/System.ObjectModel.xml", + "ref/dotnet/ja/System.ObjectModel.xml", + "ref/dotnet/ko/System.ObjectModel.xml", + "ref/dotnet/ru/System.ObjectModel.xml", + "ref/dotnet/System.ObjectModel.dll", + "ref/dotnet/System.ObjectModel.xml", + "ref/dotnet/zh-hans/System.ObjectModel.xml", + "ref/dotnet/zh-hant/System.ObjectModel.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ObjectModel.nuspec" + ] + }, + "System.Private.DataContractSerialization/4.0.0": { + "sha512": "uQvzoXHXHn/9YqUmPtgD8ZPJIlBuuL3QHegbuik97W/umoI28fOnGLnvjRHhju1VMWvFLRQoh7uZkBaoZ+KpVQ==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Private.DataContractSerialization.dll", + "lib/netcore50/System.Private.DataContractSerialization.dll", + "package/services/metadata/core-properties/124ac81dfe1e4d08942831c90a93a6ba.psmdcp", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll", + "System.Private.DataContractSerialization.nuspec" + ] + }, + "System.Private.Networking/4.0.0": { + "sha512": "RUEqdBdJjISC65dO8l4LdN7vTdlXH+attUpKnauDUHVtLbIKdlDB9LKoLzCQsTQRP7vzUJHWYXznHJBkjAA7yA==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Private.Networking.dll", + "lib/netcore50/System.Private.Networking.dll", + "package/services/metadata/core-properties/b57bed5f606b4402bbdf153fcf3df3ae.psmdcp", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.Networking.nuspec" + ] + }, + "System.Private.ServiceModel/4.0.0": { + "sha512": "cm2wEa1f9kuUq/2k8uIwepgZJi5HdxXSnjGQIeXmAb7RaWfZPEC/iamv9GJ67b5LPnCZHR0KvtFqh82e8AAYSw==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Private.ServiceModel.dll", + "lib/netcore50/System.Private.ServiceModel.dll", + "package/services/metadata/core-properties/5668af7c10764fafb51182a583dfb872.psmdcp", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "System.Private.ServiceModel.nuspec" + ] + }, + "System.Private.Uri/4.0.0": { + "sha512": "CtuxaCKcRIvPcsqquVl3mPp79EDZPMr2UogfiFCxCs+t2z1VjbpQsKNs1GHZ8VQetqbk1mr0V1yAfMe6y8CHDA==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Private.Uri.dll", + "lib/netcore50/System.Private.Uri.dll", + "package/services/metadata/core-properties/86377e21a22d44bbba860094428d894c.psmdcp", + "ref/dnxcore50/_._", + "ref/netcore50/_._", + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "System.Private.Uri.nuspec" + ] + }, + "System.Reflection/4.0.10": { + "sha512": "WZ+4lEE4gqGx6mrqLhSiW4oi6QLPWwdNjzhhTONmhELOrW8Cw9phlO9tltgvRUuQUqYtBiliFwhO5S5fCJElVw==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Reflection.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Reflection.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/84d992ce164945bfa10835e447244fb1.psmdcp", + "ref/dotnet/de/System.Reflection.xml", + "ref/dotnet/es/System.Reflection.xml", + "ref/dotnet/fr/System.Reflection.xml", + "ref/dotnet/it/System.Reflection.xml", + "ref/dotnet/ja/System.Reflection.xml", + "ref/dotnet/ko/System.Reflection.xml", + "ref/dotnet/ru/System.Reflection.xml", + "ref/dotnet/System.Reflection.dll", + "ref/dotnet/System.Reflection.xml", + "ref/dotnet/zh-hans/System.Reflection.xml", + "ref/dotnet/zh-hant/System.Reflection.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "System.Reflection.nuspec" + ] + }, + "System.Reflection.Context/4.0.0": { + "sha512": "Gz4sUHHFd/52RjHccSHbOXdujJEWKfL3gIaA+ekxvQaQfJGbI2tPzA0Uv3WTCTDRGHgtoNq5WS9E007Dt4P/VQ==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Context.dll", + "lib/win8/_._", + "package/services/metadata/core-properties/263ca61f1b594d9395e210a55a8fe7a7.psmdcp", + "ref/dotnet/de/System.Reflection.Context.xml", + "ref/dotnet/es/System.Reflection.Context.xml", + "ref/dotnet/fr/System.Reflection.Context.xml", + "ref/dotnet/it/System.Reflection.Context.xml", + "ref/dotnet/ja/System.Reflection.Context.xml", + "ref/dotnet/ko/System.Reflection.Context.xml", + "ref/dotnet/ru/System.Reflection.Context.xml", + "ref/dotnet/System.Reflection.Context.dll", + "ref/dotnet/System.Reflection.Context.xml", + "ref/dotnet/zh-hans/System.Reflection.Context.xml", + "ref/dotnet/zh-hant/System.Reflection.Context.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Context.dll", + "ref/netcore50/System.Reflection.Context.xml", + "ref/win8/_._", + "System.Reflection.Context.nuspec" + ] + }, + "System.Reflection.DispatchProxy/4.0.0": { + "sha512": "Kd/4o6DqBfJA4058X8oGEu1KlT8Ej0A+WGeoQgZU2h+3f2vC8NRbHxeOSZvxj9/MPZ1RYmZMGL1ApO9xG/4IVA==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Reflection.DispatchProxy.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.DispatchProxy.dll", + "lib/netcore50/System.Reflection.DispatchProxy.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/1e015137cc52490b9dcde73fb35dee23.psmdcp", + "ref/dotnet/de/System.Reflection.DispatchProxy.xml", + "ref/dotnet/es/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/System.Reflection.DispatchProxy.dll", + "ref/dotnet/System.Reflection.DispatchProxy.xml", + "ref/dotnet/zh-hans/System.Reflection.DispatchProxy.xml", + "ref/dotnet/zh-hant/System.Reflection.DispatchProxy.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll", + "System.Reflection.DispatchProxy.nuspec" + ] + }, + "System.Reflection.Emit/4.0.0": { + "sha512": "CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Reflection.Emit.dll", + "lib/MonoAndroid10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/f6dc998f8a6b43d7b08f33375407a384.psmdcp", + "ref/dotnet/de/System.Reflection.Emit.xml", + "ref/dotnet/es/System.Reflection.Emit.xml", + "ref/dotnet/fr/System.Reflection.Emit.xml", + "ref/dotnet/it/System.Reflection.Emit.xml", + "ref/dotnet/ja/System.Reflection.Emit.xml", + "ref/dotnet/ko/System.Reflection.Emit.xml", + "ref/dotnet/ru/System.Reflection.Emit.xml", + "ref/dotnet/System.Reflection.Emit.dll", + "ref/dotnet/System.Reflection.Emit.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.xml", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/xamarinmac20/_._", + "System.Reflection.Emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.0": { + "sha512": "02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/wp80/_._", + "package/services/metadata/core-properties/d044dd882ed2456486ddb05f1dd0420f.psmdcp", + "ref/dotnet/de/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/es/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/it/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/System.Reflection.Emit.ILGeneration.dll", + "ref/dotnet/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/net45/_._", + "ref/wp80/_._", + "System.Reflection.Emit.ILGeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.0.0": { + "sha512": "DJZhHiOdkN08xJgsJfDjkuOreLLmMcU8qkEEqEHqyhkPUZMMQs0lE8R+6+68BAFWgcdzxtNu0YmIOtEug8j00w==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/wp80/_._", + "package/services/metadata/core-properties/52abced289cd46eebf8599b9b4c1c67b.psmdcp", + "ref/dotnet/de/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/es/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/fr/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/it/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/ja/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/ko/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/ru/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/System.Reflection.Emit.Lightweight.dll", + "ref/dotnet/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/dotnet/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/net45/_._", + "ref/wp80/_._", + "System.Reflection.Emit.Lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.0": { + "sha512": "dbYaZWCyFAu1TGYUqR2n+Q+1casSHPR2vVW0WVNkXpZbrd2BXcZ7cpvpu9C98CTHtNmyfMWCLpCclDqly23t6A==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Reflection.Extensions.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Extensions.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "package/services/metadata/core-properties/0bcc335e1ef540948aef9032aca08bb2.psmdcp", + "ref/dotnet/de/System.Reflection.Extensions.xml", + "ref/dotnet/es/System.Reflection.Extensions.xml", + "ref/dotnet/fr/System.Reflection.Extensions.xml", + "ref/dotnet/it/System.Reflection.Extensions.xml", + "ref/dotnet/ja/System.Reflection.Extensions.xml", + "ref/dotnet/ko/System.Reflection.Extensions.xml", + "ref/dotnet/ru/System.Reflection.Extensions.xml", + "ref/dotnet/System.Reflection.Extensions.dll", + "ref/dotnet/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hans/System.Reflection.Extensions.xml", + "ref/dotnet/zh-hant/System.Reflection.Extensions.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "System.Reflection.Extensions.nuspec" + ] + }, + "System.Reflection.Metadata/1.0.22": { + "sha512": "ltoL/teiEdy5W9fyYdtFr2xJ/4nHyksXLK9dkPWx3ubnj7BVfsSWxvWTg9EaJUXjhWvS/AeTtugZA1/IDQyaPQ==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.Reflection.Metadata.dll", + "lib/dotnet/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "package/services/metadata/core-properties/2ad78f291fda48d1847edf84e50139e6.psmdcp", + "System.Reflection.Metadata.nuspec" + ] + }, + "System.Reflection.Primitives/4.0.0": { + "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Reflection.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Primitives.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "package/services/metadata/core-properties/7070509f3bfd418d859635361251dab0.psmdcp", + "ref/dotnet/de/System.Reflection.Primitives.xml", + "ref/dotnet/es/System.Reflection.Primitives.xml", + "ref/dotnet/fr/System.Reflection.Primitives.xml", + "ref/dotnet/it/System.Reflection.Primitives.xml", + "ref/dotnet/ja/System.Reflection.Primitives.xml", + "ref/dotnet/ko/System.Reflection.Primitives.xml", + "ref/dotnet/ru/System.Reflection.Primitives.xml", + "ref/dotnet/System.Reflection.Primitives.dll", + "ref/dotnet/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hans/System.Reflection.Primitives.xml", + "ref/dotnet/zh-hant/System.Reflection.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "System.Reflection.Primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.0.0": { + "sha512": "YRM/msNAM86hdxPyXcuZSzmTO0RQFh7YMEPBLTY8cqXvFPYIx2x99bOyPkuU81wRYQem1c1HTkImQ2DjbOBfew==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Reflection.TypeExtensions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/a37798ee61124eb7b6c56400aee24da1.psmdcp", + "ref/dotnet/de/System.Reflection.TypeExtensions.xml", + "ref/dotnet/es/System.Reflection.TypeExtensions.xml", + "ref/dotnet/fr/System.Reflection.TypeExtensions.xml", + "ref/dotnet/it/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ja/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ko/System.Reflection.TypeExtensions.xml", + "ref/dotnet/ru/System.Reflection.TypeExtensions.xml", + "ref/dotnet/System.Reflection.TypeExtensions.dll", + "ref/dotnet/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/dotnet/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "System.Reflection.TypeExtensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.0": { + "sha512": "qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Resources.ResourceManager.dll", + "lib/net45/_._", + "lib/netcore50/System.Resources.ResourceManager.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "package/services/metadata/core-properties/657a73ee3f09479c9fedb9538ade8eac.psmdcp", + "ref/dotnet/de/System.Resources.ResourceManager.xml", + "ref/dotnet/es/System.Resources.ResourceManager.xml", + "ref/dotnet/fr/System.Resources.ResourceManager.xml", + "ref/dotnet/it/System.Resources.ResourceManager.xml", + "ref/dotnet/ja/System.Resources.ResourceManager.xml", + "ref/dotnet/ko/System.Resources.ResourceManager.xml", + "ref/dotnet/ru/System.Resources.ResourceManager.xml", + "ref/dotnet/System.Resources.ResourceManager.dll", + "ref/dotnet/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hans/System.Resources.ResourceManager.xml", + "ref/dotnet/zh-hant/System.Resources.ResourceManager.xml", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "System.Resources.ResourceManager.nuspec" + ] + }, + "System.Runtime/4.0.20": { + "sha512": "X7N/9Bz7jVPorqdVFO86ns1sX6MlQM+WTxELtx+Z4VG45x9+LKmWH0GRqjgKprUnVuwmfB9EJ9DQng14Z7/zwg==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Runtime.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Runtime.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/d1ded52f75da4446b1c962f9292aa3ef.psmdcp", + "ref/dotnet/de/System.Runtime.xml", + "ref/dotnet/es/System.Runtime.xml", + "ref/dotnet/fr/System.Runtime.xml", + "ref/dotnet/it/System.Runtime.xml", + "ref/dotnet/ja/System.Runtime.xml", + "ref/dotnet/ko/System.Runtime.xml", + "ref/dotnet/ru/System.Runtime.xml", + "ref/dotnet/System.Runtime.dll", + "ref/dotnet/System.Runtime.xml", + "ref/dotnet/zh-hans/System.Runtime.xml", + "ref/dotnet/zh-hant/System.Runtime.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "System.Runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.0.10": { + "sha512": "5dsEwf3Iml7d5OZeT20iyOjT+r+okWpN7xI2v+R4cgd3WSj4DeRPTvPFjDpacbVW4skCAZ8B9hxXJYgkCFKJ1A==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Runtime.Extensions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/c7fee76a13d04c7ea49fb1a24c184f37.psmdcp", + "ref/dotnet/de/System.Runtime.Extensions.xml", + "ref/dotnet/es/System.Runtime.Extensions.xml", + "ref/dotnet/fr/System.Runtime.Extensions.xml", + "ref/dotnet/it/System.Runtime.Extensions.xml", + "ref/dotnet/ja/System.Runtime.Extensions.xml", + "ref/dotnet/ko/System.Runtime.Extensions.xml", + "ref/dotnet/ru/System.Runtime.Extensions.xml", + "ref/dotnet/System.Runtime.Extensions.dll", + "ref/dotnet/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hans/System.Runtime.Extensions.xml", + "ref/dotnet/zh-hant/System.Runtime.Extensions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "System.Runtime.Extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.0": { + "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Runtime.Handles.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Handles.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/da57aa32ff2441d1acfe85bee4f101ab.psmdcp", + "ref/dotnet/de/System.Runtime.Handles.xml", + "ref/dotnet/es/System.Runtime.Handles.xml", + "ref/dotnet/fr/System.Runtime.Handles.xml", + "ref/dotnet/it/System.Runtime.Handles.xml", + "ref/dotnet/ja/System.Runtime.Handles.xml", + "ref/dotnet/ko/System.Runtime.Handles.xml", + "ref/dotnet/ru/System.Runtime.Handles.xml", + "ref/dotnet/System.Runtime.Handles.dll", + "ref/dotnet/System.Runtime.Handles.xml", + "ref/dotnet/zh-hans/System.Runtime.Handles.xml", + "ref/dotnet/zh-hant/System.Runtime.Handles.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "System.Runtime.Handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.0.20": { + "sha512": "ZgDyBYfEnjWoz/viS6VOswA6XOkDSH2DzgbpczbW50RywhnCgTl+w3JEvtAiOGyIh8cyx1NJq80jsNBSUr8Pig==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Runtime.InteropServices.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Runtime.InteropServices.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/78e7f61876374acba2a95834f272d262.psmdcp", + "ref/dotnet/de/System.Runtime.InteropServices.xml", + "ref/dotnet/es/System.Runtime.InteropServices.xml", + "ref/dotnet/fr/System.Runtime.InteropServices.xml", + "ref/dotnet/it/System.Runtime.InteropServices.xml", + "ref/dotnet/ja/System.Runtime.InteropServices.xml", + "ref/dotnet/ko/System.Runtime.InteropServices.xml", + "ref/dotnet/ru/System.Runtime.InteropServices.xml", + "ref/dotnet/System.Runtime.InteropServices.dll", + "ref/dotnet/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hans/System.Runtime.InteropServices.xml", + "ref/dotnet/zh-hant/System.Runtime.InteropServices.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "System.Runtime.InteropServices.nuspec" + ] + }, + "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { + "sha512": "K5MGSvw/sGPKQYdOVqSpsVbHBE8HccHIDEhUNjM1lui65KGF/slNZfijGU87ggQiVXTI802ebKiOYBkwiLotow==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/net45/_._", + "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "package/services/metadata/core-properties/3c944c6b4d6044d28ee80e49a09300c9.psmdcp", + "ref/dotnet/de/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/dotnet/es/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/System.Runtime.InteropServices.WindowsRuntime.dll", + "ref/dotnet/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/dotnet/zh-hans/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/dotnet/zh-hant/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/net45/_._", + "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll", + "ref/netcore50/System.Runtime.InteropServices.WindowsRuntime.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll", + "System.Runtime.InteropServices.WindowsRuntime.nuspec" + ] + }, + "System.Runtime.Numerics/4.0.0": { + "sha512": "aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.Runtime.Numerics.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "package/services/metadata/core-properties/2e43dbd3dfbf4af5bb74bedaf3a67bd5.psmdcp", + "ref/dotnet/de/System.Runtime.Numerics.xml", + "ref/dotnet/es/System.Runtime.Numerics.xml", + "ref/dotnet/fr/System.Runtime.Numerics.xml", + "ref/dotnet/it/System.Runtime.Numerics.xml", + "ref/dotnet/ja/System.Runtime.Numerics.xml", + "ref/dotnet/ko/System.Runtime.Numerics.xml", + "ref/dotnet/ru/System.Runtime.Numerics.xml", + "ref/dotnet/System.Runtime.Numerics.dll", + "ref/dotnet/System.Runtime.Numerics.xml", + "ref/dotnet/zh-hans/System.Runtime.Numerics.xml", + "ref/dotnet/zh-hant/System.Runtime.Numerics.xml", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "System.Runtime.Numerics.nuspec" + ] + }, + "System.Runtime.Serialization.Json/4.0.0": { + "sha512": "emhWMQP3sdtkAhD0TOeP3FfjS57sfQMQ2sqA6f2Yj5Gd9jkHV4KsQ2TsoJjghca6d8fur7+REQ6ILBXVdGf/0g==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Runtime.Serialization.Json.dll", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Serialization.Json.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "package/services/metadata/core-properties/2c520ff333ad4bde986eb7a015ba6343.psmdcp", + "ref/dotnet/de/System.Runtime.Serialization.Json.xml", + "ref/dotnet/es/System.Runtime.Serialization.Json.xml", + "ref/dotnet/fr/System.Runtime.Serialization.Json.xml", + "ref/dotnet/it/System.Runtime.Serialization.Json.xml", + "ref/dotnet/ja/System.Runtime.Serialization.Json.xml", + "ref/dotnet/ko/System.Runtime.Serialization.Json.xml", + "ref/dotnet/ru/System.Runtime.Serialization.Json.xml", + "ref/dotnet/System.Runtime.Serialization.Json.dll", + "ref/dotnet/System.Runtime.Serialization.Json.xml", + "ref/dotnet/zh-hans/System.Runtime.Serialization.Json.xml", + "ref/dotnet/zh-hant/System.Runtime.Serialization.Json.xml", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Serialization.Json.dll", + "ref/netcore50/System.Runtime.Serialization.Json.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll", + "System.Runtime.Serialization.Json.nuspec" + ] + }, + "System.Runtime.Serialization.Primitives/4.0.10": { + "sha512": "NPc8DZIomf5tGjYtz/KTHI01IPcVlypfhCux32AbLPDjTotdvL8TpKRwMyQJ6Kh08yprRVH7uBD1PdJiuoFzag==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.Runtime.Serialization.Primitives.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/92e70054da8743d68462736e85fe5580.psmdcp", + "ref/dotnet/de/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/es/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/fr/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/it/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/ja/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/ko/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/ru/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/System.Runtime.Serialization.Primitives.dll", + "ref/dotnet/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/dotnet/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Runtime.Serialization.Primitives.nuspec" + ] + }, + "System.Runtime.Serialization.Xml/4.0.10": { + "sha512": "xsy7XbH8RTpKoDPNcibSGCOpujsmwUmOWAby3PssqkZFpLBXUbDO2s6JKITRjxejET2g0PK8t+mdIvu3xmUuKA==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Runtime.Serialization.Xml.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Runtime.Serialization.Xml.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/7d99189e9ae248c9a98d9fc3ccdc5130.psmdcp", + "ref/dotnet/de/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/es/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/fr/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/it/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/ja/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/ko/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/ru/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/System.Runtime.Serialization.Xml.dll", + "ref/dotnet/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/zh-hans/System.Runtime.Serialization.Xml.xml", + "ref/dotnet/zh-hant/System.Runtime.Serialization.Xml.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll", + "System.Runtime.Serialization.Xml.nuspec" + ] + }, + "System.Runtime.WindowsRuntime/4.0.10": { + "sha512": "9w6ypdnEw8RrLRlxTbLAYrap4eL1xIQeNoOaumQVOQ8TTD/5g9FGrBtY3KLiGxAPieN9AwAAEIDkugU85Cwuvg==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/netcore50/System.Runtime.WindowsRuntime.dll", + "lib/win81/_._", + "lib/wpa81/_._", + "package/services/metadata/core-properties/a81cabb2b7e843ce801ecf91886941d4.psmdcp", + "ref/dotnet/de/System.Runtime.WindowsRuntime.xml", + "ref/dotnet/es/System.Runtime.WindowsRuntime.xml", + "ref/dotnet/fr/System.Runtime.WindowsRuntime.xml", + "ref/dotnet/it/System.Runtime.WindowsRuntime.xml", + "ref/dotnet/ja/System.Runtime.WindowsRuntime.xml", + "ref/dotnet/ko/System.Runtime.WindowsRuntime.xml", + "ref/dotnet/ru/System.Runtime.WindowsRuntime.xml", + "ref/dotnet/System.Runtime.WindowsRuntime.dll", + "ref/dotnet/System.Runtime.WindowsRuntime.xml", + "ref/dotnet/zh-hans/System.Runtime.WindowsRuntime.xml", + "ref/dotnet/zh-hant/System.Runtime.WindowsRuntime.xml", + "ref/netcore50/System.Runtime.WindowsRuntime.dll", + "ref/netcore50/System.Runtime.WindowsRuntime.xml", + "ref/win81/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll", + "System.Runtime.WindowsRuntime.nuspec" + ] + }, + "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { + "sha512": "2GY3fkXBMQOyyO9ovaH46CN6MD2ck/Gvk4VNAgVDvtmfO3HXYFNd+bB05WhVcJrHKbfKZNwfwZKpYZ+OsVFsLw==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "package/services/metadata/core-properties/0f3b84a81b7a4a97aa765ed058bf6c20.psmdcp", + "ref/dotnet/de/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/dotnet/es/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/dotnet/fr/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/dotnet/it/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/dotnet/ja/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/dotnet/ko/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/dotnet/ru/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/dotnet/System.Runtime.WindowsRuntime.UI.Xaml.dll", + "ref/dotnet/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/dotnet/zh-hans/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/dotnet/zh-hant/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll", + "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "System.Runtime.WindowsRuntime.UI.Xaml.nuspec" + ] + }, + "System.Security.Claims/4.0.0": { + "sha512": "94NFR/7JN3YdyTH7hl2iSvYmdA8aqShriTHectcK+EbizT71YczMaG6LuqJBQP/HWo66AQyikYYM9aw+4EzGXg==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.Security.Claims.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Claims.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/b682071d85754e6793ca9777ffabaf8a.psmdcp", + "ref/dotnet/de/System.Security.Claims.xml", + "ref/dotnet/es/System.Security.Claims.xml", + "ref/dotnet/fr/System.Security.Claims.xml", + "ref/dotnet/it/System.Security.Claims.xml", + "ref/dotnet/ja/System.Security.Claims.xml", + "ref/dotnet/ko/System.Security.Claims.xml", + "ref/dotnet/ru/System.Security.Claims.xml", + "ref/dotnet/System.Security.Claims.dll", + "ref/dotnet/System.Security.Claims.xml", + "ref/dotnet/zh-hans/System.Security.Claims.xml", + "ref/dotnet/zh-hant/System.Security.Claims.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Claims.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Security.Claims.nuspec" + ] + }, + "System.Security.Principal/4.0.0": { + "sha512": "FOhq3jUOONi6fp5j3nPYJMrKtSJlqAURpjiO3FaDIV4DJNEYymWW5uh1pfxySEB8dtAW+I66IypzNge/w9OzZQ==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.Security.Principal.dll", + "lib/net45/_._", + "lib/netcore50/System.Security.Principal.dll", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "package/services/metadata/core-properties/5d44fbabc99d4204b6a2f76329d0a184.psmdcp", + "ref/dotnet/de/System.Security.Principal.xml", + "ref/dotnet/es/System.Security.Principal.xml", + "ref/dotnet/fr/System.Security.Principal.xml", + "ref/dotnet/it/System.Security.Principal.xml", + "ref/dotnet/ja/System.Security.Principal.xml", + "ref/dotnet/ko/System.Security.Principal.xml", + "ref/dotnet/ru/System.Security.Principal.xml", + "ref/dotnet/System.Security.Principal.dll", + "ref/dotnet/System.Security.Principal.xml", + "ref/dotnet/zh-hans/System.Security.Principal.xml", + "ref/dotnet/zh-hant/System.Security.Principal.xml", + "ref/net45/_._", + "ref/netcore50/System.Security.Principal.dll", + "ref/netcore50/System.Security.Principal.xml", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "System.Security.Principal.nuspec" + ] + }, + "System.ServiceModel.Duplex/4.0.0": { + "sha512": "JFeDn+IsiwAVJkNNnM7MLefJOnzYhovaHnjk3lzEnUWkYZJeAKrcgLdK6GE2GNjb5mEV8Pad/E0JcA8eCr3eWQ==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.ServiceModel.Duplex.dll", + "lib/net45/_._", + "lib/netcore50/System.ServiceModel.Duplex.dll", + "lib/win8/_._", + "package/services/metadata/core-properties/8a542ab34ffb4a13958ce3d7279d9dae.psmdcp", + "ref/dotnet/de/System.ServiceModel.Duplex.xml", + "ref/dotnet/es/System.ServiceModel.Duplex.xml", + "ref/dotnet/fr/System.ServiceModel.Duplex.xml", + "ref/dotnet/it/System.ServiceModel.Duplex.xml", + "ref/dotnet/ja/System.ServiceModel.Duplex.xml", + "ref/dotnet/ko/System.ServiceModel.Duplex.xml", + "ref/dotnet/ru/System.ServiceModel.Duplex.xml", + "ref/dotnet/System.ServiceModel.Duplex.dll", + "ref/dotnet/System.ServiceModel.Duplex.xml", + "ref/dotnet/zh-hans/System.ServiceModel.Duplex.xml", + "ref/dotnet/zh-hant/System.ServiceModel.Duplex.xml", + "ref/net45/_._", + "ref/netcore50/System.ServiceModel.Duplex.dll", + "ref/netcore50/System.ServiceModel.Duplex.xml", + "ref/win8/_._", + "System.ServiceModel.Duplex.nuspec" + ] + }, + "System.ServiceModel.Http/4.0.10": { + "sha512": "Vyl7lmvMlXJamtnDugoXuAgAQGSqtA7omK3zDBYByhbYeBC2hRBchgyXox7e5vEO+29TeB1IpoLWQGb7tO9h6A==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.ServiceModel.Http.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.ServiceModel.Http.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/da6bab8a73fb4ac9af198a5f70d8aa64.psmdcp", + "ref/dotnet/de/System.ServiceModel.Http.xml", + "ref/dotnet/es/System.ServiceModel.Http.xml", + "ref/dotnet/fr/System.ServiceModel.Http.xml", + "ref/dotnet/it/System.ServiceModel.Http.xml", + "ref/dotnet/ja/System.ServiceModel.Http.xml", + "ref/dotnet/ko/System.ServiceModel.Http.xml", + "ref/dotnet/ru/System.ServiceModel.Http.xml", + "ref/dotnet/System.ServiceModel.Http.dll", + "ref/dotnet/System.ServiceModel.Http.xml", + "ref/dotnet/zh-hans/System.ServiceModel.Http.xml", + "ref/dotnet/zh-hant/System.ServiceModel.Http.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.ServiceModel.Http.nuspec" + ] + }, + "System.ServiceModel.NetTcp/4.0.0": { + "sha512": "lV2Cdcso9jOS0KBtgHZHzTLe/Lx/ERdPcvF4dlepUie6/+BOMYTOgg2C7OdpIjp3fwUNXq8nhU+IilmEyjuf/A==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.ServiceModel.NetTcp.dll", + "lib/net45/_._", + "lib/netcore50/System.ServiceModel.NetTcp.dll", + "lib/win8/_._", + "package/services/metadata/core-properties/024bb3a15d5444e2b8b485ce4cf44640.psmdcp", + "ref/dotnet/de/System.ServiceModel.NetTcp.xml", + "ref/dotnet/es/System.ServiceModel.NetTcp.xml", + "ref/dotnet/fr/System.ServiceModel.NetTcp.xml", + "ref/dotnet/it/System.ServiceModel.NetTcp.xml", + "ref/dotnet/ja/System.ServiceModel.NetTcp.xml", + "ref/dotnet/ko/System.ServiceModel.NetTcp.xml", + "ref/dotnet/ru/System.ServiceModel.NetTcp.xml", + "ref/dotnet/System.ServiceModel.NetTcp.dll", + "ref/dotnet/System.ServiceModel.NetTcp.xml", + "ref/dotnet/zh-hans/System.ServiceModel.NetTcp.xml", + "ref/dotnet/zh-hant/System.ServiceModel.NetTcp.xml", + "ref/net45/_._", + "ref/netcore50/System.ServiceModel.NetTcp.dll", + "ref/netcore50/System.ServiceModel.NetTcp.xml", + "ref/win8/_._", + "System.ServiceModel.NetTcp.nuspec" + ] + }, + "System.ServiceModel.Primitives/4.0.0": { + "sha512": "uF5VYQWR07LgiZkzUr8qjwvqOaIAfwU566MneD4WuC14d8FLJNsAgCJUYhBGB7COjH7HTqnP9ZFmr6c+L83Stg==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.ServiceModel.Primitives.dll", + "lib/net45/_._", + "lib/netcore50/System.ServiceModel.Primitives.dll", + "lib/win8/_._", + "package/services/metadata/core-properties/551694f534894508bee57aba617484c9.psmdcp", + "ref/dotnet/de/System.ServiceModel.Primitives.xml", + "ref/dotnet/es/System.ServiceModel.Primitives.xml", + "ref/dotnet/fr/System.ServiceModel.Primitives.xml", + "ref/dotnet/it/System.ServiceModel.Primitives.xml", + "ref/dotnet/ja/System.ServiceModel.Primitives.xml", + "ref/dotnet/ko/System.ServiceModel.Primitives.xml", + "ref/dotnet/ru/System.ServiceModel.Primitives.xml", + "ref/dotnet/System.ServiceModel.Primitives.dll", + "ref/dotnet/System.ServiceModel.Primitives.xml", + "ref/dotnet/zh-hans/System.ServiceModel.Primitives.xml", + "ref/dotnet/zh-hant/System.ServiceModel.Primitives.xml", + "ref/net45/_._", + "ref/netcore50/System.ServiceModel.Primitives.dll", + "ref/netcore50/System.ServiceModel.Primitives.xml", + "ref/win8/_._", + "System.ServiceModel.Primitives.nuspec" + ] + }, + "System.ServiceModel.Security/4.0.0": { + "sha512": "sPVzsnd8w/TJsW/4sYA9eIGP+RtlpN0AhKLGKf9ywdGGmHPi0kkuX2mx412dM3GN0e4oifuISwvZqby/sI8Feg==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.ServiceModel.Security.dll", + "lib/net45/_._", + "lib/netcore50/System.ServiceModel.Security.dll", + "lib/win8/_._", + "package/services/metadata/core-properties/724a153019f4439f95c814a98c7503f4.psmdcp", + "ref/dotnet/de/System.ServiceModel.Security.xml", + "ref/dotnet/es/System.ServiceModel.Security.xml", + "ref/dotnet/fr/System.ServiceModel.Security.xml", + "ref/dotnet/it/System.ServiceModel.Security.xml", + "ref/dotnet/ja/System.ServiceModel.Security.xml", + "ref/dotnet/ko/System.ServiceModel.Security.xml", + "ref/dotnet/ru/System.ServiceModel.Security.xml", + "ref/dotnet/System.ServiceModel.Security.dll", + "ref/dotnet/System.ServiceModel.Security.xml", + "ref/dotnet/zh-hans/System.ServiceModel.Security.xml", + "ref/dotnet/zh-hant/System.ServiceModel.Security.xml", + "ref/net45/_._", + "ref/netcore50/System.ServiceModel.Security.dll", + "ref/netcore50/System.ServiceModel.Security.xml", + "ref/win8/_._", + "System.ServiceModel.Security.nuspec" + ] + }, + "System.Text.Encoding/4.0.10": { + "sha512": "fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Text.Encoding.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/829e172aadac4937a5a6a4b386855282.psmdcp", + "ref/dotnet/de/System.Text.Encoding.xml", + "ref/dotnet/es/System.Text.Encoding.xml", + "ref/dotnet/fr/System.Text.Encoding.xml", + "ref/dotnet/it/System.Text.Encoding.xml", + "ref/dotnet/ja/System.Text.Encoding.xml", + "ref/dotnet/ko/System.Text.Encoding.xml", + "ref/dotnet/ru/System.Text.Encoding.xml", + "ref/dotnet/System.Text.Encoding.dll", + "ref/dotnet/System.Text.Encoding.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "System.Text.Encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/4.0.0": { + "sha512": "ZHBTr1AXLjY9OuYR7pKx5xfN6QFye1kgd5QAbGrvfCOu7yxRnJs3VUaxERe1fOlnF0mi/xD/Dvb3T3x3HNuPWQ==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.Text.Encoding.CodePages.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/8a616349cf5c4e6ba7634969c080759b.psmdcp", + "ref/dotnet/de/System.Text.Encoding.CodePages.xml", + "ref/dotnet/es/System.Text.Encoding.CodePages.xml", + "ref/dotnet/fr/System.Text.Encoding.CodePages.xml", + "ref/dotnet/it/System.Text.Encoding.CodePages.xml", + "ref/dotnet/ja/System.Text.Encoding.CodePages.xml", + "ref/dotnet/ko/System.Text.Encoding.CodePages.xml", + "ref/dotnet/ru/System.Text.Encoding.CodePages.xml", + "ref/dotnet/System.Text.Encoding.CodePages.dll", + "ref/dotnet/System.Text.Encoding.CodePages.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.CodePages.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.CodePages.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Text.Encoding.CodePages.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.10": { + "sha512": "TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Text.Encoding.Extensions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Text.Encoding.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/894d51cf918c4bca91e81a732d958707.psmdcp", + "ref/dotnet/de/System.Text.Encoding.Extensions.xml", + "ref/dotnet/es/System.Text.Encoding.Extensions.xml", + "ref/dotnet/fr/System.Text.Encoding.Extensions.xml", + "ref/dotnet/it/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ja/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ko/System.Text.Encoding.Extensions.xml", + "ref/dotnet/ru/System.Text.Encoding.Extensions.xml", + "ref/dotnet/System.Text.Encoding.Extensions.dll", + "ref/dotnet/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/dotnet/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "System.Text.Encoding.Extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.0.10": { + "sha512": "0vDuHXJePpfMCecWBNOabOKCvzfTbFMNcGgklt3l5+RqHV5SzmF7RUVpuet8V0rJX30ROlL66xdehw2Rdsn2DA==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.Text.RegularExpressions.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/548eb1bd139e4c8cbc55e9f7f4f404dd.psmdcp", + "ref/dotnet/de/System.Text.RegularExpressions.xml", + "ref/dotnet/es/System.Text.RegularExpressions.xml", + "ref/dotnet/fr/System.Text.RegularExpressions.xml", + "ref/dotnet/it/System.Text.RegularExpressions.xml", + "ref/dotnet/ja/System.Text.RegularExpressions.xml", + "ref/dotnet/ko/System.Text.RegularExpressions.xml", + "ref/dotnet/ru/System.Text.RegularExpressions.xml", + "ref/dotnet/System.Text.RegularExpressions.dll", + "ref/dotnet/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hans/System.Text.RegularExpressions.xml", + "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Text.RegularExpressions.nuspec" + ] + }, + "System.Threading/4.0.10": { + "sha512": "0w6pRxIEE7wuiOJeKabkDgeIKmqf4ER1VNrs6qFwHnooEE78yHwi/bKkg5Jo8/pzGLm0xQJw0nEmPXt1QBAIUA==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Threading.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Threading.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/c17c3791d8fa4efbb8aded2ca8c71fbe.psmdcp", + "ref/dotnet/de/System.Threading.xml", + "ref/dotnet/es/System.Threading.xml", + "ref/dotnet/fr/System.Threading.xml", + "ref/dotnet/it/System.Threading.xml", + "ref/dotnet/ja/System.Threading.xml", + "ref/dotnet/ko/System.Threading.xml", + "ref/dotnet/ru/System.Threading.xml", + "ref/dotnet/System.Threading.dll", + "ref/dotnet/System.Threading.xml", + "ref/dotnet/zh-hans/System.Threading.xml", + "ref/dotnet/zh-hant/System.Threading.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "System.Threading.nuspec" + ] + }, + "System.Threading.Overlapped/4.0.0": { + "sha512": "X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Threading.Overlapped.dll", + "lib/net46/System.Threading.Overlapped.dll", + "lib/netcore50/System.Threading.Overlapped.dll", + "package/services/metadata/core-properties/e9846a81e829434aafa4ae2e8c3517d7.psmdcp", + "ref/dotnet/de/System.Threading.Overlapped.xml", + "ref/dotnet/es/System.Threading.Overlapped.xml", + "ref/dotnet/fr/System.Threading.Overlapped.xml", + "ref/dotnet/it/System.Threading.Overlapped.xml", + "ref/dotnet/ja/System.Threading.Overlapped.xml", + "ref/dotnet/ko/System.Threading.Overlapped.xml", + "ref/dotnet/ru/System.Threading.Overlapped.xml", + "ref/dotnet/System.Threading.Overlapped.dll", + "ref/dotnet/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hans/System.Threading.Overlapped.xml", + "ref/dotnet/zh-hant/System.Threading.Overlapped.xml", + "ref/net46/System.Threading.Overlapped.dll", + "System.Threading.Overlapped.nuspec" + ] + }, + "System.Threading.Tasks/4.0.10": { + "sha512": "NOwJGDfk79jR0bnzosbXLVD/PdI8KzBeESoa3CofEM5v9R5EBfcI0Jyf18stx+0IYV9okmDIDxVtxq9TbnR9bQ==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Threading.Tasks.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Threading.Tasks.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/a4ed35f8764a4b68bb39ec8d13b3e730.psmdcp", + "ref/dotnet/de/System.Threading.Tasks.xml", + "ref/dotnet/es/System.Threading.Tasks.xml", + "ref/dotnet/fr/System.Threading.Tasks.xml", + "ref/dotnet/it/System.Threading.Tasks.xml", + "ref/dotnet/ja/System.Threading.Tasks.xml", + "ref/dotnet/ko/System.Threading.Tasks.xml", + "ref/dotnet/ru/System.Threading.Tasks.xml", + "ref/dotnet/System.Threading.Tasks.dll", + "ref/dotnet/System.Threading.Tasks.xml", + "ref/dotnet/zh-hans/System.Threading.Tasks.xml", + "ref/dotnet/zh-hant/System.Threading.Tasks.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "System.Threading.Tasks.nuspec" + ] + }, + "System.Threading.Tasks.Dataflow/4.5.25": { + "sha512": "Y5/Dj+tYlDxHBwie7bFKp3+1uSG4vqTJRF7Zs7kaUQ3ahYClffCTxvgjrJyPclC+Le55uE7bMLgjZQVOQr3Jfg==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.Threading.Tasks.Dataflow.dll", + "lib/dotnet/System.Threading.Tasks.Dataflow.XML", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.XML", + "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll", + "lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.XML", + "package/services/metadata/core-properties/b27f9e16f16b429f924c31eb4be21d09.psmdcp", + "System.Threading.Tasks.Dataflow.nuspec" + ] + }, + "System.Threading.Tasks.Parallel/4.0.0": { + "sha512": "GXDhjPhF3nE4RtDia0W6JR4UMdmhOyt9ibHmsNV6GLRT4HAGqU636Teo4tqvVQOFp2R6b1ffxPXiRaoqtzGxuA==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.Threading.Tasks.Parallel.dll", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.Parallel.dll", + "lib/win8/_._", + "lib/wpa81/_._", + "package/services/metadata/core-properties/260c0741092249239a3182de21f409ef.psmdcp", + "ref/dotnet/de/System.Threading.Tasks.Parallel.xml", + "ref/dotnet/es/System.Threading.Tasks.Parallel.xml", + "ref/dotnet/fr/System.Threading.Tasks.Parallel.xml", + "ref/dotnet/it/System.Threading.Tasks.Parallel.xml", + "ref/dotnet/ja/System.Threading.Tasks.Parallel.xml", + "ref/dotnet/ko/System.Threading.Tasks.Parallel.xml", + "ref/dotnet/ru/System.Threading.Tasks.Parallel.xml", + "ref/dotnet/System.Threading.Tasks.Parallel.dll", + "ref/dotnet/System.Threading.Tasks.Parallel.xml", + "ref/dotnet/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/dotnet/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.Parallel.dll", + "ref/netcore50/System.Threading.Tasks.Parallel.xml", + "ref/win8/_._", + "ref/wpa81/_._", + "System.Threading.Tasks.Parallel.nuspec" + ] + }, + "System.Threading.Timer/4.0.0": { + "sha512": "BIdJH5/e4FnVl7TkRUiE3pWytp7OYiRUGtwUbyLewS/PhKiLepFetdtlW+FvDYOVn60Q2NMTrhHhJ51q+sVW5g==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Threading.Timer.dll", + "lib/net451/_._", + "lib/netcore50/System.Threading.Timer.dll", + "lib/win81/_._", + "lib/wpa81/_._", + "package/services/metadata/core-properties/c02c4d3d0eff43ec9b54de9f60bd68ad.psmdcp", + "ref/dotnet/de/System.Threading.Timer.xml", + "ref/dotnet/es/System.Threading.Timer.xml", + "ref/dotnet/fr/System.Threading.Timer.xml", + "ref/dotnet/it/System.Threading.Timer.xml", + "ref/dotnet/ja/System.Threading.Timer.xml", + "ref/dotnet/ko/System.Threading.Timer.xml", + "ref/dotnet/ru/System.Threading.Timer.xml", + "ref/dotnet/System.Threading.Timer.dll", + "ref/dotnet/System.Threading.Timer.xml", + "ref/dotnet/zh-hans/System.Threading.Timer.xml", + "ref/dotnet/zh-hant/System.Threading.Timer.xml", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/win81/_._", + "ref/wpa81/_._", + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "System.Threading.Timer.nuspec" + ] + }, + "System.Xml.ReaderWriter/4.0.10": { + "sha512": "VdmWWMH7otrYV7D+cviUo7XjX0jzDnD/lTGSZTlZqfIQ5PhXk85j+6P0TK9od3PnOd5ZIM+pOk01G/J+3nh9/w==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.Xml.ReaderWriter.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/ef76b636720e4f2d8cfd570899d52df8.psmdcp", + "ref/dotnet/de/System.Xml.ReaderWriter.xml", + "ref/dotnet/es/System.Xml.ReaderWriter.xml", + "ref/dotnet/fr/System.Xml.ReaderWriter.xml", + "ref/dotnet/it/System.Xml.ReaderWriter.xml", + "ref/dotnet/ja/System.Xml.ReaderWriter.xml", + "ref/dotnet/ko/System.Xml.ReaderWriter.xml", + "ref/dotnet/ru/System.Xml.ReaderWriter.xml", + "ref/dotnet/System.Xml.ReaderWriter.dll", + "ref/dotnet/System.Xml.ReaderWriter.xml", + "ref/dotnet/zh-hans/System.Xml.ReaderWriter.xml", + "ref/dotnet/zh-hant/System.Xml.ReaderWriter.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Xml.ReaderWriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.10": { + "sha512": "+ej0g0INnXDjpS2tDJsLO7/BjyBzC+TeBXLeoGnvRrm4AuBH9PhBjjZ1IuKWOhCkxPkFognUOKhZHS2glIOlng==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.Xml.XDocument.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/f5c45d6b065347dfaa1d90d06221623d.psmdcp", + "ref/dotnet/de/System.Xml.XDocument.xml", + "ref/dotnet/es/System.Xml.XDocument.xml", + "ref/dotnet/fr/System.Xml.XDocument.xml", + "ref/dotnet/it/System.Xml.XDocument.xml", + "ref/dotnet/ja/System.Xml.XDocument.xml", + "ref/dotnet/ko/System.Xml.XDocument.xml", + "ref/dotnet/ru/System.Xml.XDocument.xml", + "ref/dotnet/System.Xml.XDocument.dll", + "ref/dotnet/System.Xml.XDocument.xml", + "ref/dotnet/zh-hans/System.Xml.XDocument.xml", + "ref/dotnet/zh-hant/System.Xml.XDocument.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Xml.XDocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.0.0": { + "sha512": "H5qTx2+AXgaKE5wehU1ZYeYPFpp/rfFh69/937NvwCrDqbIkvJRmIFyKKpkoMI6gl9hGfuVizfIudVTMyowCXw==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/dotnet/System.Xml.XmlDocument.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/89840371bf3f4e0d9ab7b6b34213c74c.psmdcp", + "ref/dotnet/de/System.Xml.XmlDocument.xml", + "ref/dotnet/es/System.Xml.XmlDocument.xml", + "ref/dotnet/fr/System.Xml.XmlDocument.xml", + "ref/dotnet/it/System.Xml.XmlDocument.xml", + "ref/dotnet/ja/System.Xml.XmlDocument.xml", + "ref/dotnet/ko/System.Xml.XmlDocument.xml", + "ref/dotnet/ru/System.Xml.XmlDocument.xml", + "ref/dotnet/System.Xml.XmlDocument.dll", + "ref/dotnet/System.Xml.XmlDocument.xml", + "ref/dotnet/zh-hans/System.Xml.XmlDocument.xml", + "ref/dotnet/zh-hant/System.Xml.XmlDocument.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "System.Xml.XmlDocument.nuspec" + ] + }, + "System.Xml.XmlSerializer/4.0.10": { + "sha512": "OKhE6vruk88z/hl0lmfrMvXteTASgJUagu6PT6S10i9uLbvDR3pTwB6jVgiwa2D2qtTB+eneZbS9jljhPXhTtg==", + "type": "Package", + "files": [ + "[Content_Types].xml", + "_rels/.rels", + "lib/DNXCore50/System.Xml.XmlSerializer.dll", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/netcore50/System.Xml.XmlSerializer.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "package/services/metadata/core-properties/1cffc42bca944f1d81ef3c3abdb0f0be.psmdcp", + "ref/dotnet/de/System.Xml.XmlSerializer.xml", + "ref/dotnet/es/System.Xml.XmlSerializer.xml", + "ref/dotnet/fr/System.Xml.XmlSerializer.xml", + "ref/dotnet/it/System.Xml.XmlSerializer.xml", + "ref/dotnet/ja/System.Xml.XmlSerializer.xml", + "ref/dotnet/ko/System.Xml.XmlSerializer.xml", + "ref/dotnet/ru/System.Xml.XmlSerializer.xml", + "ref/dotnet/System.Xml.XmlSerializer.dll", + "ref/dotnet/System.Xml.XmlSerializer.xml", + "ref/dotnet/zh-hans/System.Xml.XmlSerializer.xml", + "ref/dotnet/zh-hant/System.Xml.XmlSerializer.xml", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "runtime.json", + "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "System.Xml.XmlSerializer.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Microsoft.NETCore.UniversalWindowsPlatform >= 5.0.0" + ], + "UAP,Version=v10.0": [] + } +} \ No newline at end of file diff --git a/Parse.sln b/Parse.sln index fa91c3fa..1f812d64 100644 --- a/Parse.sln +++ b/Parse.sln @@ -1,378 +1,436 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2013 -VisualStudioVersion = 12.0.31101.0 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Parse", "Parse\Parse.csproj", "{DE07A443-9619-4BD7-B540-41296F8A2959}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{68E871A4-6C4A-4BF8-AD86-E25AE2A911F7}" - ProjectSection(SolutionItems) = preProject - .nuget\NuGet.Config = .nuget\NuGet.Config - .nuget\NuGet.exe = .nuget\NuGet.exe - .nuget\NuGet.targets = .nuget\NuGet.targets - EndProjectSection -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Parse.NetFx45", "Parse\Parse.NetFx45.csproj", "{18203A69-17C8-4EA4-8098-65D982ACDDCB}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Parse.WinRT", "Parse\Parse.WinRT.csproj", "{858FC395-3213-446E-BD09-72DBB11FE11C}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Parse.Phone", "Parse\Parse.Phone.csproj", "{76490312-1E12-48D4-BD10-45C6ED4A08DC}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Parse.Android", "Parse\Parse.Android.csproj", "{072821C5-D6CC-4480-AA44-78DE79F52297}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Parse.iOS", "Parse\Parse.iOS.csproj", "{7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Parse.Unity", "Parse\Parse.Unity.csproj", "{8473BEF6-7086-4414-AAD6-264967A7FE75}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ParseTest.Unit.NetFx45", "ParseTest.Unit\ParseTest.Unit.NetFx45.csproj", "{F3937A46-F58A-4960-AFE6-AF664096C23A}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Ad-Hoc|Any CPU = Ad-Hoc|Any CPU - Ad-Hoc|ARM = Ad-Hoc|ARM - Ad-Hoc|iPhone = Ad-Hoc|iPhone - Ad-Hoc|iPhoneSimulator = Ad-Hoc|iPhoneSimulator - Ad-Hoc|Mixed Platforms = Ad-Hoc|Mixed Platforms - Ad-Hoc|x64 = Ad-Hoc|x64 - Ad-Hoc|x86 = Ad-Hoc|x86 - AppStore|Any CPU = AppStore|Any CPU - AppStore|ARM = AppStore|ARM - AppStore|iPhone = AppStore|iPhone - AppStore|iPhoneSimulator = AppStore|iPhoneSimulator - AppStore|Mixed Platforms = AppStore|Mixed Platforms - AppStore|x64 = AppStore|x64 - AppStore|x86 = AppStore|x86 - Debug|Any CPU = Debug|Any CPU - Debug|ARM = Debug|ARM - Debug|iPhone = Debug|iPhone - Debug|iPhoneSimulator = Debug|iPhoneSimulator - Debug|Mixed Platforms = Debug|Mixed Platforms - Debug|x64 = Debug|x64 - Debug|x86 = Debug|x86 - Release|Any CPU = Release|Any CPU - Release|ARM = Release|ARM - Release|iPhone = Release|iPhone - Release|iPhoneSimulator = Release|iPhoneSimulator - Release|Mixed Platforms = Release|Mixed Platforms - Release|x64 = Release|x64 - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {DE07A443-9619-4BD7-B540-41296F8A2959}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.Ad-Hoc|Mixed Platforms.Build.0 = Release|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.AppStore|Any CPU.ActiveCfg = Release|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.AppStore|Any CPU.Build.0 = Release|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.AppStore|ARM.ActiveCfg = Release|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.AppStore|iPhone.ActiveCfg = Release|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.AppStore|x64.ActiveCfg = Release|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.AppStore|x86.ActiveCfg = Release|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.Debug|Any CPU.Build.0 = Debug|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.Debug|ARM.ActiveCfg = Debug|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.Debug|iPhone.ActiveCfg = Debug|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.Debug|x64.ActiveCfg = Debug|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.Debug|x86.ActiveCfg = Debug|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.Release|Any CPU.ActiveCfg = Release|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.Release|Any CPU.Build.0 = Release|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.Release|ARM.ActiveCfg = Release|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.Release|iPhone.ActiveCfg = Release|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.Release|x64.ActiveCfg = Release|Any CPU - {DE07A443-9619-4BD7-B540-41296F8A2959}.Release|x86.ActiveCfg = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Ad-Hoc|Mixed Platforms.Build.0 = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.AppStore|Any CPU.ActiveCfg = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.AppStore|Any CPU.Build.0 = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.AppStore|ARM.ActiveCfg = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.AppStore|iPhone.ActiveCfg = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.AppStore|x64.ActiveCfg = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.AppStore|x86.ActiveCfg = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Debug|Any CPU.Build.0 = Debug|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Debug|ARM.ActiveCfg = Debug|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Debug|iPhone.ActiveCfg = Debug|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Debug|x64.ActiveCfg = Debug|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Debug|x86.ActiveCfg = Debug|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Release|Any CPU.ActiveCfg = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Release|Any CPU.Build.0 = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Release|ARM.ActiveCfg = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Release|iPhone.ActiveCfg = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Release|x64.ActiveCfg = Release|Any CPU - {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Release|x86.ActiveCfg = Release|Any CPU - {858FC395-3213-446E-BD09-72DBB11FE11C}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU - {858FC395-3213-446E-BD09-72DBB11FE11C}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU - {858FC395-3213-446E-BD09-72DBB11FE11C}.Ad-Hoc|ARM.ActiveCfg = Release|ARM - {858FC395-3213-446E-BD09-72DBB11FE11C}.Ad-Hoc|ARM.Build.0 = Release|ARM - {858FC395-3213-446E-BD09-72DBB11FE11C}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU - {858FC395-3213-446E-BD09-72DBB11FE11C}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU - {858FC395-3213-446E-BD09-72DBB11FE11C}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|x86 - {858FC395-3213-446E-BD09-72DBB11FE11C}.Ad-Hoc|Mixed Platforms.Build.0 = Release|x86 - {858FC395-3213-446E-BD09-72DBB11FE11C}.Ad-Hoc|x64.ActiveCfg = Release|x64 - {858FC395-3213-446E-BD09-72DBB11FE11C}.Ad-Hoc|x64.Build.0 = Release|x64 - {858FC395-3213-446E-BD09-72DBB11FE11C}.Ad-Hoc|x86.ActiveCfg = Release|x86 - {858FC395-3213-446E-BD09-72DBB11FE11C}.Ad-Hoc|x86.Build.0 = Release|x86 - {858FC395-3213-446E-BD09-72DBB11FE11C}.AppStore|Any CPU.ActiveCfg = Release|Any CPU - {858FC395-3213-446E-BD09-72DBB11FE11C}.AppStore|Any CPU.Build.0 = Release|Any CPU - {858FC395-3213-446E-BD09-72DBB11FE11C}.AppStore|ARM.ActiveCfg = Release|ARM - {858FC395-3213-446E-BD09-72DBB11FE11C}.AppStore|ARM.Build.0 = Release|ARM - {858FC395-3213-446E-BD09-72DBB11FE11C}.AppStore|iPhone.ActiveCfg = Release|Any CPU - {858FC395-3213-446E-BD09-72DBB11FE11C}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU - {858FC395-3213-446E-BD09-72DBB11FE11C}.AppStore|Mixed Platforms.ActiveCfg = Release|x86 - {858FC395-3213-446E-BD09-72DBB11FE11C}.AppStore|Mixed Platforms.Build.0 = Release|x86 - {858FC395-3213-446E-BD09-72DBB11FE11C}.AppStore|x64.ActiveCfg = Release|x64 - {858FC395-3213-446E-BD09-72DBB11FE11C}.AppStore|x64.Build.0 = Release|x64 - {858FC395-3213-446E-BD09-72DBB11FE11C}.AppStore|x86.ActiveCfg = Release|x86 - {858FC395-3213-446E-BD09-72DBB11FE11C}.AppStore|x86.Build.0 = Release|x86 - {858FC395-3213-446E-BD09-72DBB11FE11C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {858FC395-3213-446E-BD09-72DBB11FE11C}.Debug|Any CPU.Build.0 = Debug|Any CPU - {858FC395-3213-446E-BD09-72DBB11FE11C}.Debug|ARM.ActiveCfg = Debug|ARM - {858FC395-3213-446E-BD09-72DBB11FE11C}.Debug|ARM.Build.0 = Debug|ARM - {858FC395-3213-446E-BD09-72DBB11FE11C}.Debug|iPhone.ActiveCfg = Debug|Any CPU - {858FC395-3213-446E-BD09-72DBB11FE11C}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU - {858FC395-3213-446E-BD09-72DBB11FE11C}.Debug|Mixed Platforms.ActiveCfg = Debug|x86 - {858FC395-3213-446E-BD09-72DBB11FE11C}.Debug|Mixed Platforms.Build.0 = Debug|x86 - {858FC395-3213-446E-BD09-72DBB11FE11C}.Debug|x64.ActiveCfg = Debug|x64 - {858FC395-3213-446E-BD09-72DBB11FE11C}.Debug|x64.Build.0 = Debug|x64 - {858FC395-3213-446E-BD09-72DBB11FE11C}.Debug|x86.ActiveCfg = Debug|x86 - {858FC395-3213-446E-BD09-72DBB11FE11C}.Debug|x86.Build.0 = Debug|x86 - {858FC395-3213-446E-BD09-72DBB11FE11C}.Release|Any CPU.ActiveCfg = Release|Any CPU - {858FC395-3213-446E-BD09-72DBB11FE11C}.Release|Any CPU.Build.0 = Release|Any CPU - {858FC395-3213-446E-BD09-72DBB11FE11C}.Release|ARM.ActiveCfg = Release|ARM - {858FC395-3213-446E-BD09-72DBB11FE11C}.Release|ARM.Build.0 = Release|ARM - {858FC395-3213-446E-BD09-72DBB11FE11C}.Release|iPhone.ActiveCfg = Release|Any CPU - {858FC395-3213-446E-BD09-72DBB11FE11C}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU - {858FC395-3213-446E-BD09-72DBB11FE11C}.Release|Mixed Platforms.ActiveCfg = Release|x86 - {858FC395-3213-446E-BD09-72DBB11FE11C}.Release|Mixed Platforms.Build.0 = Release|x86 - {858FC395-3213-446E-BD09-72DBB11FE11C}.Release|x64.ActiveCfg = Release|x64 - {858FC395-3213-446E-BD09-72DBB11FE11C}.Release|x64.Build.0 = Release|x64 - {858FC395-3213-446E-BD09-72DBB11FE11C}.Release|x86.ActiveCfg = Release|x86 - {858FC395-3213-446E-BD09-72DBB11FE11C}.Release|x86.Build.0 = Release|x86 - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Ad-Hoc|ARM.ActiveCfg = Release|ARM - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Ad-Hoc|ARM.Build.0 = Release|ARM - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|x86 - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Ad-Hoc|Mixed Platforms.Build.0 = Release|x86 - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Ad-Hoc|x86.ActiveCfg = Release|x86 - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Ad-Hoc|x86.Build.0 = Release|x86 - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.AppStore|Any CPU.ActiveCfg = Release|Any CPU - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.AppStore|Any CPU.Build.0 = Release|Any CPU - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.AppStore|ARM.ActiveCfg = Release|ARM - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.AppStore|ARM.Build.0 = Release|ARM - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.AppStore|iPhone.ActiveCfg = Release|Any CPU - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.AppStore|Mixed Platforms.ActiveCfg = Release|x86 - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.AppStore|Mixed Platforms.Build.0 = Release|x86 - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.AppStore|x64.ActiveCfg = Release|Any CPU - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.AppStore|x86.ActiveCfg = Release|x86 - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.AppStore|x86.Build.0 = Release|x86 - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Debug|Any CPU.Build.0 = Debug|Any CPU - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Debug|ARM.ActiveCfg = Debug|ARM - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Debug|ARM.Build.0 = Debug|ARM - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Debug|iPhone.ActiveCfg = Debug|Any CPU - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Debug|Mixed Platforms.ActiveCfg = Debug|x86 - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Debug|Mixed Platforms.Build.0 = Debug|x86 - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Debug|x64.ActiveCfg = Debug|Any CPU - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Debug|x86.ActiveCfg = Debug|x86 - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Debug|x86.Build.0 = Debug|x86 - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Release|Any CPU.ActiveCfg = Release|Any CPU - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Release|Any CPU.Build.0 = Release|Any CPU - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Release|ARM.ActiveCfg = Release|ARM - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Release|ARM.Build.0 = Release|ARM - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Release|iPhone.ActiveCfg = Release|Any CPU - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Release|Mixed Platforms.ActiveCfg = Release|x86 - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Release|Mixed Platforms.Build.0 = Release|x86 - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Release|x64.ActiveCfg = Release|Any CPU - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Release|x86.ActiveCfg = Release|x86 - {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Release|x86.Build.0 = Release|x86 - {072821C5-D6CC-4480-AA44-78DE79F52297}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.Ad-Hoc|Mixed Platforms.Build.0 = Release|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.AppStore|Any CPU.ActiveCfg = Release|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.AppStore|Any CPU.Build.0 = Release|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.AppStore|ARM.ActiveCfg = Release|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.AppStore|iPhone.ActiveCfg = Release|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.AppStore|x64.ActiveCfg = Release|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.AppStore|x86.ActiveCfg = Release|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.Debug|Any CPU.Build.0 = Debug|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.Debug|ARM.ActiveCfg = Debug|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.Debug|iPhone.ActiveCfg = Debug|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.Debug|x64.ActiveCfg = Debug|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.Debug|x86.ActiveCfg = Debug|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.Release|Any CPU.ActiveCfg = Release|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.Release|Any CPU.Build.0 = Release|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.Release|ARM.ActiveCfg = Release|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.Release|iPhone.ActiveCfg = Release|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.Release|x64.ActiveCfg = Release|Any CPU - {072821C5-D6CC-4480-AA44-78DE79F52297}.Release|x86.ActiveCfg = Release|Any CPU - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Ad-Hoc|Any CPU.ActiveCfg = Ad-Hoc|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Ad-Hoc|ARM.ActiveCfg = Ad-Hoc|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Ad-Hoc|iPhone.ActiveCfg = Ad-Hoc|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Ad-Hoc|iPhone.Build.0 = Ad-Hoc|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Ad-Hoc|iPhoneSimulator - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Ad-Hoc|iPhoneSimulator.Build.0 = Ad-Hoc|iPhoneSimulator - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Ad-Hoc|Mixed Platforms.ActiveCfg = Ad-Hoc|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Ad-Hoc|Mixed Platforms.Build.0 = Ad-Hoc|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Ad-Hoc|x64.ActiveCfg = Ad-Hoc|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Ad-Hoc|x86.ActiveCfg = Ad-Hoc|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.AppStore|Any CPU.ActiveCfg = AppStore|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.AppStore|ARM.ActiveCfg = AppStore|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.AppStore|iPhone.ActiveCfg = AppStore|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.AppStore|iPhone.Build.0 = AppStore|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.AppStore|iPhoneSimulator.ActiveCfg = AppStore|iPhoneSimulator - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.AppStore|iPhoneSimulator.Build.0 = AppStore|iPhoneSimulator - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.AppStore|Mixed Platforms.ActiveCfg = AppStore|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.AppStore|Mixed Platforms.Build.0 = AppStore|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.AppStore|x64.ActiveCfg = AppStore|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.AppStore|x86.ActiveCfg = AppStore|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Debug|Any CPU.ActiveCfg = Debug|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Debug|ARM.ActiveCfg = Debug|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Debug|iPhone.ActiveCfg = Debug|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Debug|iPhone.Build.0 = Debug|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Debug|Mixed Platforms.ActiveCfg = Debug|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Debug|Mixed Platforms.Build.0 = Debug|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Debug|x64.ActiveCfg = Debug|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Debug|x86.ActiveCfg = Debug|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Release|Any CPU.ActiveCfg = Release|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Release|Any CPU.Build.0 = Release|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Release|ARM.ActiveCfg = Release|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Release|iPhone.ActiveCfg = Release|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Release|iPhone.Build.0 = Release|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Release|Mixed Platforms.ActiveCfg = Release|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Release|Mixed Platforms.Build.0 = Release|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Release|x64.ActiveCfg = Release|iPhone - {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Release|x86.ActiveCfg = Release|iPhone - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Ad-Hoc|Mixed Platforms.Build.0 = Release|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.AppStore|Any CPU.ActiveCfg = Release|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.AppStore|Any CPU.Build.0 = Release|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.AppStore|ARM.ActiveCfg = Release|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.AppStore|iPhone.ActiveCfg = Release|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.AppStore|x64.ActiveCfg = Release|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.AppStore|x86.ActiveCfg = Release|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Debug|Any CPU.Build.0 = Debug|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Debug|ARM.ActiveCfg = Debug|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Debug|iPhone.ActiveCfg = Debug|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Debug|x64.ActiveCfg = Debug|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Debug|x86.ActiveCfg = Debug|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Release|Any CPU.ActiveCfg = Release|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Release|Any CPU.Build.0 = Release|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Release|ARM.ActiveCfg = Release|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Release|iPhone.ActiveCfg = Release|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Release|x64.ActiveCfg = Release|Any CPU - {8473BEF6-7086-4414-AAD6-264967A7FE75}.Release|x86.ActiveCfg = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Ad-Hoc|Mixed Platforms.Build.0 = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.AppStore|Any CPU.ActiveCfg = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.AppStore|Any CPU.Build.0 = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.AppStore|ARM.ActiveCfg = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.AppStore|iPhone.ActiveCfg = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.AppStore|x64.ActiveCfg = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.AppStore|x86.ActiveCfg = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Debug|Any CPU.Build.0 = Debug|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Debug|ARM.ActiveCfg = Debug|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Debug|iPhone.ActiveCfg = Debug|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Debug|x64.ActiveCfg = Debug|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Debug|x86.ActiveCfg = Debug|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Release|Any CPU.ActiveCfg = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Release|Any CPU.Build.0 = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Release|ARM.ActiveCfg = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Release|iPhone.ActiveCfg = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Release|Mixed Platforms.Build.0 = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Release|x64.ActiveCfg = Release|Any CPU - {F3937A46-F58A-4960-AFE6-AF664096C23A}.Release|x86.ActiveCfg = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.24720.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Parse", "Parse\Parse.csproj", "{DE07A443-9619-4BD7-B540-41296F8A2959}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{68E871A4-6C4A-4BF8-AD86-E25AE2A911F7}" + ProjectSection(SolutionItems) = preProject + .nuget\NuGet.Config = .nuget\NuGet.Config + .nuget\NuGet.exe = .nuget\NuGet.exe + .nuget\NuGet.targets = .nuget\NuGet.targets + EndProjectSection +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Parse.NetFx45", "Parse\Parse.NetFx45.csproj", "{18203A69-17C8-4EA4-8098-65D982ACDDCB}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Parse.WinRT", "Parse\Parse.WinRT.csproj", "{858FC395-3213-446E-BD09-72DBB11FE11C}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Parse.Phone", "Parse\Parse.Phone.csproj", "{76490312-1E12-48D4-BD10-45C6ED4A08DC}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Parse.Android", "Parse\Parse.Android.csproj", "{072821C5-D6CC-4480-AA44-78DE79F52297}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Parse.iOS", "Parse\Parse.iOS.csproj", "{7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Parse.Unity", "Parse\Parse.Unity.csproj", "{8473BEF6-7086-4414-AAD6-264967A7FE75}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ParseTest.Unit.NetFx45", "ParseTest.Unit\ParseTest.Unit.NetFx45.csproj", "{F3937A46-F58A-4960-AFE6-AF664096C23A}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Parse.UWP", "Parse.UWP\Parse.UWP.csproj", "{F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Ad-Hoc|Any CPU = Ad-Hoc|Any CPU + Ad-Hoc|ARM = Ad-Hoc|ARM + Ad-Hoc|iPhone = Ad-Hoc|iPhone + Ad-Hoc|iPhoneSimulator = Ad-Hoc|iPhoneSimulator + Ad-Hoc|Mixed Platforms = Ad-Hoc|Mixed Platforms + Ad-Hoc|x64 = Ad-Hoc|x64 + Ad-Hoc|x86 = Ad-Hoc|x86 + AppStore|Any CPU = AppStore|Any CPU + AppStore|ARM = AppStore|ARM + AppStore|iPhone = AppStore|iPhone + AppStore|iPhoneSimulator = AppStore|iPhoneSimulator + AppStore|Mixed Platforms = AppStore|Mixed Platforms + AppStore|x64 = AppStore|x64 + AppStore|x86 = AppStore|x86 + Debug|Any CPU = Debug|Any CPU + Debug|ARM = Debug|ARM + Debug|iPhone = Debug|iPhone + Debug|iPhoneSimulator = Debug|iPhoneSimulator + Debug|Mixed Platforms = Debug|Mixed Platforms + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|ARM = Release|ARM + Release|iPhone = Release|iPhone + Release|iPhoneSimulator = Release|iPhoneSimulator + Release|Mixed Platforms = Release|Mixed Platforms + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {DE07A443-9619-4BD7-B540-41296F8A2959}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.Ad-Hoc|Mixed Platforms.Build.0 = Release|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.AppStore|Any CPU.ActiveCfg = Release|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.AppStore|Any CPU.Build.0 = Release|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.AppStore|ARM.ActiveCfg = Release|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.AppStore|iPhone.ActiveCfg = Release|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.AppStore|x64.ActiveCfg = Release|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.AppStore|x86.ActiveCfg = Release|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.Debug|ARM.ActiveCfg = Debug|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.Debug|iPhone.ActiveCfg = Debug|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.Debug|x64.ActiveCfg = Debug|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.Debug|x86.ActiveCfg = Debug|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.Release|Any CPU.Build.0 = Release|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.Release|ARM.ActiveCfg = Release|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.Release|iPhone.ActiveCfg = Release|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.Release|x64.ActiveCfg = Release|Any CPU + {DE07A443-9619-4BD7-B540-41296F8A2959}.Release|x86.ActiveCfg = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Ad-Hoc|Mixed Platforms.Build.0 = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.AppStore|Any CPU.ActiveCfg = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.AppStore|Any CPU.Build.0 = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.AppStore|ARM.ActiveCfg = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.AppStore|iPhone.ActiveCfg = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.AppStore|x64.ActiveCfg = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.AppStore|x86.ActiveCfg = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Debug|ARM.ActiveCfg = Debug|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Debug|iPhone.ActiveCfg = Debug|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Debug|x64.ActiveCfg = Debug|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Debug|x86.ActiveCfg = Debug|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Release|Any CPU.Build.0 = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Release|ARM.ActiveCfg = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Release|iPhone.ActiveCfg = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Release|x64.ActiveCfg = Release|Any CPU + {18203A69-17C8-4EA4-8098-65D982ACDDCB}.Release|x86.ActiveCfg = Release|Any CPU + {858FC395-3213-446E-BD09-72DBB11FE11C}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU + {858FC395-3213-446E-BD09-72DBB11FE11C}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU + {858FC395-3213-446E-BD09-72DBB11FE11C}.Ad-Hoc|ARM.ActiveCfg = Release|ARM + {858FC395-3213-446E-BD09-72DBB11FE11C}.Ad-Hoc|ARM.Build.0 = Release|ARM + {858FC395-3213-446E-BD09-72DBB11FE11C}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU + {858FC395-3213-446E-BD09-72DBB11FE11C}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU + {858FC395-3213-446E-BD09-72DBB11FE11C}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|x86 + {858FC395-3213-446E-BD09-72DBB11FE11C}.Ad-Hoc|Mixed Platforms.Build.0 = Release|x86 + {858FC395-3213-446E-BD09-72DBB11FE11C}.Ad-Hoc|x64.ActiveCfg = Release|x64 + {858FC395-3213-446E-BD09-72DBB11FE11C}.Ad-Hoc|x64.Build.0 = Release|x64 + {858FC395-3213-446E-BD09-72DBB11FE11C}.Ad-Hoc|x86.ActiveCfg = Release|x86 + {858FC395-3213-446E-BD09-72DBB11FE11C}.Ad-Hoc|x86.Build.0 = Release|x86 + {858FC395-3213-446E-BD09-72DBB11FE11C}.AppStore|Any CPU.ActiveCfg = Release|Any CPU + {858FC395-3213-446E-BD09-72DBB11FE11C}.AppStore|Any CPU.Build.0 = Release|Any CPU + {858FC395-3213-446E-BD09-72DBB11FE11C}.AppStore|ARM.ActiveCfg = Release|ARM + {858FC395-3213-446E-BD09-72DBB11FE11C}.AppStore|ARM.Build.0 = Release|ARM + {858FC395-3213-446E-BD09-72DBB11FE11C}.AppStore|iPhone.ActiveCfg = Release|Any CPU + {858FC395-3213-446E-BD09-72DBB11FE11C}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU + {858FC395-3213-446E-BD09-72DBB11FE11C}.AppStore|Mixed Platforms.ActiveCfg = Release|x86 + {858FC395-3213-446E-BD09-72DBB11FE11C}.AppStore|Mixed Platforms.Build.0 = Release|x86 + {858FC395-3213-446E-BD09-72DBB11FE11C}.AppStore|x64.ActiveCfg = Release|x64 + {858FC395-3213-446E-BD09-72DBB11FE11C}.AppStore|x64.Build.0 = Release|x64 + {858FC395-3213-446E-BD09-72DBB11FE11C}.AppStore|x86.ActiveCfg = Release|x86 + {858FC395-3213-446E-BD09-72DBB11FE11C}.AppStore|x86.Build.0 = Release|x86 + {858FC395-3213-446E-BD09-72DBB11FE11C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {858FC395-3213-446E-BD09-72DBB11FE11C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {858FC395-3213-446E-BD09-72DBB11FE11C}.Debug|ARM.ActiveCfg = Debug|ARM + {858FC395-3213-446E-BD09-72DBB11FE11C}.Debug|ARM.Build.0 = Debug|ARM + {858FC395-3213-446E-BD09-72DBB11FE11C}.Debug|iPhone.ActiveCfg = Debug|Any CPU + {858FC395-3213-446E-BD09-72DBB11FE11C}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU + {858FC395-3213-446E-BD09-72DBB11FE11C}.Debug|Mixed Platforms.ActiveCfg = Debug|x86 + {858FC395-3213-446E-BD09-72DBB11FE11C}.Debug|Mixed Platforms.Build.0 = Debug|x86 + {858FC395-3213-446E-BD09-72DBB11FE11C}.Debug|x64.ActiveCfg = Debug|x64 + {858FC395-3213-446E-BD09-72DBB11FE11C}.Debug|x64.Build.0 = Debug|x64 + {858FC395-3213-446E-BD09-72DBB11FE11C}.Debug|x86.ActiveCfg = Debug|x86 + {858FC395-3213-446E-BD09-72DBB11FE11C}.Debug|x86.Build.0 = Debug|x86 + {858FC395-3213-446E-BD09-72DBB11FE11C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {858FC395-3213-446E-BD09-72DBB11FE11C}.Release|Any CPU.Build.0 = Release|Any CPU + {858FC395-3213-446E-BD09-72DBB11FE11C}.Release|ARM.ActiveCfg = Release|ARM + {858FC395-3213-446E-BD09-72DBB11FE11C}.Release|ARM.Build.0 = Release|ARM + {858FC395-3213-446E-BD09-72DBB11FE11C}.Release|iPhone.ActiveCfg = Release|Any CPU + {858FC395-3213-446E-BD09-72DBB11FE11C}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU + {858FC395-3213-446E-BD09-72DBB11FE11C}.Release|Mixed Platforms.ActiveCfg = Release|x86 + {858FC395-3213-446E-BD09-72DBB11FE11C}.Release|Mixed Platforms.Build.0 = Release|x86 + {858FC395-3213-446E-BD09-72DBB11FE11C}.Release|x64.ActiveCfg = Release|x64 + {858FC395-3213-446E-BD09-72DBB11FE11C}.Release|x64.Build.0 = Release|x64 + {858FC395-3213-446E-BD09-72DBB11FE11C}.Release|x86.ActiveCfg = Release|x86 + {858FC395-3213-446E-BD09-72DBB11FE11C}.Release|x86.Build.0 = Release|x86 + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Ad-Hoc|ARM.ActiveCfg = Release|ARM + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Ad-Hoc|ARM.Build.0 = Release|ARM + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|x86 + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Ad-Hoc|Mixed Platforms.Build.0 = Release|x86 + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Ad-Hoc|x86.ActiveCfg = Release|x86 + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Ad-Hoc|x86.Build.0 = Release|x86 + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.AppStore|Any CPU.ActiveCfg = Release|Any CPU + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.AppStore|Any CPU.Build.0 = Release|Any CPU + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.AppStore|ARM.ActiveCfg = Release|ARM + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.AppStore|ARM.Build.0 = Release|ARM + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.AppStore|iPhone.ActiveCfg = Release|Any CPU + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.AppStore|Mixed Platforms.ActiveCfg = Release|x86 + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.AppStore|Mixed Platforms.Build.0 = Release|x86 + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.AppStore|x64.ActiveCfg = Release|Any CPU + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.AppStore|x86.ActiveCfg = Release|x86 + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.AppStore|x86.Build.0 = Release|x86 + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Debug|ARM.ActiveCfg = Debug|ARM + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Debug|ARM.Build.0 = Debug|ARM + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Debug|iPhone.ActiveCfg = Debug|Any CPU + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Debug|Mixed Platforms.ActiveCfg = Debug|x86 + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Debug|Mixed Platforms.Build.0 = Debug|x86 + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Debug|x64.ActiveCfg = Debug|Any CPU + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Debug|x86.ActiveCfg = Debug|x86 + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Debug|x86.Build.0 = Debug|x86 + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Release|Any CPU.Build.0 = Release|Any CPU + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Release|ARM.ActiveCfg = Release|ARM + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Release|ARM.Build.0 = Release|ARM + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Release|iPhone.ActiveCfg = Release|Any CPU + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Release|Mixed Platforms.ActiveCfg = Release|x86 + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Release|Mixed Platforms.Build.0 = Release|x86 + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Release|x64.ActiveCfg = Release|Any CPU + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Release|x86.ActiveCfg = Release|x86 + {76490312-1E12-48D4-BD10-45C6ED4A08DC}.Release|x86.Build.0 = Release|x86 + {072821C5-D6CC-4480-AA44-78DE79F52297}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.Ad-Hoc|Mixed Platforms.Build.0 = Release|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.AppStore|Any CPU.ActiveCfg = Release|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.AppStore|Any CPU.Build.0 = Release|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.AppStore|ARM.ActiveCfg = Release|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.AppStore|iPhone.ActiveCfg = Release|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.AppStore|x64.ActiveCfg = Release|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.AppStore|x86.ActiveCfg = Release|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.Debug|Any CPU.Build.0 = Debug|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.Debug|ARM.ActiveCfg = Debug|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.Debug|iPhone.ActiveCfg = Debug|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.Debug|x64.ActiveCfg = Debug|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.Debug|x86.ActiveCfg = Debug|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.Release|Any CPU.ActiveCfg = Release|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.Release|Any CPU.Build.0 = Release|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.Release|ARM.ActiveCfg = Release|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.Release|iPhone.ActiveCfg = Release|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.Release|x64.ActiveCfg = Release|Any CPU + {072821C5-D6CC-4480-AA44-78DE79F52297}.Release|x86.ActiveCfg = Release|Any CPU + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Ad-Hoc|Any CPU.ActiveCfg = Ad-Hoc|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Ad-Hoc|ARM.ActiveCfg = Ad-Hoc|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Ad-Hoc|iPhone.ActiveCfg = Ad-Hoc|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Ad-Hoc|iPhone.Build.0 = Ad-Hoc|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Ad-Hoc|iPhoneSimulator + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Ad-Hoc|iPhoneSimulator.Build.0 = Ad-Hoc|iPhoneSimulator + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Ad-Hoc|Mixed Platforms.ActiveCfg = Ad-Hoc|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Ad-Hoc|Mixed Platforms.Build.0 = Ad-Hoc|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Ad-Hoc|x64.ActiveCfg = Ad-Hoc|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Ad-Hoc|x86.ActiveCfg = Ad-Hoc|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.AppStore|Any CPU.ActiveCfg = AppStore|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.AppStore|ARM.ActiveCfg = AppStore|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.AppStore|iPhone.ActiveCfg = AppStore|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.AppStore|iPhone.Build.0 = AppStore|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.AppStore|iPhoneSimulator.ActiveCfg = AppStore|iPhoneSimulator + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.AppStore|iPhoneSimulator.Build.0 = AppStore|iPhoneSimulator + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.AppStore|Mixed Platforms.ActiveCfg = AppStore|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.AppStore|Mixed Platforms.Build.0 = AppStore|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.AppStore|x64.ActiveCfg = AppStore|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.AppStore|x86.ActiveCfg = AppStore|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Debug|Any CPU.ActiveCfg = Debug|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Debug|ARM.ActiveCfg = Debug|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Debug|iPhone.ActiveCfg = Debug|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Debug|iPhone.Build.0 = Debug|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Debug|Mixed Platforms.ActiveCfg = Debug|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Debug|Mixed Platforms.Build.0 = Debug|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Debug|x64.ActiveCfg = Debug|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Debug|x86.ActiveCfg = Debug|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Release|Any CPU.ActiveCfg = Release|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Release|Any CPU.Build.0 = Release|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Release|ARM.ActiveCfg = Release|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Release|iPhone.ActiveCfg = Release|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Release|iPhone.Build.0 = Release|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Release|Mixed Platforms.ActiveCfg = Release|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Release|Mixed Platforms.Build.0 = Release|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Release|x64.ActiveCfg = Release|iPhone + {7A46A7B4-EE3B-4B4F-9CBF-C51D07BC7064}.Release|x86.ActiveCfg = Release|iPhone + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Ad-Hoc|Mixed Platforms.Build.0 = Release|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.AppStore|Any CPU.ActiveCfg = Release|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.AppStore|Any CPU.Build.0 = Release|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.AppStore|ARM.ActiveCfg = Release|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.AppStore|iPhone.ActiveCfg = Release|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.AppStore|x64.ActiveCfg = Release|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.AppStore|x86.ActiveCfg = Release|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Debug|ARM.ActiveCfg = Debug|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Debug|iPhone.ActiveCfg = Debug|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Debug|x64.ActiveCfg = Debug|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Debug|x86.ActiveCfg = Debug|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Release|Any CPU.Build.0 = Release|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Release|ARM.ActiveCfg = Release|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Release|iPhone.ActiveCfg = Release|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Release|x64.ActiveCfg = Release|Any CPU + {8473BEF6-7086-4414-AAD6-264967A7FE75}.Release|x86.ActiveCfg = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Ad-Hoc|Mixed Platforms.Build.0 = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.AppStore|Any CPU.ActiveCfg = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.AppStore|Any CPU.Build.0 = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.AppStore|ARM.ActiveCfg = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.AppStore|iPhone.ActiveCfg = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.AppStore|x64.ActiveCfg = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.AppStore|x86.ActiveCfg = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Debug|ARM.ActiveCfg = Debug|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Debug|iPhone.ActiveCfg = Debug|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Debug|x64.ActiveCfg = Debug|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Debug|x86.ActiveCfg = Debug|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Release|Any CPU.Build.0 = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Release|ARM.ActiveCfg = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Release|iPhone.ActiveCfg = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Release|Mixed Platforms.Build.0 = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Release|x64.ActiveCfg = Release|Any CPU + {F3937A46-F58A-4960-AFE6-AF664096C23A}.Release|x86.ActiveCfg = Release|Any CPU + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Ad-Hoc|ARM.ActiveCfg = Release|ARM + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Ad-Hoc|ARM.Build.0 = Release|ARM + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|x86 + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Ad-Hoc|Mixed Platforms.Build.0 = Release|x86 + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Ad-Hoc|x64.ActiveCfg = Release|x64 + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Ad-Hoc|x64.Build.0 = Release|x64 + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Ad-Hoc|x86.ActiveCfg = Release|x86 + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Ad-Hoc|x86.Build.0 = Release|x86 + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.AppStore|Any CPU.ActiveCfg = Release|Any CPU + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.AppStore|Any CPU.Build.0 = Release|Any CPU + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.AppStore|ARM.ActiveCfg = Release|ARM + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.AppStore|ARM.Build.0 = Release|ARM + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.AppStore|iPhone.ActiveCfg = Release|Any CPU + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.AppStore|iPhone.Build.0 = Release|Any CPU + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.AppStore|Mixed Platforms.ActiveCfg = Release|x86 + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.AppStore|Mixed Platforms.Build.0 = Release|x86 + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.AppStore|x64.ActiveCfg = Release|x64 + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.AppStore|x64.Build.0 = Release|x64 + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.AppStore|x86.ActiveCfg = Release|x86 + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.AppStore|x86.Build.0 = Release|x86 + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Debug|ARM.ActiveCfg = Debug|ARM + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Debug|ARM.Build.0 = Debug|ARM + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Debug|iPhone.ActiveCfg = Debug|Any CPU + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Debug|iPhone.Build.0 = Debug|Any CPU + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Debug|Mixed Platforms.ActiveCfg = Debug|x86 + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Debug|Mixed Platforms.Build.0 = Debug|x86 + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Debug|x64.ActiveCfg = Debug|x64 + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Debug|x64.Build.0 = Debug|x64 + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Debug|x86.ActiveCfg = Debug|x86 + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Debug|x86.Build.0 = Debug|x86 + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Release|Any CPU.Build.0 = Release|Any CPU + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Release|ARM.ActiveCfg = Release|ARM + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Release|ARM.Build.0 = Release|ARM + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Release|iPhone.ActiveCfg = Release|Any CPU + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Release|iPhone.Build.0 = Release|Any CPU + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Release|iPhoneSimulator.Build.0 = Release|Any CPU + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Release|Mixed Platforms.ActiveCfg = Release|x86 + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Release|Mixed Platforms.Build.0 = Release|x86 + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Release|x64.ActiveCfg = Release|x64 + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Release|x64.Build.0 = Release|x64 + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Release|x86.ActiveCfg = Release|x86 + {F7C2BE8D-AC16-4786-A0C4-1945B1B61D08}.Release|x86.Build.0 = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/Parse/Internal/HttpClient/UWP/HttpClient.UWP.cs b/Parse/Internal/HttpClient/UWP/HttpClient.UWP.cs new file mode 100644 index 00000000..6939fc7c --- /dev/null +++ b/Parse/Internal/HttpClient/UWP/HttpClient.UWP.cs @@ -0,0 +1,165 @@ +// Copyright (c) 2015-present, Parse, LLC. All rights reserved. This source code is licensed under the BSD-style license found in the LICENSE file in the root directory of this source tree. An additional grant of patent rights can be found in the PATENTS file in the same directory. + +using System; +using System.IO; +using System.Net; +using System.Text; +using System.Threading; +using System.Threading.Tasks; + +namespace Parse.Internal { + internal class HttpClient : IHttpClient { + public Task> ExecuteAsync(HttpRequest httpRequest, + IProgress uploadProgress, + IProgress downloadProgress, + CancellationToken cancellationToken) { + HttpWebRequest request = HttpWebRequest.Create(httpRequest.Uri) as HttpWebRequest; + request.Method = httpRequest.Method; + cancellationToken.Register(() => request.Abort()); + uploadProgress = uploadProgress ?? new Progress(); + downloadProgress = downloadProgress ?? new Progress(); + + // Fill in zero-length data if method is post. + Stream data = httpRequest.Data; + if (httpRequest.Data == null && httpRequest.Method.ToLower().Equals("post")) { + data = new MemoryStream(new byte[0]); + } + + // Fill in the headers + if (httpRequest.Headers != null) { + foreach (var header in httpRequest.Headers) { + if (header.Key == "Content-Type") { + // Move over Content-Type header into Content. + request.ContentType = header.Value; + } else { + request.Headers[header.Key] = header.Value; + } + } + } + // Avoid aggressive caching on Windows Phone 8.1. + request.Headers["Cache-Control"] = "no-cache"; + + Task uploadTask = null; + + if (data != null) { + Task copyTask = null; + long totalLength = -1; + + try { + totalLength = data.Length; + } catch (NotSupportedException) { + } + + // If the length can't be determined, read it into memory first. + if (totalLength == -1) { + var memStream = new MemoryStream(); + copyTask = data.CopyToAsync(memStream).OnSuccess(_ => { + memStream.Seek(0, SeekOrigin.Begin); + totalLength = memStream.Length; + + data = memStream; + }); + } + + uploadProgress.Report(new ParseUploadProgressEventArgs { Progress = 0 }); + + uploadTask = copyTask.Safe().ContinueWith(_ => { + return request.GetRequestStreamAsync(); + }).Unwrap().OnSuccess(t => { + var requestStream = t.Result; + + int bufferSize = 4096; + byte[] buffer = new byte[bufferSize]; + int bytesRead = 0; + long readSoFar = 0; + + return InternalExtensions.WhileAsync(() => { + return data.ReadAsync(buffer, 0, bufferSize, cancellationToken).OnSuccess(readTask => { + bytesRead = readTask.Result; + return bytesRead > 0; + }); + }, () => { + cancellationToken.ThrowIfCancellationRequested(); + return requestStream.WriteAsync(buffer, 0, bytesRead, cancellationToken).OnSuccess(_ => { + cancellationToken.ThrowIfCancellationRequested(); + readSoFar += bytesRead; + uploadProgress.Report(new ParseUploadProgressEventArgs { Progress = 1.0 * readSoFar / totalLength }); + }); + }).ContinueWith(_ => { + //requestStream.Flush(); + requestStream.Dispose(); + return _; + }).Unwrap(); + }).Unwrap(); + } + + return uploadTask.Safe().OnSuccess(_ => { + return request.GetResponseAsync(); + }).Unwrap().ContinueWith(t => { + // Handle canceled + cancellationToken.ThrowIfCancellationRequested(); + + var resultStream = new MemoryStream(); + HttpWebResponse response = null; + if (t.IsFaulted) { + if (t.Exception.InnerException is WebException) { + var webException = t.Exception.InnerException as WebException; + response = (HttpWebResponse)webException.Response; + } else { + TaskCompletionSource> tcs = new TaskCompletionSource>(); + tcs.TrySetException(t.Exception); + + return tcs.Task; + } + } else { + response = (HttpWebResponse)t.Result; + } + + var responseStream = response.GetResponseStream(); + + int bufferSize = 4096; + byte[] buffer = new byte[bufferSize]; + int bytesRead = 0; + long totalLength = -1; + long readSoFar = 0; + + try { + totalLength = responseStream.Length; + } catch (NotSupportedException) { + } + + return InternalExtensions.WhileAsync(() => { + return responseStream.ReadAsync(buffer, 0, bufferSize, cancellationToken).OnSuccess(readTask => { + bytesRead = readTask.Result; + return bytesRead > 0; + }); + }, () => { + cancellationToken.ThrowIfCancellationRequested(); + + return resultStream.WriteAsync(buffer, 0, bytesRead, cancellationToken).OnSuccess(_ => { + cancellationToken.ThrowIfCancellationRequested(); + readSoFar += bytesRead; + + if (totalLength > -1) { + downloadProgress.Report(new ParseDownloadProgressEventArgs { Progress = 1.0 * readSoFar / totalLength }); + } + }); + }).ContinueWith(_ => { + responseStream.Dispose(); + return _; + }).Unwrap().OnSuccess(_ => { + // If getting stream size is not supported, then report download only once. + if (totalLength == -1) { + downloadProgress.Report(new ParseDownloadProgressEventArgs { Progress = 1.0 }); + } + + // Assume UTF-8 encoding. + var resultAsArray = resultStream.ToArray(); + var resultString = Encoding.UTF8.GetString(resultAsArray, 0, resultAsArray.Length); + resultStream.Dispose(); + return new Tuple(response.StatusCode, resultString); + }); + }).Unwrap(); + } + } +} diff --git a/Parse/Internal/PlatformHooks/UWP/PlatformHooks.UWP.cs b/Parse/Internal/PlatformHooks/UWP/PlatformHooks.UWP.cs new file mode 100644 index 00000000..5223ae4b --- /dev/null +++ b/Parse/Internal/PlatformHooks/UWP/PlatformHooks.UWP.cs @@ -0,0 +1,315 @@ +// Copyright (c) 2015-present, Parse, LLC. All rights reserved. This source code is licensed under the BSD-style license found in the LICENSE file in the root directory of this source tree. An additional grant of patent rights can be found in the PATENTS file in the same directory. + +using Parse.Internal; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Xml.Linq; +using Windows.ApplicationModel; +using Windows.Networking.PushNotifications; +using Windows.Storage; +using Windows.Storage.Streams; + +namespace Parse { + partial class PlatformHooks : IPlatformHooks { + /// + /// Future proofing: Right now there's only one valid channel for the app, but we will likely + /// want to allow additional channels for auxiliary tiles (i.e. a contacts app can have a new + /// channel for each contact and the UI needs to pop up on the right tile). The expansion job + /// generically has one _Installation field it passes to device-specific code, so we store a map + /// of tag -> channel URI. Right now, there is only one valid tag and it is automatic. + /// Unused variable warnings are suppressed because this const is used in WinRT and WinPhone but not NetFx. + /// + private static readonly string defaultChannelTag = "_Default"; + + // This must be wrapped in a property so other classes may continue on this task + // during their static initialization. + private static Lazy> getChannelTask = new Lazy>(() => + PushNotificationChannelManager.CreatePushNotificationChannelForApplicationAsync().AsTask() + ); + internal static Task GetChannelTask { + get { + return getChannelTask.Value; + } + } + + static PlatformHooks() { + var _ = GetChannelTask; + } + + private IHttpClient httpClient = null; + public IHttpClient HttpClient { + get { + httpClient = httpClient ?? new HttpClient(); + return httpClient; + } + } + + public string SDKName { + get { + return "winrt"; + } + } + + public string AppName { + get { + var task = Package.Current.InstalledLocation.GetFileAsync("AppxManifest.xml").AsTask().OnSuccess(t => { + return FileIO.ReadTextAsync(t.Result).AsTask(); + }).Unwrap().OnSuccess(t => { + var doc = XDocument.Parse(t.Result); + + // Define the default namespace to be used + var propertiesXName = XName.Get("Properties", "http://schemas.microsoft.com/appx/manifest/foundation/windows10"); + var displayNameXName = XName.Get("DisplayName", "http://schemas.microsoft.com/appx/manifest/foundation/windows10"); + + return doc.Descendants(propertiesXName).Single().Descendants(displayNameXName).Single().Value; + }); + task.Wait(); + return task.Result; + } + } + + public string AppBuildVersion { + get { + var version = Package.Current.Id.Version; + return string.Format("{0}.{1}.{2}.{3}", version.Major, version.Minor, version.Build, version.Revision); + } + } + + public string AppDisplayVersion { + get { + return AppBuildVersion; + } + } + + public string AppIdentifier { + get { + return Package.Current.Id.Name; + } + } + + public string OSVersion { + get { + // It's impossible to do with WinRT. + return ""; + } + } + + public string DeviceType { + get { + return "winrt"; + } + } + + public string DeviceTimeZone { + get { + string windowsName = TimeZoneInfo.Local.StandardName; + if (ParseInstallation.TimeZoneNameMap.ContainsKey(windowsName)) { + return ParseInstallation.TimeZoneNameMap[windowsName]; + } else { + return null; + } + } + } + + public void Initialize() { + // Do nothing. + } + + public Task ExecuteParseInstallationSaveHookAsync(ParseInstallation installation) { + return GetChannelTask.ContinueWith(t => { + installation.SetIfDifferent("deviceUris", new Dictionary { + { defaultChannelTag, t.Result.Uri } + }); + }); + } + + /// + /// Wraps the LocalSettings for Parse so that large strings can be stored in multiple keys. + /// It accomplishes this by adding a __Count version of the field and then splits the value + /// across __### fields. + /// + private class SettingsWrapper : IDictionary { + private static readonly object mutex = new object(); + private static readonly string Delimiter = "__"; + private static readonly string CountSuffix = Delimiter + "Count"; + private const int ShardSize = 1024; + private static SettingsWrapper wrapper; + public static SettingsWrapper Wrapper { + get { + lock (mutex) { + wrapper = wrapper ?? new SettingsWrapper(); + return wrapper; + } + } + } + + private readonly IDictionary data; + private SettingsWrapper() { + var container = ApplicationData.Current.LocalSettings + .CreateContainer("Parse", ApplicationDataCreateDisposition.Always); + data = container.Values; + } + + public void Add(string key, object value) { + lock (mutex) { + if (ContainsKey(key)) { + throw new ArgumentException("Key already exists in dictionary.", "key"); + } + this[key] = value; + } + } + + public bool ContainsKey(string key) { + lock (mutex) { + return data.ContainsKey(key) || data.ContainsKey(key + CountSuffix); + } + } + + public ICollection Keys { + get { + lock (mutex) { + return (from k in data.Keys + where k.EndsWith(CountSuffix) || !k.Contains(Delimiter) + select k.Split(new string[] { Delimiter }, + 1, StringSplitOptions.None)[0]).ToList(); + } + } + } + + public bool Remove(string key) { + lock (mutex) { + var suffixed = key + CountSuffix; + if (data.ContainsKey(suffixed)) { + int count = (int)data[suffixed]; + data.Remove(suffixed); + var delimitedKey = key + Delimiter; + for (int i = 0; i < count; i++) { + data.Remove(delimitedKey + i); + } + return true; + } + if (data.Remove(key)) { + return true; + } + return false; + } + } + + public bool TryGetValue(string key, out object value) { + lock (mutex) { + var suffixed = key + CountSuffix; + if (data.ContainsKey(suffixed)) { + // Reassemble the sharded string. + int count = (int)data[suffixed]; + var builder = new StringBuilder(count * ShardSize); + var delimitedKey = key + Delimiter; + for (int i = 0; i < count; i++) { + object shard; + if (!data.TryGetValue(delimitedKey + i, out shard)) { + value = null; + return false; + } + builder.Append((string)shard); + } + value = builder.ToString(); + return true; + } + return data.TryGetValue(key, out value); + } + } + + public ICollection Values { + get { + lock (mutex) { + return (from k in Keys + select this[k]).ToList(); + } + } + } + + public object this[string key] { + get { + object value; + if (TryGetValue(key, out value)) { + return value; + } + throw new IndexOutOfRangeException(); + } + set { + lock (mutex) { + this.Remove(key); + // If the value is a large string (> 1k characters), split it into multiple shards. + var stringValue = value as string; + if (stringValue != null && stringValue.Length > ShardSize) { + var delimitedKey = key + Delimiter; + int count = 0; + for (int start = 0; start < stringValue.Length; start += ShardSize) { + string shard = stringValue.Substring(start, + Math.Min(ShardSize, stringValue.Length - start)); + data[delimitedKey + count] = shard; + count++; + } + data[key + CountSuffix] = count; + } else { + data[key] = value; + } + } + } + } + + public void Add(KeyValuePair item) { + this.Add(item.Key, item.Value); + } + + public void Clear() { + lock (mutex) { + data.Clear(); + } + } + + public bool Contains(KeyValuePair item) { + lock (mutex) { + return this.ContainsKey(item.Key) && this[item.Key] == item.Value; + } + } + + public void CopyTo(KeyValuePair[] array, int arrayIndex) { + this.ToList().CopyTo(array, arrayIndex); + } + + public int Count { + get { return Keys.Count; } + } + + public bool IsReadOnly { + get { return false; } + } + + public bool Remove(KeyValuePair item) { + lock (mutex) { + if (!this.Contains(item)) { + return false; + } + return this.Remove(item.Key); + } + } + + public IEnumerator> GetEnumerator() { + return (from k in this.Keys + select new KeyValuePair(k, this[k])).GetEnumerator(); + } + + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { + return this.GetEnumerator(); + } + } + public IDictionary ApplicationSettings { + get { + return SettingsWrapper.Wrapper; + } + } + } +} diff --git a/Parse/Parse.Android.csproj b/Parse/Parse.Android.csproj index abdf89fd..d301c188 100644 --- a/Parse/Parse.Android.csproj +++ b/Parse/Parse.Android.csproj @@ -58,6 +58,7 @@ **\Unity\**; **\WinRT\**; **\SettingsStorage\**; + **\UWP\**; diff --git a/Parse/Parse.Unity.csproj b/Parse/Parse.Unity.csproj index 91836156..ad11c94c 100644 --- a/Parse/Parse.Unity.csproj +++ b/Parse/Parse.Unity.csproj @@ -52,15 +52,16 @@ - **\Android\**; - **\iOS\**; - **\Mono\**; - **\NetFx45\**; - **\Phone\**; - **\WinRT\**; - **\SettingsStorage\**; - **\ParseQueryExtensions.cs; - + **\Android\**; + **\iOS\**; + **\Mono\**; + **\NetFx45\**; + **\Phone\**; + **\WinRT\**; + **\SettingsStorage\**; + **\ParseQueryExtensions.cs; + **\UWP\**; + diff --git a/Parse/Parse.csproj b/Parse/Parse.csproj index a6fcc792..79213b9e 100644 --- a/Parse/Parse.csproj +++ b/Parse/Parse.csproj @@ -50,6 +50,7 @@ **\Unity\**; **\WinRT\**; **\SettingsStorage\**; + **\UWP\**; diff --git a/Parse/Parse.iOS.csproj b/Parse/Parse.iOS.csproj index e2c40773..328e6b1f 100644 --- a/Parse/Parse.iOS.csproj +++ b/Parse/Parse.iOS.csproj @@ -111,6 +111,7 @@ **\Unity\**; **\WinRT\**; **\SettingsStorage\**; + **\UWP\**; diff --git a/Parse/Properties/AssemblyInfo.Portable.cs b/Parse/Properties/AssemblyInfo.Portable.cs index 4dc17ccb..511afbe4 100644 --- a/Parse/Properties/AssemblyInfo.Portable.cs +++ b/Parse/Properties/AssemblyInfo.Portable.cs @@ -7,6 +7,7 @@ // Internal visibility for platform-specific libraries. [assembly: InternalsVisibleTo("Parse.WinRT")] +[assembly: InternalsVisibleTo("Parse.UWP")] [assembly: InternalsVisibleTo("Parse.NetFx45")] [assembly: InternalsVisibleTo("Parse.Phone")] diff --git a/Parse/Public/ParseClient.cs b/Parse/Public/ParseClient.cs index 05e49c38..d95df429 100644 --- a/Parse/Public/ParseClient.cs +++ b/Parse/Public/ParseClient.cs @@ -52,7 +52,7 @@ public struct Configuration { private static readonly object mutex = new object(); private static readonly string[] assemblyNames = { - "Parse.Phone", "Parse.WinRT", "Parse.NetFx45", "Parse.iOS", "Parse.Android", "Parse.Unity" + "Parse.Phone", "Parse.WinRT", "Parse.UWP", "Parse.NetFx45", "Parse.iOS", "Parse.Android", "Parse.Unity" }; static ParseClient() { diff --git a/Parse/Public/UWP/ParseAnalytics.UWP.cs b/Parse/Public/UWP/ParseAnalytics.UWP.cs new file mode 100644 index 00000000..c26b3d5f --- /dev/null +++ b/Parse/Public/UWP/ParseAnalytics.UWP.cs @@ -0,0 +1,44 @@ +// Copyright (c) 2015-present, Parse, LLC. All rights reserved. This source code is licensed under the BSD-style license found in the LICENSE file in the root directory of this source tree. An additional grant of patent rights can be found in the PATENTS file in the same directory. + +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Runtime.Serialization; +using System.Runtime.Serialization.Json; +using System.Text; +using System.Threading.Tasks; +using Windows.ApplicationModel.Activation; +using Parse.Internal.Analytics.Controller; + +using Parse.Internal; + +namespace Parse { + public static partial class ParseAnalytics { + /// + /// Tracks this application being launched. If the LaunchActivatedEventArgs + /// parameter contains push data passed through from a Toast's "launch" + /// parameter, then we extract and report information to correlate this + /// application open with that push. + /// + /// The LaunchActivatedEventArgs available in an + /// Application.OnLaunched override. + /// An Async Task that can be waited on or ignored. + public static Task TrackAppOpenedAsync(ILaunchActivatedEventArgs launchArgs) { + // Short-circuit if the Launch event isn't from an actual app launch. + // We'll still phone home if the launchArgs passed in is null, though, + // so here we only check for a non-Launch ActivationKind. + if (launchArgs != null && launchArgs.Kind != ActivationKind.Launch) { + return ((Task)null).Safe(); + } + + IDictionary contentJson = ParsePush.PushJson(launchArgs); + object alert; + string pushHash = null; + if(contentJson.TryGetValue("alert", out alert)) { + pushHash = ParseAnalyticsUtilities.MD5DigestFromPushPayload(alert); + } + return ParseAnalytics.TrackAppOpenedWithPushHashAsync(pushHash); + } + } +} diff --git a/Parse/Public/UWP/ParseFacebookUtils.UWP.cs b/Parse/Public/UWP/ParseFacebookUtils.UWP.cs new file mode 100644 index 00000000..56611402 --- /dev/null +++ b/Parse/Public/UWP/ParseFacebookUtils.UWP.cs @@ -0,0 +1,189 @@ +// Copyright (c) 2015-present, Parse, LLC. All rights reserved. This source code is licensed under the BSD-style license found in the LICENSE file in the root directory of this source tree. An additional grant of patent rights can be found in the PATENTS file in the same directory. + +using Parse.Internal; +using System; +using System.Collections.Generic; +using System.Threading; +using System.Threading.Tasks; +using Windows.Security.Authentication.Web; +using Windows.UI.Xaml.Controls; +using Windows.UI.Xaml.Navigation; + +namespace Parse { + public static partial class ParseFacebookUtils { + /// + /// Logs in a using Facebook for authentication. If a user for the + /// given Facebook credentials does not already exist, a new user will be created. + /// + /// The user will be logged in through Facebook's OAuth web flow using the Windows + /// WebAuthenticationBroker. + /// + /// A list of Facebook permissions to request. + /// The cancellation token. + /// The user that was either logged in or created. + public static async Task LogInAsync(IEnumerable permissions, + CancellationToken cancellationToken) { + var cts = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken); + authProvider.Permissions = permissions; + authProvider.ResponseUrlOverride = WebAuthenticationBroker.GetCurrentApplicationCallbackUri(); + Action navigate = async uri => { + var result = await WebAuthenticationBroker.AuthenticateAsync(WebAuthenticationOptions.None, + uri); + if (result.ResponseStatus != WebAuthenticationStatus.Success) { + cts.Cancel(); + } else { + authProvider.HandleNavigation(new Uri(result.ResponseData)); + } + }; + authProvider.Navigate += navigate; + try { + return await ParseUser.LogInWithAsync("facebook", cts.Token); + } finally { + authProvider.Navigate -= navigate; + authProvider.ResponseUrlOverride = null; + } + } + + /// + /// Links a to a Facebook account, allowing you to use Facebook + /// for authentication, and providing access to Facebook data for the user. + /// + /// The user will be logged in through Facebook's OAuth web flow using the Windows + /// WebAuthenticationBroker. + /// + /// The user to link with Facebook. + /// A list of Facebook permissions to request. + /// The cancellation token. + public static async Task LinkAsync(ParseUser user, + IEnumerable permissions, + CancellationToken cancellationToken) { + var cts = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken); + authProvider.Permissions = permissions; + Action navigate = async uri => { + var result = await WebAuthenticationBroker.AuthenticateAsync(WebAuthenticationOptions.None, + uri, + FacebookAuthenticationProvider.ResponseUrl); + if (result.ResponseStatus != WebAuthenticationStatus.Success) { + cts.Cancel(); + } else { + authProvider.HandleNavigation(new Uri(result.ResponseData)); + } + }; + authProvider.Navigate += navigate; + try { + await user.LinkWithAsync("facebook", cts.Token); + } finally { + authProvider.Navigate -= navigate; + } + } + + /// + /// Logs in a using Facebook for authentication. If a user for the + /// given Facebook credentials does not already exist, a new user will be created. + /// + /// The user will be logged in through Facebook's OAuth web flow using the Windows + /// WebAuthenticationBroker. + /// + /// A list of Facebook permissions to request. + /// The user that was either logged in or created. + public static Task LogInAsync(IEnumerable permissions) { + return LogInAsync(permissions, CancellationToken.None); + } + + /// + /// Links a to a Facebook account, allowing you to use Facebook + /// for authentication, and providing access to Facebook data for the user. + /// + /// The user will be logged in through Facebook's OAuth web flow using the Windows + /// WebAuthenticationBroker. + /// + /// The user to link with Facebook. + /// A list of Facebook permissions to request. + public static Task LinkAsync(ParseUser user, + IEnumerable permissions) { + return LinkAsync(user, permissions, CancellationToken.None); + } + + /// + /// Logs in a using Facebook for authentication. If a user for the + /// given Facebook credentials does not already exist, a new user will be created. + /// + /// The user will be logged in through Facebook's OAuth web flow, so you must supply a + /// that will be navigated to Facebook's authentication pages. + /// + /// A web view that will be used to present the authorization pages + /// to the user. + /// A list of Facebook permissions to request. + /// The cancellation token. + /// The user that was either logged in or created. + public static async Task LogInAsync(WebView webView, + IEnumerable permissions, + CancellationToken cancellationToken) { + authProvider.Permissions = permissions; + LoadCompletedEventHandler loadCompleted = (_, e) => authProvider.HandleNavigation(e.Uri); + webView.LoadCompleted += loadCompleted; + Action navigate = uri => webView.Navigate(uri); + authProvider.Navigate += navigate; + var result = await ParseUser.LogInWithAsync("facebook", cancellationToken); + authProvider.Navigate -= navigate; + webView.LoadCompleted -= loadCompleted; + return result; + } + + /// + /// Links a to a Facebook account, allowing you to use Facebook + /// for authentication, and providing access to Facebook data for the user. + /// + /// The user will be logged in through Facebook's OAuth web flow, so you must supply a + /// that will be navigated to Facebook's authentication pages. + /// + /// The user to link with Facebook. + /// A web view that will be used to present the authorization pages + /// to the user. + /// A list of Facebook permissions to request. + /// The cancellation token. + public static async Task LinkAsync(ParseUser user, + WebView webView, + IEnumerable permissions, + CancellationToken cancellationToken) { + authProvider.Permissions = permissions; + LoadCompletedEventHandler loadCompleted = (_, e) => authProvider.HandleNavigation(e.Uri); + webView.LoadCompleted += loadCompleted; + Action navigate = uri => webView.Navigate(uri); + authProvider.Navigate += navigate; + await user.LinkWithAsync("facebook", cancellationToken); + authProvider.Navigate -= navigate; + webView.LoadCompleted -= loadCompleted; + } + + /// + /// Logs in a using Facebook for authentication. If a user for the + /// given Facebook credentials does not already exist, a new user will be created. + /// + /// The user will be logged in through Facebook's OAuth web flow, so you must supply a + /// that will be navigated to Facebook's authentication pages. + /// + /// A web view that will be used to present the authorization pages + /// to the user. + /// A list of Facebook permissions to request. + /// The user that was either logged in or created. + public static Task LogInAsync(WebView webView, IEnumerable permissions) { + return LogInAsync(webView, permissions, CancellationToken.None); + } + + /// + /// Links a to a Facebook account, allowing you to use Facebook + /// for authentication, and providing access to Facebook data for the user. + /// + /// The user will be logged in through Facebook's OAuth web flow, so you must supply a + /// that will be navigated to Facebook's authentication pages. + /// + /// The user to link with Facebook. + /// A web view that will be used to present the authorization pages + /// to the user. + /// A list of Facebook permissions to request. + public static Task LinkAsync(ParseUser user, WebView webView, IEnumerable permissions) { + return LinkAsync(user, webView, permissions, CancellationToken.None); + } + } +} diff --git a/Parse/Public/UWP/ParsePush.UWP.cs b/Parse/Public/UWP/ParsePush.UWP.cs new file mode 100644 index 00000000..e1af6315 --- /dev/null +++ b/Parse/Public/UWP/ParsePush.UWP.cs @@ -0,0 +1,105 @@ +// Copyright (c) 2015-present, Parse, LLC. All rights reserved. This source code is licensed under the BSD-style license found in the LICENSE file in the root directory of this source tree. An additional grant of patent rights can be found in the PATENTS file in the same directory. + +using Parse.Internal; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Windows.ApplicationModel.Activation; +using Windows.Networking.PushNotifications; +using Windows.UI.Notifications; + +namespace Parse { + public partial class ParsePush { + + static ParsePush() { + PlatformHooks.GetChannelTask.ContinueWith(t => + t.Result.PushNotificationReceived += (sender, args) => { + PushNotificationReceived(ParseInstallation.CurrentInstallation, args); + + var payload = PushJson(args); + var handler = parsePushNotificationReceived; + if (handler != null) { + handler.Invoke(ParseInstallation.CurrentInstallation, new ParsePushNotificationEventArgs(payload)); + } + } + ); + } + + /// + /// An event fired when a push notification of any type (i.e. toast, tile, badge, or raw) is + /// received. + /// + public static event EventHandler PushNotificationReceived; + + /// + /// An event fired when a toast notification is received. + /// + public static event EventHandler ToastNotificationReceived { + add { + PushNotificationReceived += value; + } + remove { + PushNotificationReceived -= value; + } + } + + /// + /// Helper method to extract the full Push JSON provided to Parse, including any + /// non-visual custom information. Overloads exist for all data types which may be + /// provided by Windows, I.E. LaunchActivatedEventArgs and PushNotificationReceivedEventArgs. + /// Returns an empty dictionary if this push type cannot include non-visual data or + /// this event was not triggered by a push. + /// + public static IDictionary PushJson(ILaunchActivatedEventArgs eventArgs) { + if (eventArgs == null || + eventArgs.Kind != ActivationKind.Launch || + eventArgs.Arguments == null) { + return new Dictionary(); + } + return PushJson(eventArgs.Arguments); + } + + /// + /// Helper method to extract the full Push JSON provided to Parse, including any + /// non-visual custom information. Overloads exist for all data types which may be + /// provided by Windows, I.E. LaunchActivatedEventArgs and PushNotificationReceivedEventArgs. + /// Returns an empty dictionary if this push type cannot include non-visual data or + /// this event was not triggered by a push. + /// + public static IDictionary PushJson(PushNotificationReceivedEventArgs eventArgs) { + var toast = eventArgs.ToastNotification; + if (toast == null) { + return new Dictionary(); + } + return PushJson(toast); + } + + /// + /// Because the Windows API doesn't allow us to create a PushNotificationReceivedEventArgs, nor is there + /// an interface for the class, we cannot test the PushJson(PNREA) method at all. We will instead try to + /// make it as small as possible and test a method that uses the first class which does allow instantiation. + /// + /// + /// + internal static IDictionary PushJson(ToastNotification toast) { + var xml = toast.Content; + var node = xml.GetElementsByTagName("toast")[0].Attributes.GetNamedItem("launch"); + if (node == null) { + return new Dictionary(); + } + return PushJson((string)node.NodeValue); + } + + private static IDictionary PushJson(string jsonString) { + try { + return ParseClient.DeserializeJsonString(jsonString) ?? new Dictionary(); + } catch (Exception) { + return new Dictionary(); + } + } + } + + +}