diff --git a/MainPage.xaml.cs b/MainPage.xaml.cs index ca6aa39045e2b70bacad43be3cdb823d174a41ba..8653de70ab4ee5a2c169fc0cda046b9538b50e3c 100644 --- a/MainPage.xaml.cs +++ b/MainPage.xaml.cs @@ -1,146 +1,146 @@ -using System; -using System.Collections.Generic; -using System.IO; -using System.Linq; -using System.Runtime.InteropServices.WindowsRuntime; -using Windows.Foundation; -using Windows.Foundation.Collections; -using Windows.UI.Xaml; -using Windows.UI.Xaml.Controls; -using Windows.UI.Xaml.Controls.Primitives; -using Windows.UI.Xaml.Data; -using Windows.UI.Xaml.Input; -using Windows.UI.Xaml.Media; -using Windows.UI.Xaml.Navigation; - -using DL_uFCoder; - -// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=402352&clcid=0x409 - -namespace Test_uFCoder_lib -{ - - /// - /// An empty page that can be used on its own or navigated to within a Frame. - /// - public sealed partial class MainPage : Page - { - private UFR_STATUS status; - +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Runtime.InteropServices.WindowsRuntime; +using Windows.Foundation; +using Windows.Foundation.Collections; +using Windows.UI.Xaml; +using Windows.UI.Xaml.Controls; +using Windows.UI.Xaml.Controls.Primitives; +using Windows.UI.Xaml.Data; +using Windows.UI.Xaml.Input; +using Windows.UI.Xaml.Media; +using Windows.UI.Xaml.Navigation; + +using DL_uFCoder; + +// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=402352&clcid=0x409 + +namespace Test_uFCoder_lib +{ + + /// + /// An empty page that can be used on its own or navigated to within a Frame. + /// + public sealed partial class MainPage : Page + { + private UFR_STATUS status; + private int rd_op_a0 = 1; private int rd_op_a2 = 1; private string rd_op_statmsg = "ReaderOpenEx(1, 0, 1, 0)"; - private void prnl(string msg) - { - txtOut.Text += msg; - txtOut.Text += System.Environment.NewLine; - } - - private void wr_stat(string msg) - { - string m = msg; - m += " : "; - m += uFCoder.status2str(status); - - prnl(m); - } - - public MainPage() - { - this.InitializeComponent(); - string ver; - + private void prnl(string msg) + { + txtOut.Text += msg; + txtOut.Text += System.Environment.NewLine; + } + + private void wr_stat(string msg) + { + string m = msg; + m += " : "; + m += uFCoder.status2str(status); + + prnl(m); + } + + public MainPage() + { + this.InitializeComponent(); + string ver; + eRdOpA0.Text = rd_op_a0.ToString(); eRdOpA2.Text = rd_op_a2.ToString(); eRdOp.Text = rd_op_statmsg; - try - { - ver = "DLL version= "; - ver += uFCoder.GetLibraryVersion(); - } - catch (Exception ee) - { - ver = ee.Message; - } - - prnl(ver); - - reader_open(); - } - - private void reader_open() - { - try - { - - status = uFCoder.ReaderOpenEx(2, IntPtr.Zero, 1, IntPtr.Zero); - wr_stat("ReaderOpenEx(2, 0, 1, 0) : RS232 115200 bps"); - - // status = uFCoder.ReaderOpenEx(1, IntPtr.Zero, 1, IntPtr.Zero); - // wr_stat("ReaderOpenEx(1, 0, 1, 0)"); + try + { + ver = "DLL version= "; + ver += uFCoder.GetLibraryVersion(); + } + catch (Exception ee) + { + ver = ee.Message; + } + + prnl(ver); + + reader_open(); + } + + private void reader_open() + { + try + { + + status = uFCoder.ReaderOpenEx(2, IntPtr.Zero, 1, IntPtr.Zero); + wr_stat("ReaderOpenEx(2, 0, 1, 0) : RS232 115200 bps"); + + // status = uFCoder.ReaderOpenEx(1, IntPtr.Zero, 1, IntPtr.Zero); + // wr_stat("ReaderOpenEx(1, 0, 1, 0)"); uFCoder.ReaderUISignal(3, 3); - } - catch (Exception ee) - { - prnl(ee.Message); - //throw; - } - } - - private void bRdOpen_Click(object sender, RoutedEventArgs e) - { - reader_open(); - } - - private void bRdClose_Click(object sender, RoutedEventArgs e) - { - status = uFCoder.ReaderClose(); - wr_stat("ReaderClose()"); - } - - private void bRdInfo_Click(object sender, RoutedEventArgs e) - { - string reader_dsc = uFCoder.GetDescription(); - prnl(reader_dsc); - } - - private void bRdSignal_Click(object sender, RoutedEventArgs e) - { - status = uFCoder.ReaderUISignal(3, 3); - wr_stat("ReaderUISignal(3, 3)"); - } - + } + catch (Exception ee) + { + prnl(ee.Message); + //throw; + } + } + + private void bRdOpen_Click(object sender, RoutedEventArgs e) + { + reader_open(); + } + + private void bRdClose_Click(object sender, RoutedEventArgs e) + { + status = uFCoder.ReaderClose(); + wr_stat("ReaderClose()"); + } + + private void bRdInfo_Click(object sender, RoutedEventArgs e) + { + string reader_dsc = uFCoder.GetDescription(); + prnl(reader_dsc); + } + + private void bRdSignal_Click(object sender, RoutedEventArgs e) + { + status = uFCoder.ReaderUISignal(3, 3); + wr_stat("ReaderUISignal(3, 3)"); + } + void RdCardID() - { - CARD_SAK Sak = CARD_SAK.UNKNOWN; - byte[] baUid = new byte[10]; - - status = uFCoder.GetCardIdEx(ref Sak, ref baUid); - wr_stat("GetCardIdEx()"); - - if (status == UFR_STATUS.UFR_OK) - { - string s; - string hex = BitConverter.ToString(baUid); - - s = "CARD: SAK= " + Sak.ToString() + " | "; - s += "UidSize= " + baUid.Length + " | "; - s += "Uid= " + BitConverter.ToString(baUid); - prnl(s); - } - } + { + CARD_SAK Sak = CARD_SAK.UNKNOWN; + byte[] baUid = new byte[10]; + + status = uFCoder.GetCardIdEx(ref Sak, ref baUid); + wr_stat("GetCardIdEx()"); + + if (status == UFR_STATUS.UFR_OK) + { + string s; + string hex = BitConverter.ToString(baUid); + + s = "CARD: SAK= " + Sak.ToString() + " | "; + s += "UidSize= " + baUid.Length + " | "; + s += "Uid= " + BitConverter.ToString(baUid); + prnl(s); + } + } private void bRdCardID_Click(object sender, RoutedEventArgs e) { RdCardID(); } - - private void bClearLog_Click(object sender, RoutedEventArgs e) - { - txtOut.Text = String.Empty; - } + + private void bClearLog_Click(object sender, RoutedEventArgs e) + { + txtOut.Text = String.Empty; + } private void rd_open_ex_update() { @@ -189,5 +189,5 @@ namespace Test_uFCoder_lib //throw; } } - } -} + } +} diff --git a/Package.appxmanifest b/Package.appxmanifest index eb7f24e5a22cc370e59093fd1db7df3e8a9e8200..df898c8a6c735b1e96ad2de0b66ab4750af0ca09 100644 --- a/Package.appxmanifest +++ b/Package.appxmanifest @@ -1,6 +1,6 @@  - + uFR-IoT-demo diff --git a/Package.xml b/Package.xml new file mode 100644 index 0000000000000000000000000000000000000000..dabe9cc4b44beee3bcdecd6f9a6d9e36a255e565 --- /dev/null +++ b/Package.xml @@ -0,0 +1,369 @@ + + + CN=000315FB-9F45-4A96-A69A-BAF2543C980B + Digital Logic RnD Ltd. + MSA + http://www.w3.org/2001/04/xmlenc#sha256 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + DigitalLogicLtd.uFR-IoT-demo + + uFR-IoT-demo + + + + + \ No newline at end of file diff --git a/Test_uFCoder_lib.csproj b/Test_uFCoder_lib.csproj index 39f21a2697fe4062abe98b204bc2443c051ad98d..652313d0cc769e0961b2966198bcd21d26b28dc8 100644 --- a/Test_uFCoder_lib.csproj +++ b/Test_uFCoder_lib.csproj @@ -20,7 +20,7 @@ True True Always - arm + x86|x64|arm 6F3B23FA39BBDAE2075F2CBD41E7D14041642B88 @@ -37,7 +37,7 @@ bin\x86\Release\ - TRACE;NETFX_CORE;WINDOWS_UWP + _WIN32;NETFX_CORE;WINDOWS_UWP true ;2008 pdbonly @@ -50,7 +50,7 @@ true bin\ARM\Debug\ - TRACE;NETFX_CORE;WINDOWS_UWP;CODE_ANALYSIS + DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP;CODE_ANALYSIS ;2008;1591 full ARM @@ -63,7 +63,7 @@ bin\ARM\Release\ - TRACE;NETFX_CORE;WINDOWS_UWP + NETFX_CORE;WINDOWS_UWP true ;2008;1591 pdbonly @@ -88,7 +88,7 @@ bin\x64\Release\ - TRACE;NETFX_CORE;WINDOWS_UWP + _WIN64;NETFX_CORE;WINDOWS_UWP true ;2008 pdbonly @@ -120,6 +120,25 @@ + + + Always + + + Always + + + Always + + + Always + + + Always + + + Always + @@ -129,12 +148,6 @@ - - Always - - - Always - @@ -162,11 +175,11 @@ false - \ No newline at end of file diff --git a/lib b/lib index 1173d665ba6a3f1224fdff2e3cbbc6f52167ab44..7828022cfd0089afa9137e007f84a6dbd77af129 160000 --- a/lib +++ b/lib @@ -1 +1 @@ -Subproject commit 1173d665ba6a3f1224fdff2e3cbbc6f52167ab44 +Subproject commit 7828022cfd0089afa9137e007f84a6dbd77af129 diff --git a/project.lock.json b/project.lock.json index 2259ce18c5eb3b98ee0dc9a20588808b43d7cbd1..9c9d02bfdba2d538edc10106e688c675456f8269 100644 --- a/project.lock.json +++ b/project.lock.json @@ -1,8 +1,7 @@ { - "locked": false, - "version": 2, + "version": 3, "targets": { - "UAP,Version=v10.0": { + "UAP,Version=v10.0.10240": { "Microsoft.CSharp/4.0.0": { "type": "package", "dependencies": { @@ -1886,7 +1885,7 @@ } } }, - "UAP,Version=v10.0/win10-arm": { + "UAP,Version=v10.0.10240/win10-arm": { "Microsoft.CSharp/4.0.0": { "type": "package", "dependencies": { @@ -3627,7 +3626,7 @@ } } }, - "UAP,Version=v10.0/win10-arm-aot": { + "UAP,Version=v10.0.10240/win10-arm-aot": { "Microsoft.CSharp/4.0.0": { "type": "package", "dependencies": { @@ -5331,7 +5330,7 @@ } } }, - "UAP,Version=v10.0/win10-x64": { + "UAP,Version=v10.0.10240/win10-x64": { "Microsoft.CSharp/4.0.0": { "type": "package", "dependencies": { @@ -7079,7 +7078,7 @@ } } }, - "UAP,Version=v10.0/win10-x64-aot": { + "UAP,Version=v10.0.10240/win10-x64-aot": { "Microsoft.CSharp/4.0.0": { "type": "package", "dependencies": { @@ -8783,7 +8782,7 @@ } } }, - "UAP,Version=v10.0/win10-x86": { + "UAP,Version=v10.0.10240/win10-x86": { "Microsoft.CSharp/4.0.0": { "type": "package", "dependencies": { @@ -10531,7 +10530,7 @@ } } }, - "UAP,Version=v10.0/win10-x86-aot": { + "UAP,Version=v10.0.10240/win10-x86-aot": { "Microsoft.CSharp/4.0.0": { "type": "package", "dependencies": { @@ -12240,9 +12239,8 @@ "Microsoft.CSharp/4.0.0": { "sha512": "oWqeKUxHXdK6dL2CFjgMcaBISbkk+AqEg+yvJHE4DElNzS4QaTsCflgkkqZwVlWby1Dg9zo9n+iCAMFefFdJ/A==", "type": "package", + "path": "microsoft.csharp/4.0.0", "files": [ - "Microsoft.CSharp.4.0.0.nupkg.sha512", - "Microsoft.CSharp.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/dotnet/Microsoft.CSharp.dll", @@ -12253,6 +12251,8 @@ "lib/wpa81/_._", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", + "microsoft.csharp.4.0.0.nupkg.sha512", + "microsoft.csharp.nuspec", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/dotnet/Microsoft.CSharp.dll", @@ -12279,27 +12279,28 @@ "Microsoft.NETCore/5.0.0": { "sha512": "QQMp0yYQbIdfkKhdEE6Umh2Xonau7tasG36Trw/YlHoWgYQLp7T9L+ZD8EPvdj5ubRhtOuKEKwM7HMpkagB9ZA==", "type": "package", + "path": "microsoft.netcore/5.0.0", "files": [ - "Microsoft.NETCore.5.0.0.nupkg.sha512", - "Microsoft.NETCore.nuspec", - "_._" + "_._", + "microsoft.netcore.5.0.0.nupkg.sha512", + "microsoft.netcore.nuspec" ] }, "Microsoft.NETCore.Platforms/1.0.0": { "sha512": "0N77OwGZpXqUco2C/ynv1os7HqdFYifvNIbveLDKqL5PZaz05Rl9enCwVBjF61aumHKueLWIJ3prnmdAXxww4A==", "type": "package", + "path": "microsoft.netcore.platforms/1.0.0", "files": [ - "Microsoft.NETCore.Platforms.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Platforms.nuspec", + "microsoft.netcore.platforms.1.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", "runtime.json" ] }, "Microsoft.NETCore.Portable.Compatibility/1.0.0": { "sha512": "5/IFqf2zN1jzktRJitxO+5kQ+0AilcIbPvSojSJwDG3cGNSMZg44LXLB5E9RkSETE0Wh4QoALdNh1koKoF7/mA==", "type": "package", + "path": "microsoft.netcore.portable.compatibility/1.0.0", "files": [ - "Microsoft.NETCore.Portable.Compatibility.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Portable.Compatibility.nuspec", "lib/dnxcore50/System.ComponentModel.DataAnnotations.dll", "lib/dnxcore50/System.Core.dll", "lib/dnxcore50/System.Net.dll", @@ -12328,6 +12329,8 @@ "lib/win8/_._", "lib/wp80/_._", "lib/wpa81/_._", + "microsoft.netcore.portable.compatibility.1.0.0.nupkg.sha512", + "microsoft.netcore.portable.compatibility.nuspec", "ref/dotnet/System.ComponentModel.DataAnnotations.dll", "ref/dotnet/System.Core.dll", "ref/dotnet/System.Net.dll", @@ -12376,18 +12379,20 @@ "Microsoft.NETCore.Runtime/1.0.0": { "sha512": "AjaMNpXLW4miEQorIqyn6iQ+BZBId6qXkhwyeh1vl6kXLqosZusbwmLNlvj/xllSQrd3aImJbvlHusam85g+xQ==", "type": "package", + "path": "microsoft.netcore.runtime/1.0.0", "files": [ - "Microsoft.NETCore.Runtime.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Runtime.nuspec", + "microsoft.netcore.runtime.1.0.0.nupkg.sha512", + "microsoft.netcore.runtime.nuspec", "runtime.json" ] }, "Microsoft.NETCore.Runtime.CoreCLR-arm/1.0.0": { - "sha512": "vUQyaKbHCa7BJAAzdfCP2FfBYOSt0YnDw7VMJLmD1/k68HIJgw1QO7GAfHhqoa39zkkvimC47QBH27wG4C5OGQ==", + "sha512": "hoJfIl981eXwn9Tz8onO/J1xaYApIfp/YrhjSh9rRhml1U5Wj80LBgyp/6n+KI3VlvcAraThhnHnCTp+M3Uh+w==", "type": "package", + "path": "microsoft.netcore.runtime.coreclr-arm/1.0.0", "files": [ - "Microsoft.NETCore.Runtime.CoreCLR-arm.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Runtime.CoreCLR-arm.nuspec", + "microsoft.netcore.runtime.coreclr-arm.1.0.0.nupkg.sha512", + "microsoft.netcore.runtime.coreclr-arm.nuspec", "ref/dotnet/_._", "runtimes/win8-arm/lib/dotnet/mscorlib.ni.dll", "runtimes/win8-arm/native/clretwrc.dll", @@ -12402,9 +12407,10 @@ "Microsoft.NETCore.Runtime.CoreCLR-x64/1.0.0": { "sha512": "DaY5Z13xCZpnVIGluC5sCo4/0wy1rl6mptBH7v3RYi3guAmG88aSeFoQzyZepo0H0jEixUxNFM0+MB6Jc+j0bw==", "type": "package", + "path": "microsoft.netcore.runtime.coreclr-x64/1.0.0", "files": [ - "Microsoft.NETCore.Runtime.CoreCLR-x64.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Runtime.CoreCLR-x64.nuspec", + "microsoft.netcore.runtime.coreclr-x64.1.0.0.nupkg.sha512", + "microsoft.netcore.runtime.coreclr-x64.nuspec", "ref/dotnet/_._", "runtimes/win7-x64/lib/dotnet/mscorlib.ni.dll", "runtimes/win7-x64/native/clretwrc.dll", @@ -12419,9 +12425,10 @@ "Microsoft.NETCore.Runtime.CoreCLR-x86/1.0.0": { "sha512": "2LDffu5Is/X01GVPVuye4Wmz9/SyGDNq1Opgl5bXG3206cwNiCwsQgILOtfSWVp5mn4w401+8cjhBy3THW8HQQ==", "type": "package", + "path": "microsoft.netcore.runtime.coreclr-x86/1.0.0", "files": [ - "Microsoft.NETCore.Runtime.CoreCLR-x86.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Runtime.CoreCLR-x86.nuspec", + "microsoft.netcore.runtime.coreclr-x86.1.0.0.nupkg.sha512", + "microsoft.netcore.runtime.coreclr-x86.nuspec", "ref/dotnet/_._", "runtimes/win7-x86/lib/dotnet/mscorlib.ni.dll", "runtimes/win7-x86/native/clretwrc.dll", @@ -12436,45 +12443,50 @@ "Microsoft.NETCore.Runtime.Native/1.0.0": { "sha512": "tMsWWrH1AJCguiM22zK/vr6COxqz62Q1F02B07IXAUN405R3HGk5SkD/DL0Hte+OTjNtW9LkKXpOggGBRwYFNg==", "type": "package", + "path": "microsoft.netcore.runtime.native/1.0.0", "files": [ - "Microsoft.NETCore.Runtime.Native.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Runtime.Native.nuspec", - "_._" + "_._", + "microsoft.netcore.runtime.native.1.0.0.nupkg.sha512", + "microsoft.netcore.runtime.native.nuspec" ] }, "Microsoft.NETCore.Targets/1.0.0": { "sha512": "XfITpPjYLYRmAeZtb9diw6P7ylLQsSC1U2a/xj10iQpnHxkiLEBXop/psw15qMPuNca7lqgxWvzZGpQxphuXaw==", "type": "package", + "path": "microsoft.netcore.targets/1.0.0", "files": [ - "Microsoft.NETCore.Targets.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Targets.nuspec", + "microsoft.netcore.targets.1.0.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", "runtime.json" ] }, "Microsoft.NETCore.Targets.UniversalWindowsPlatform/5.0.0": { "sha512": "jszcJ6okLlhqF4OQbhSbixLOuLUyVT3BP7Y7/i7fcDMwnHBd1Pmdz6M1Al9SMDKVLA2oSaItg4tq6C0ydv8lYQ==", "type": "package", + "path": "microsoft.netcore.targets.universalwindowsplatform/5.0.0", "files": [ - "Microsoft.NETCore.Targets.UniversalWindowsPlatform.5.0.0.nupkg.sha512", - "Microsoft.NETCore.Targets.UniversalWindowsPlatform.nuspec", + "microsoft.netcore.targets.universalwindowsplatform.5.0.0.nupkg.sha512", + "microsoft.netcore.targets.universalwindowsplatform.nuspec", "runtime.json" ] }, "Microsoft.NETCore.UniversalWindowsPlatform/5.0.0": { "sha512": "D0nsAm+yTk0oSSC7E6PcmuuEewBAQbGgIXNcCnRqQ4qLPdQLMjMHg8cilGs3xZgwTRQmMtEn45TAatrU1otWPQ==", "type": "package", + "path": "microsoft.netcore.universalwindowsplatform/5.0.0", "files": [ - "Microsoft.NETCore.UniversalWindowsPlatform.5.0.0.nupkg.sha512", - "Microsoft.NETCore.UniversalWindowsPlatform.nuspec", - "_._" + "_._", + "microsoft.netcore.universalwindowsplatform.5.0.0.nupkg.sha512", + "microsoft.netcore.universalwindowsplatform.nuspec" ] }, "Microsoft.NETCore.Windows.ApiSets-x64/1.0.0": { "sha512": "NC+dpFMdhujz2sWAdJ8EmBk07p1zOlNi0FCCnZEbzftABpw9xZ99EMP/bUJrPTgCxHfzJAiuLPOtAauzVINk0w==", "type": "package", + "path": "microsoft.netcore.windows.apisets-x64/1.0.0", "files": [ - "Microsoft.NETCore.Windows.ApiSets-x64.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Windows.ApiSets-x64.nuspec", + "microsoft.netcore.windows.apisets-x64.1.0.0.nupkg.sha512", + "microsoft.netcore.windows.apisets-x64.nuspec", "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-Kernel32-Private-L1-1-0.dll", @@ -12637,9 +12649,10 @@ "Microsoft.NETCore.Windows.ApiSets-x86/1.0.0": { "sha512": "/HDRdhz5bZyhHwQ/uk/IbnDIX5VDTsHntEZYkTYo57dM+U3Ttel9/OJv0mjL64wTO/QKUJJNKp9XO+m7nSVjJQ==", "type": "package", + "path": "microsoft.netcore.windows.apisets-x86/1.0.0", "files": [ - "Microsoft.NETCore.Windows.ApiSets-x86.1.0.0.nupkg.sha512", - "Microsoft.NETCore.Windows.ApiSets-x86.nuspec", + "microsoft.netcore.windows.apisets-x86.1.0.0.nupkg.sha512", + "microsoft.netcore.windows.apisets-x86.nuspec", "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-Kernel32-Private-L1-1-0.dll", @@ -12802,14 +12815,15 @@ "Microsoft.VisualBasic/10.0.0": { "sha512": "5BEm2/HAVd97whRlCChU7rmSh/9cwGlZ/NTNe3Jl07zuPWfKQq5TUvVNUmdvmEe8QRecJLZ4/e7WF1i1O8V42g==", "type": "package", + "path": "microsoft.visualbasic/10.0.0", "files": [ - "Microsoft.VisualBasic.10.0.0.nupkg.sha512", - "Microsoft.VisualBasic.nuspec", "lib/dotnet/Microsoft.VisualBasic.dll", "lib/net45/_._", "lib/netcore50/Microsoft.VisualBasic.dll", "lib/win8/_._", "lib/wpa81/_._", + "microsoft.visualbasic.10.0.0.nupkg.sha512", + "microsoft.visualbasic.nuspec", "ref/dotnet/Microsoft.VisualBasic.dll", "ref/dotnet/Microsoft.VisualBasic.xml", "ref/dotnet/de/Microsoft.VisualBasic.xml", @@ -12831,15 +12845,16 @@ "Microsoft.Win32.Primitives/4.0.0": { "sha512": "CypEz9/lLOup8CEhiAmvr7aLs1zKPYyEU1sxQeEr6G0Ci8/F0Y6pYR1zzkROjM8j8Mq0typmbu676oYyvErQvg==", "type": "package", + "path": "microsoft.win32.primitives/4.0.0", "files": [ - "Microsoft.Win32.Primitives.4.0.0.nupkg.sha512", - "Microsoft.Win32.Primitives.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/dotnet/Microsoft.Win32.Primitives.dll", "lib/net46/Microsoft.Win32.Primitives.dll", "lib/xamarinios10/_._", "lib/xamarinmac20/_._", + "microsoft.win32.primitives.4.0.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", "ref/MonoAndroid10/_._", "ref/MonoTouch10/_._", "ref/dotnet/Microsoft.Win32.Primitives.dll", @@ -12861,9 +12876,8 @@ "System.AppContext/4.0.0": { "sha512": "gUoYgAWDC3+xhKeU5KSLbYDhTdBYk9GssrMSCcWUADzOglW+s0AmwVhOUGt2tL5xUl7ZXoYTPdA88zCgKrlG0A==", "type": "package", + "path": "system.appcontext/4.0.0", "files": [ - "System.AppContext.4.0.0.nupkg.sha512", - "System.AppContext.nuspec", "lib/DNXCore50/System.AppContext.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -12886,15 +12900,16 @@ "ref/dotnet/zh-hant/System.AppContext.xml", "ref/net46/System.AppContext.dll", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.appcontext.4.0.0.nupkg.sha512", + "system.appcontext.nuspec" ] }, "System.Collections/4.0.10": { "sha512": "ux6ilcZZjV/Gp7JEZpe+2V1eTueq6NuoGRM3eZCFuPM25hLVVgCRuea6STW8hvqreIOE59irJk5/ovpA5xQipw==", "type": "package", + "path": "system.collections/4.0.10", "files": [ - "System.Collections.4.0.10.nupkg.sha512", - "System.Collections.nuspec", "lib/DNXCore50/System.Collections.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -12918,15 +12933,16 @@ "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Collections.dll" + "runtimes/win8-aot/lib/netcore50/System.Collections.dll", + "system.collections.4.0.10.nupkg.sha512", + "system.collections.nuspec" ] }, "System.Collections.Concurrent/4.0.10": { "sha512": "ZtMEqOPAjAIqR8fqom9AOKRaB94a+emO2O8uOP6vyJoNswSPrbiwN7iH53rrVpvjMVx0wr4/OMpI7486uGZjbw==", "type": "package", + "path": "system.collections.concurrent/4.0.10", "files": [ - "System.Collections.Concurrent.4.0.10.nupkg.sha512", - "System.Collections.Concurrent.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/dotnet/System.Collections.Concurrent.dll", @@ -12948,27 +12964,29 @@ "ref/dotnet/zh-hant/System.Collections.Concurrent.xml", "ref/net46/_._", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.collections.concurrent.4.0.10.nupkg.sha512", + "system.collections.concurrent.nuspec" ] }, "System.Collections.Immutable/1.1.37": { "sha512": "fTpqwZYBzoklTT+XjTRK8KxvmrGkYHzBiylCcKyQcxiOM8k+QvhNBxRvFHDWzy4OEP5f8/9n+xQ9mEgEXY+muA==", "type": "package", + "path": "system.collections.immutable/1.1.37", "files": [ - "System.Collections.Immutable.1.1.37.nupkg.sha512", - "System.Collections.Immutable.nuspec", "lib/dotnet/System.Collections.Immutable.dll", "lib/dotnet/System.Collections.Immutable.xml", "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml" + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.1.1.37.nupkg.sha512", + "system.collections.immutable.nuspec" ] }, "System.Collections.NonGeneric/4.0.0": { "sha512": "rVgwrFBMkmp8LI6GhAYd6Bx+2uLIXjRfNg6Ie+ASfX8ESuh9e2HNxFy2yh1MPIXZq3OAYa+0mmULVwpnEC6UDA==", "type": "package", + "path": "system.collections.nongeneric/4.0.0", "files": [ - "System.Collections.NonGeneric.4.0.0.nupkg.sha512", - "System.Collections.NonGeneric.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/dotnet/System.Collections.NonGeneric.dll", @@ -12990,15 +13008,16 @@ "ref/dotnet/zh-hant/System.Collections.NonGeneric.xml", "ref/net46/System.Collections.NonGeneric.dll", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.collections.nongeneric.4.0.0.nupkg.sha512", + "system.collections.nongeneric.nuspec" ] }, "System.Collections.Specialized/4.0.0": { "sha512": "poJFwQCUOoXqvdoGxx+3p8Z63yawcYKPBSFP67Z2jICeOINvEIQZN7mVOAnC7gsVF0WU+A2wtVwfhagC7UCgAg==", "type": "package", + "path": "system.collections.specialized/4.0.0", "files": [ - "System.Collections.Specialized.4.0.0.nupkg.sha512", - "System.Collections.Specialized.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/dotnet/System.Collections.Specialized.dll", @@ -13020,15 +13039,16 @@ "ref/dotnet/zh-hant/System.Collections.Specialized.xml", "ref/net46/System.Collections.Specialized.dll", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.collections.specialized.4.0.0.nupkg.sha512", + "system.collections.specialized.nuspec" ] }, "System.ComponentModel/4.0.0": { "sha512": "BzpLdSi++ld7rJLOOt5f/G9GxujP202bBgKORsHcGV36rLB0mfSA2h8chTMoBzFhgN7TE14TmJ2J7Q1RyNCTAw==", "type": "package", + "path": "system.componentmodel/4.0.0", "files": [ - "System.ComponentModel.4.0.0.nupkg.sha512", - "System.ComponentModel.nuspec", "lib/dotnet/System.ComponentModel.dll", "lib/net45/_._", "lib/netcore50/System.ComponentModel.dll", @@ -13051,15 +13071,16 @@ "ref/netcore50/System.ComponentModel.xml", "ref/win8/_._", "ref/wp80/_._", - "ref/wpa81/_._" + "ref/wpa81/_._", + "system.componentmodel.4.0.0.nupkg.sha512", + "system.componentmodel.nuspec" ] }, "System.ComponentModel.Annotations/4.0.10": { "sha512": "7+XGyEZx24nP1kpHxCB9e+c6D0fdVDvFwE1xujE9BzlXyNVcy5J5aIO0H/ECupx21QpyRvzZibGAHfL/XLL6dw==", "type": "package", + "path": "system.componentmodel.annotations/4.0.10", "files": [ - "System.ComponentModel.Annotations.4.0.10.nupkg.sha512", - "System.ComponentModel.Annotations.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/dotnet/System.ComponentModel.Annotations.dll", @@ -13081,15 +13102,16 @@ "ref/dotnet/zh-hant/System.ComponentModel.Annotations.xml", "ref/net46/_._", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.componentmodel.annotations.4.0.10.nupkg.sha512", + "system.componentmodel.annotations.nuspec" ] }, "System.ComponentModel.EventBasedAsync/4.0.10": { "sha512": "d6kXcHUgP0jSPXEQ6hXJYCO6CzfoCi7t9vR3BfjSQLrj4HzpuATpx1gkN7itmTW1O+wjuw6rai4378Nj6N70yw==", "type": "package", + "path": "system.componentmodel.eventbasedasync/4.0.10", "files": [ - "System.ComponentModel.EventBasedAsync.4.0.10.nupkg.sha512", - "System.ComponentModel.EventBasedAsync.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/dotnet/System.ComponentModel.EventBasedAsync.dll", @@ -13111,15 +13133,16 @@ "ref/dotnet/zh-hant/System.ComponentModel.EventBasedAsync.xml", "ref/net46/_._", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.componentmodel.eventbasedasync.4.0.10.nupkg.sha512", + "system.componentmodel.eventbasedasync.nuspec" ] }, "System.Data.Common/4.0.0": { "sha512": "SA7IdoTWiImVr0exDM68r0mKmR4f/qFGxZUrJQKu4YS7F+3afWzSOCezHxWdevQ0ONi4WRQsOiv+Zf9p8H0Feg==", "type": "package", + "path": "system.data.common/4.0.0", "files": [ - "System.Data.Common.4.0.0.nupkg.sha512", - "System.Data.Common.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/dotnet/System.Data.Common.dll", @@ -13141,15 +13164,16 @@ "ref/dotnet/zh-hant/System.Data.Common.xml", "ref/net46/System.Data.Common.dll", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.data.common.4.0.0.nupkg.sha512", + "system.data.common.nuspec" ] }, "System.Diagnostics.Contracts/4.0.0": { "sha512": "lMc7HNmyIsu0pKTdA4wf+FMq5jvouUd+oUpV4BdtyqoV0Pkbg9u/7lTKFGqpjZRQosWHq1+B32Lch2wf4AmloA==", "type": "package", + "path": "system.diagnostics.contracts/4.0.0", "files": [ - "System.Diagnostics.Contracts.4.0.0.nupkg.sha512", - "System.Diagnostics.Contracts.nuspec", "lib/DNXCore50/System.Diagnostics.Contracts.dll", "lib/net45/_._", "lib/netcore50/System.Diagnostics.Contracts.dll", @@ -13173,15 +13197,16 @@ "ref/win8/_._", "ref/wp80/_._", "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll" + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Contracts.dll", + "system.diagnostics.contracts.4.0.0.nupkg.sha512", + "system.diagnostics.contracts.nuspec" ] }, "System.Diagnostics.Debug/4.0.10": { "sha512": "pi2KthuvI2LWV2c2V+fwReDsDiKpNl040h6DcwFOb59SafsPT/V1fCy0z66OKwysurJkBMmp5j5CBe3Um+ub0g==", "type": "package", + "path": "system.diagnostics.debug/4.0.10", "files": [ - "System.Diagnostics.Debug.4.0.10.nupkg.sha512", - "System.Diagnostics.Debug.nuspec", "lib/DNXCore50/System.Diagnostics.Debug.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -13205,15 +13230,16 @@ "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll" + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Debug.dll", + "system.diagnostics.debug.4.0.10.nupkg.sha512", + "system.diagnostics.debug.nuspec" ] }, "System.Diagnostics.StackTrace/4.0.0": { "sha512": "PItgenqpRiMqErvQONBlfDwctKpWVrcDSW5pppNZPJ6Bpiyz+KjsWoSiaqs5dt03HEbBTMNCrZb8KCkh7YfXmw==", "type": "package", + "path": "system.diagnostics.stacktrace/4.0.0", "files": [ - "System.Diagnostics.StackTrace.4.0.0.nupkg.sha512", - "System.Diagnostics.StackTrace.nuspec", "lib/DNXCore50/System.Diagnostics.StackTrace.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -13237,15 +13263,16 @@ "ref/net46/System.Diagnostics.StackTrace.dll", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll" + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.StackTrace.dll", + "system.diagnostics.stacktrace.4.0.0.nupkg.sha512", + "system.diagnostics.stacktrace.nuspec" ] }, "System.Diagnostics.Tools/4.0.0": { "sha512": "uw5Qi2u5Cgtv4xv3+8DeB63iaprPcaEHfpeJqlJiLjIVy6v0La4ahJ6VW9oPbJNIjcavd24LKq0ctT9ssuQXsw==", "type": "package", + "path": "system.diagnostics.tools/4.0.0", "files": [ - "System.Diagnostics.Tools.4.0.0.nupkg.sha512", - "System.Diagnostics.Tools.nuspec", "lib/DNXCore50/System.Diagnostics.Tools.dll", "lib/net45/_._", "lib/netcore50/System.Diagnostics.Tools.dll", @@ -13269,15 +13296,16 @@ "ref/win8/_._", "ref/wp80/_._", "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll" + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tools.dll", + "system.diagnostics.tools.4.0.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" ] }, "System.Diagnostics.Tracing/4.0.20": { "sha512": "gn/wexGHc35Fv++5L1gYHMY5g25COfiZ0PGrL+3PfwzoJd4X2LbTAm/U8d385SI6BKQBI/z4dQfvneS9J27+Tw==", "type": "package", + "path": "system.diagnostics.tracing/4.0.20", "files": [ - "System.Diagnostics.Tracing.4.0.20.nupkg.sha512", - "System.Diagnostics.Tracing.nuspec", "lib/DNXCore50/System.Diagnostics.Tracing.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -13301,15 +13329,16 @@ "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll" + "runtimes/win8-aot/lib/netcore50/System.Diagnostics.Tracing.dll", + "system.diagnostics.tracing.4.0.20.nupkg.sha512", + "system.diagnostics.tracing.nuspec" ] }, "System.Dynamic.Runtime/4.0.10": { "sha512": "r10VTLdlxtYp46BuxomHnwx7vIoMOr04CFoC/jJJfY22f7HQQ4P+cXY2Nxo6/rIxNNqOxwdbQQwv7Gl88Jsu1w==", "type": "package", + "path": "system.dynamic.runtime/4.0.10", "files": [ - "System.Dynamic.Runtime.4.0.10.nupkg.sha512", - "System.Dynamic.Runtime.nuspec", "lib/DNXCore50/System.Dynamic.Runtime.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -13334,15 +13363,16 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", - "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll" + "runtimes/win8-aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.0.10.nupkg.sha512", + "system.dynamic.runtime.nuspec" ] }, "System.Globalization/4.0.10": { "sha512": "kzRtbbCNAxdafFBDogcM36ehA3th8c1PGiz8QRkZn8O5yMBorDHSK8/TGJPYOaCS5zdsGk0u9qXHnW91nqy7fw==", "type": "package", + "path": "system.globalization/4.0.10", "files": [ - "System.Globalization.4.0.10.nupkg.sha512", - "System.Globalization.nuspec", "lib/DNXCore50/System.Globalization.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -13366,15 +13396,16 @@ "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Globalization.dll" + "runtimes/win8-aot/lib/netcore50/System.Globalization.dll", + "system.globalization.4.0.10.nupkg.sha512", + "system.globalization.nuspec" ] }, "System.Globalization.Calendars/4.0.0": { "sha512": "cL6WrdGKnNBx9W/iTr+jbffsEO4RLjEtOYcpVSzPNDoli6X5Q6bAfWtJYbJNOPi8Q0fXgBEvKK1ncFL/3FTqlA==", "type": "package", + "path": "system.globalization.calendars/4.0.0", "files": [ - "System.Globalization.Calendars.4.0.0.nupkg.sha512", - "System.Globalization.Calendars.nuspec", "lib/DNXCore50/System.Globalization.Calendars.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -13398,15 +13429,16 @@ "ref/net46/System.Globalization.Calendars.dll", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll" + "runtimes/win8-aot/lib/netcore50/System.Globalization.Calendars.dll", + "system.globalization.calendars.4.0.0.nupkg.sha512", + "system.globalization.calendars.nuspec" ] }, "System.Globalization.Extensions/4.0.0": { "sha512": "rqbUXiwpBCvJ18ySCsjh20zleazO+6fr3s5GihC2sVwhyS0MUl6+oc5Rzk0z6CKkS4kmxbZQSeZLsK7cFSO0ng==", "type": "package", + "path": "system.globalization.extensions/4.0.0", "files": [ - "System.Globalization.Extensions.4.0.0.nupkg.sha512", - "System.Globalization.Extensions.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/dotnet/System.Globalization.Extensions.dll", @@ -13428,15 +13460,16 @@ "ref/dotnet/zh-hant/System.Globalization.Extensions.xml", "ref/net46/System.Globalization.Extensions.dll", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.globalization.extensions.4.0.0.nupkg.sha512", + "system.globalization.extensions.nuspec" ] }, "System.IO/4.0.10": { "sha512": "kghf1CeYT+W2lw8a50/GxFz5HR9t6RkL4BvjxtTp1NxtEFWywnMA9W8FH/KYXiDNThcw9u/GOViDON4iJFGXIQ==", "type": "package", + "path": "system.io/4.0.10", "files": [ - "System.IO.4.0.10.nupkg.sha512", - "System.IO.nuspec", "lib/DNXCore50/System.IO.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -13460,15 +13493,16 @@ "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.IO.dll" + "runtimes/win8-aot/lib/netcore50/System.IO.dll", + "system.io.4.0.10.nupkg.sha512", + "system.io.nuspec" ] }, "System.IO.Compression/4.0.0": { "sha512": "S+ljBE3py8pujTrsOOYHtDg2cnAifn6kBu/pfh1hMWIXd8DoVh0ADTA6Puv4q+nYj+Msm6JoFLNwuRSmztbsDQ==", "type": "package", + "path": "system.io.compression/4.0.0", "files": [ - "System.IO.Compression.4.0.0.nupkg.sha512", - "System.IO.Compression.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/dotnet/System.IO.Compression.dll", @@ -13498,45 +13532,49 @@ "ref/wpa81/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "runtime.json" + "runtime.json", + "system.io.compression.4.0.0.nupkg.sha512", + "system.io.compression.nuspec" ] }, "System.IO.Compression.clrcompression-arm/4.0.0": { "sha512": "Kk21GecAbI+H6tMP6/lMssGObbhoHwLiREiB5UkNMCypdxACuF+6gmrdDTousCUcbH28CJeo7tArrnUc+bchuw==", "type": "package", + "path": "system.io.compression.clrcompression-arm/4.0.0", "files": [ - "System.IO.Compression.clrcompression-arm.4.0.0.nupkg.sha512", - "System.IO.Compression.clrcompression-arm.nuspec", "runtimes/win10-arm/native/ClrCompression.dll", - "runtimes/win7-arm/native/clrcompression.dll" + "runtimes/win7-arm/native/clrcompression.dll", + "system.io.compression.clrcompression-arm.4.0.0.nupkg.sha512", + "system.io.compression.clrcompression-arm.nuspec" ] }, "System.IO.Compression.clrcompression-x64/4.0.0": { "sha512": "Lqr+URMwKzf+8HJF6YrqEqzKzDzFJTE4OekaxqdIns71r8Ufbd8SbZa0LKl9q+7nu6Em4SkIEXVMB7plSXekOw==", "type": "package", + "path": "system.io.compression.clrcompression-x64/4.0.0", "files": [ - "System.IO.Compression.clrcompression-x64.4.0.0.nupkg.sha512", - "System.IO.Compression.clrcompression-x64.nuspec", "runtimes/win10-x64/native/ClrCompression.dll", - "runtimes/win7-x64/native/clrcompression.dll" + "runtimes/win7-x64/native/clrcompression.dll", + "system.io.compression.clrcompression-x64.4.0.0.nupkg.sha512", + "system.io.compression.clrcompression-x64.nuspec" ] }, "System.IO.Compression.clrcompression-x86/4.0.0": { "sha512": "GmevpuaMRzYDXHu+xuV10fxTO8DsP7OKweWxYtkaxwVnDSj9X6RBupSiXdiveq9yj/xjZ1NbG+oRRRb99kj+VQ==", "type": "package", + "path": "system.io.compression.clrcompression-x86/4.0.0", "files": [ - "System.IO.Compression.clrcompression-x86.4.0.0.nupkg.sha512", - "System.IO.Compression.clrcompression-x86.nuspec", "runtimes/win10-x86/native/ClrCompression.dll", - "runtimes/win7-x86/native/clrcompression.dll" + "runtimes/win7-x86/native/clrcompression.dll", + "system.io.compression.clrcompression-x86.4.0.0.nupkg.sha512", + "system.io.compression.clrcompression-x86.nuspec" ] }, "System.IO.Compression.ZipFile/4.0.0": { "sha512": "pwntmtsJqtt6Lez4Iyv4GVGW6DaXUTo9Rnlsx0MFagRgX+8F/sxG5S/IzDJabBj68sUWViz1QJrRZL4V9ngWDg==", "type": "package", + "path": "system.io.compression.zipfile/4.0.0", "files": [ - "System.IO.Compression.ZipFile.4.0.0.nupkg.sha512", - "System.IO.Compression.ZipFile.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/dotnet/System.IO.Compression.ZipFile.dll", @@ -13558,15 +13596,16 @@ "ref/dotnet/zh-hant/System.IO.Compression.ZipFile.xml", "ref/net46/System.IO.Compression.ZipFile.dll", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.io.compression.zipfile.4.0.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" ] }, "System.IO.FileSystem/4.0.0": { "sha512": "eo05SPWfG+54UA0wxgRIYOuOslq+2QrJLXZaJDDsfLXG15OLguaItW39NYZTqUb4DeGOkU4R0wpOLOW4ynMUDQ==", "type": "package", + "path": "system.io.filesystem/4.0.0", "files": [ - "System.IO.FileSystem.4.0.0.nupkg.sha512", - "System.IO.FileSystem.nuspec", "lib/DNXCore50/System.IO.FileSystem.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -13589,15 +13628,16 @@ "ref/dotnet/zh-hant/System.IO.FileSystem.xml", "ref/net46/System.IO.FileSystem.dll", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.io.filesystem.4.0.0.nupkg.sha512", + "system.io.filesystem.nuspec" ] }, "System.IO.FileSystem.Primitives/4.0.0": { "sha512": "7pJUvYi/Yq3A5nagqCCiOw3+aJp3xXc/Cjr8dnJDnER3/6kX3LEencfqmXUcPl9+7OvRNyPMNhqsLAcMK6K/KA==", "type": "package", + "path": "system.io.filesystem.primitives/4.0.0", "files": [ - "System.IO.FileSystem.Primitives.4.0.0.nupkg.sha512", - "System.IO.FileSystem.Primitives.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/dotnet/System.IO.FileSystem.Primitives.dll", @@ -13619,15 +13659,16 @@ "ref/dotnet/zh-hant/System.IO.FileSystem.Primitives.xml", "ref/net46/System.IO.FileSystem.Primitives.dll", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.io.filesystem.primitives.4.0.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" ] }, "System.IO.IsolatedStorage/4.0.0": { "sha512": "d5KimUbZ49Ki6A/uwU+Iodng+nhJvpRs7hr/828cfeXC02LxUiggnRnAu+COtWcKvJ2YbBmAGOcO4GLK4fX1+w==", "type": "package", + "path": "system.io.isolatedstorage/4.0.0", "files": [ - "System.IO.IsolatedStorage.4.0.0.nupkg.sha512", - "System.IO.IsolatedStorage.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/netcore50/System.IO.IsolatedStorage.dll", @@ -13647,15 +13688,16 @@ "ref/dotnet/zh-hans/System.IO.IsolatedStorage.xml", "ref/dotnet/zh-hant/System.IO.IsolatedStorage.xml", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.io.isolatedstorage.4.0.0.nupkg.sha512", + "system.io.isolatedstorage.nuspec" ] }, "System.IO.UnmanagedMemoryStream/4.0.0": { "sha512": "i2xczgQfwHmolORBNHxV9b5izP8VOBxgSA2gf+H55xBvwqtR+9r9adtzlc7at0MAwiLcsk6V1TZlv2vfRQr8Sw==", "type": "package", + "path": "system.io.unmanagedmemorystream/4.0.0", "files": [ - "System.IO.UnmanagedMemoryStream.4.0.0.nupkg.sha512", - "System.IO.UnmanagedMemoryStream.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/dotnet/System.IO.UnmanagedMemoryStream.dll", @@ -13677,15 +13719,16 @@ "ref/dotnet/zh-hant/System.IO.UnmanagedMemoryStream.xml", "ref/net46/System.IO.UnmanagedMemoryStream.dll", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.io.unmanagedmemorystream.4.0.0.nupkg.sha512", + "system.io.unmanagedmemorystream.nuspec" ] }, "System.Linq/4.0.0": { "sha512": "r6Hlc+ytE6m/9UBr+nNRRdoJEWjoeQiT3L3lXYFDHoXk3VYsRBCDNXrawcexw7KPLaH0zamQLiAb6avhZ50cGg==", "type": "package", + "path": "system.linq/4.0.0", "files": [ - "System.Linq.4.0.0.nupkg.sha512", - "System.Linq.nuspec", "lib/dotnet/System.Linq.dll", "lib/net45/_._", "lib/netcore50/System.Linq.dll", @@ -13708,15 +13751,16 @@ "ref/netcore50/System.Linq.xml", "ref/win8/_._", "ref/wp80/_._", - "ref/wpa81/_._" + "ref/wpa81/_._", + "system.linq.4.0.0.nupkg.sha512", + "system.linq.nuspec" ] }, "System.Linq.Expressions/4.0.10": { "sha512": "qhFkPqRsTfXBaacjQhxwwwUoU7TEtwlBIULj7nG7i4qAkvivil31VvOvDKppCSui5yGw0/325ZeNaMYRvTotXw==", "type": "package", + "path": "system.linq.expressions/4.0.10", "files": [ - "System.Linq.Expressions.4.0.10.nupkg.sha512", - "System.Linq.Expressions.nuspec", "lib/DNXCore50/System.Linq.Expressions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -13741,15 +13785,16 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", - "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll" + "runtimes/win8-aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.0.10.nupkg.sha512", + "system.linq.expressions.nuspec" ] }, "System.Linq.Parallel/4.0.0": { "sha512": "PtH7KKh1BbzVow4XY17pnrn7Io63ApMdwzRE2o2HnzsKQD/0o7X5xe6mxrDUqTm9ZCR3/PNhAlP13VY1HnHsbA==", "type": "package", + "path": "system.linq.parallel/4.0.0", "files": [ - "System.Linq.Parallel.4.0.0.nupkg.sha512", - "System.Linq.Parallel.nuspec", "lib/dotnet/System.Linq.Parallel.dll", "lib/net45/_._", "lib/netcore50/System.Linq.Parallel.dll", @@ -13770,15 +13815,16 @@ "ref/netcore50/System.Linq.Parallel.dll", "ref/netcore50/System.Linq.Parallel.xml", "ref/win8/_._", - "ref/wpa81/_._" + "ref/wpa81/_._", + "system.linq.parallel.4.0.0.nupkg.sha512", + "system.linq.parallel.nuspec" ] }, "System.Linq.Queryable/4.0.0": { "sha512": "DIlvCNn3ucFvwMMzXcag4aFnFJ1fdxkQ5NqwJe9Nh7y8ozzhDm07YakQL/yoF3P1dLzY1T2cTpuwbAmVSdXyBA==", "type": "package", + "path": "system.linq.queryable/4.0.0", "files": [ - "System.Linq.Queryable.4.0.0.nupkg.sha512", - "System.Linq.Queryable.nuspec", "lib/dotnet/System.Linq.Queryable.dll", "lib/net45/_._", "lib/netcore50/System.Linq.Queryable.dll", @@ -13801,15 +13847,16 @@ "ref/netcore50/System.Linq.Queryable.xml", "ref/win8/_._", "ref/wp80/_._", - "ref/wpa81/_._" + "ref/wpa81/_._", + "system.linq.queryable.4.0.0.nupkg.sha512", + "system.linq.queryable.nuspec" ] }, "System.Net.Http/4.0.0": { "sha512": "mZuAl7jw/mFY8jUq4ITKECxVBh9a8SJt9BC/+lJbmo7cRKspxE3PsITz+KiaCEsexN5WYPzwBOx0oJH/0HlPyQ==", "type": "package", + "path": "system.net.http/4.0.0", "files": [ - "System.Net.Http.4.0.0.nupkg.sha512", - "System.Net.Http.nuspec", "lib/DNXCore50/System.Net.Http.dll", "lib/net45/_._", "lib/netcore50/System.Net.Http.dll", @@ -13830,15 +13877,16 @@ "ref/netcore50/System.Net.Http.dll", "ref/netcore50/System.Net.Http.xml", "ref/win8/_._", - "ref/wpa81/_._" + "ref/wpa81/_._", + "system.net.http.4.0.0.nupkg.sha512", + "system.net.http.nuspec" ] }, "System.Net.Http.Rtc/4.0.0": { "sha512": "PlE+oJgXdbxPmZYR6GBywRkyIPovjB1Y0SYHizj2Iflgu80uJQC4szl9gue4rKI2FgXiEbj9JL7wL5K3mp9HAQ==", "type": "package", + "path": "system.net.http.rtc/4.0.0", "files": [ - "System.Net.Http.Rtc.4.0.0.nupkg.sha512", - "System.Net.Http.Rtc.nuspec", "lib/netcore50/System.Net.Http.Rtc.dll", "lib/win8/_._", "ref/dotnet/System.Net.Http.Rtc.dll", @@ -13854,15 +13902,16 @@ "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/_._" + "ref/win8/_._", + "system.net.http.rtc.4.0.0.nupkg.sha512", + "system.net.http.rtc.nuspec" ] }, "System.Net.NetworkInformation/4.0.0": { "sha512": "D68KCf5VK1G1GgFUwD901gU6cnMITksOdfdxUCt9ReCZfT1pigaDqjJ7XbiLAM4jm7TfZHB7g5mbOf1mbG3yBA==", "type": "package", + "path": "system.net.networkinformation/4.0.0", "files": [ - "System.Net.NetworkInformation.4.0.0.nupkg.sha512", - "System.Net.NetworkInformation.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net45/_._", @@ -13892,15 +13941,16 @@ "ref/wp80/_._", "ref/wpa81/_._", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.net.networkinformation.4.0.0.nupkg.sha512", + "system.net.networkinformation.nuspec" ] }, "System.Net.Primitives/4.0.10": { "sha512": "YQqIpmMhnKjIbT7rl6dlf7xM5DxaMR+whduZ9wKb9OhMLjoueAJO3HPPJI+Naf3v034kb+xZqdc3zo44o3HWcg==", "type": "package", + "path": "system.net.primitives/4.0.10", "files": [ - "System.Net.Primitives.4.0.10.nupkg.sha512", - "System.Net.Primitives.nuspec", "lib/DNXCore50/System.Net.Primitives.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -13923,15 +13973,16 @@ "ref/dotnet/zh-hant/System.Net.Primitives.xml", "ref/net46/_._", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.net.primitives.4.0.10.nupkg.sha512", + "system.net.primitives.nuspec" ] }, "System.Net.Requests/4.0.10": { "sha512": "A6XBR7TztiIQg6hx7VGfbBKmRTAavUERm2E7pmNz/gZeGvwyP0lcKHZxylJtNVKj7DPwr91bD87oLY6zZYntcg==", "type": "package", + "path": "system.net.requests/4.0.10", "files": [ - "System.Net.Requests.4.0.10.nupkg.sha512", - "System.Net.Requests.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/dotnet/System.Net.Requests.dll", @@ -13953,15 +14004,16 @@ "ref/dotnet/zh-hant/System.Net.Requests.xml", "ref/net46/_._", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.net.requests.4.0.10.nupkg.sha512", + "system.net.requests.nuspec" ] }, "System.Net.Sockets/4.0.0": { "sha512": "7bBNLdO6Xw0BGyFVSxjloGXMvsc3qQmW+70bYMLwHEAVivMK8zx+E7XO8CeJnAko2mFj6R402E798EGYUksFcQ==", "type": "package", + "path": "system.net.sockets/4.0.0", "files": [ - "System.Net.Sockets.4.0.0.nupkg.sha512", - "System.Net.Sockets.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/net46/System.Net.Sockets.dll", @@ -13983,15 +14035,16 @@ "ref/dotnet/zh-hant/System.Net.Sockets.xml", "ref/net46/System.Net.Sockets.dll", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.net.sockets.4.0.0.nupkg.sha512", + "system.net.sockets.nuspec" ] }, "System.Net.WebHeaderCollection/4.0.0": { "sha512": "IsIZAsHm/yK7R/XASnEc4EMffFLIMgYchG3/zJv6B4LwMnXZwrVlSPpNbPgEVb0lSXyztsn7A6sIPAACQQ2vTQ==", "type": "package", + "path": "system.net.webheadercollection/4.0.0", "files": [ - "System.Net.WebHeaderCollection.4.0.0.nupkg.sha512", - "System.Net.WebHeaderCollection.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/dotnet/System.Net.WebHeaderCollection.dll", @@ -14013,15 +14066,16 @@ "ref/dotnet/zh-hant/System.Net.WebHeaderCollection.xml", "ref/net46/_._", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.net.webheadercollection.4.0.0.nupkg.sha512", + "system.net.webheadercollection.nuspec" ] }, "System.Numerics.Vectors/4.1.0": { "sha512": "jpubR06GWPoZA0oU5xLM7kHeV59/CKPBXZk4Jfhi0T3DafxbrdueHZ8kXlb+Fb5nd3DAyyMh2/eqEzLX0xv6Qg==", "type": "package", + "path": "system.numerics.vectors/4.1.0", "files": [ - "System.Numerics.Vectors.4.1.0.nupkg.sha512", - "System.Numerics.Vectors.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/dotnet/System.Numerics.Vectors.dll", @@ -14033,24 +14087,26 @@ "ref/dotnet/System.Numerics.Vectors.dll", "ref/net46/System.Numerics.Vectors.dll", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.numerics.vectors.4.1.0.nupkg.sha512", + "system.numerics.vectors.nuspec" ] }, "System.Numerics.Vectors.WindowsRuntime/4.0.0": { "sha512": "Ly7GvoPFZq6GyfZpfS0E7uCk1cinl5BANAngXVuau3lD2QqZJMHitzlPv6n1FlIn6krfv99X2IPkIaVzUwDHXA==", "type": "package", + "path": "system.numerics.vectors.windowsruntime/4.0.0", "files": [ - "System.Numerics.Vectors.WindowsRuntime.4.0.0.nupkg.sha512", - "System.Numerics.Vectors.WindowsRuntime.nuspec", - "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll" + "lib/dotnet/System.Numerics.Vectors.WindowsRuntime.dll", + "system.numerics.vectors.windowsruntime.4.0.0.nupkg.sha512", + "system.numerics.vectors.windowsruntime.nuspec" ] }, "System.ObjectModel/4.0.10": { "sha512": "Djn1wb0vP662zxbe+c3mOhvC4vkQGicsFs1Wi0/GJJpp3Eqp+oxbJ+p2Sx3O0efYueggAI5SW+BqEoczjfr1cA==", "type": "package", + "path": "system.objectmodel/4.0.10", "files": [ - "System.ObjectModel.4.0.10.nupkg.sha512", - "System.ObjectModel.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/dotnet/System.ObjectModel.dll", @@ -14072,66 +14128,71 @@ "ref/dotnet/zh-hant/System.ObjectModel.xml", "ref/net46/_._", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.objectmodel.4.0.10.nupkg.sha512", + "system.objectmodel.nuspec" ] }, "System.Private.DataContractSerialization/4.0.0": { "sha512": "uQvzoXHXHn/9YqUmPtgD8ZPJIlBuuL3QHegbuik97W/umoI28fOnGLnvjRHhju1VMWvFLRQoh7uZkBaoZ+KpVQ==", "type": "package", + "path": "system.private.datacontractserialization/4.0.0", "files": [ - "System.Private.DataContractSerialization.4.0.0.nupkg.sha512", - "System.Private.DataContractSerialization.nuspec", "lib/DNXCore50/System.Private.DataContractSerialization.dll", "lib/netcore50/System.Private.DataContractSerialization.dll", "ref/dnxcore50/_._", "ref/netcore50/_._", "runtime.json", - "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll" + "runtimes/win8-aot/lib/netcore50/System.Private.DataContractSerialization.dll", + "system.private.datacontractserialization.4.0.0.nupkg.sha512", + "system.private.datacontractserialization.nuspec" ] }, "System.Private.Networking/4.0.0": { "sha512": "RUEqdBdJjISC65dO8l4LdN7vTdlXH+attUpKnauDUHVtLbIKdlDB9LKoLzCQsTQRP7vzUJHWYXznHJBkjAA7yA==", "type": "package", + "path": "system.private.networking/4.0.0", "files": [ - "System.Private.Networking.4.0.0.nupkg.sha512", - "System.Private.Networking.nuspec", "lib/DNXCore50/System.Private.Networking.dll", "lib/netcore50/System.Private.Networking.dll", "ref/dnxcore50/_._", - "ref/netcore50/_._" + "ref/netcore50/_._", + "system.private.networking.4.0.0.nupkg.sha512", + "system.private.networking.nuspec" ] }, "System.Private.ServiceModel/4.0.0": { "sha512": "cm2wEa1f9kuUq/2k8uIwepgZJi5HdxXSnjGQIeXmAb7RaWfZPEC/iamv9GJ67b5LPnCZHR0KvtFqh82e8AAYSw==", "type": "package", + "path": "system.private.servicemodel/4.0.0", "files": [ - "System.Private.ServiceModel.4.0.0.nupkg.sha512", - "System.Private.ServiceModel.nuspec", "lib/DNXCore50/System.Private.ServiceModel.dll", "lib/netcore50/System.Private.ServiceModel.dll", "ref/dnxcore50/_._", - "ref/netcore50/_._" + "ref/netcore50/_._", + "system.private.servicemodel.4.0.0.nupkg.sha512", + "system.private.servicemodel.nuspec" ] }, "System.Private.Uri/4.0.0": { "sha512": "CtuxaCKcRIvPcsqquVl3mPp79EDZPMr2UogfiFCxCs+t2z1VjbpQsKNs1GHZ8VQetqbk1mr0V1yAfMe6y8CHDA==", "type": "package", + "path": "system.private.uri/4.0.0", "files": [ - "System.Private.Uri.4.0.0.nupkg.sha512", - "System.Private.Uri.nuspec", "lib/DNXCore50/System.Private.Uri.dll", "lib/netcore50/System.Private.Uri.dll", "ref/dnxcore50/_._", "ref/netcore50/_._", - "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll" + "runtimes/win8-aot/lib/netcore50/System.Private.Uri.dll", + "system.private.uri.4.0.0.nupkg.sha512", + "system.private.uri.nuspec" ] }, "System.Reflection/4.0.10": { "sha512": "WZ+4lEE4gqGx6mrqLhSiW4oi6QLPWwdNjzhhTONmhELOrW8Cw9phlO9tltgvRUuQUqYtBiliFwhO5S5fCJElVw==", "type": "package", + "path": "system.reflection/4.0.10", "files": [ - "System.Reflection.4.0.10.nupkg.sha512", - "System.Reflection.nuspec", "lib/DNXCore50/System.Reflection.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -14155,15 +14216,16 @@ "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Reflection.dll" + "runtimes/win8-aot/lib/netcore50/System.Reflection.dll", + "system.reflection.4.0.10.nupkg.sha512", + "system.reflection.nuspec" ] }, "System.Reflection.Context/4.0.0": { "sha512": "Gz4sUHHFd/52RjHccSHbOXdujJEWKfL3gIaA+ekxvQaQfJGbI2tPzA0Uv3WTCTDRGHgtoNq5WS9E007Dt4P/VQ==", "type": "package", + "path": "system.reflection.context/4.0.0", "files": [ - "System.Reflection.Context.4.0.0.nupkg.sha512", - "System.Reflection.Context.nuspec", "lib/net45/_._", "lib/netcore50/System.Reflection.Context.dll", "lib/win8/_._", @@ -14181,15 +14243,16 @@ "ref/net45/_._", "ref/netcore50/System.Reflection.Context.dll", "ref/netcore50/System.Reflection.Context.xml", - "ref/win8/_._" + "ref/win8/_._", + "system.reflection.context.4.0.0.nupkg.sha512", + "system.reflection.context.nuspec" ] }, "System.Reflection.DispatchProxy/4.0.0": { "sha512": "Kd/4o6DqBfJA4058X8oGEu1KlT8Ej0A+WGeoQgZU2h+3f2vC8NRbHxeOSZvxj9/MPZ1RYmZMGL1ApO9xG/4IVA==", "type": "package", + "path": "system.reflection.dispatchproxy/4.0.0", "files": [ - "System.Reflection.DispatchProxy.4.0.0.nupkg.sha512", - "System.Reflection.DispatchProxy.nuspec", "lib/DNXCore50/System.Reflection.DispatchProxy.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -14213,15 +14276,16 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", - "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll" + "runtimes/win8-aot/lib/netcore50/System.Reflection.DispatchProxy.dll", + "system.reflection.dispatchproxy.4.0.0.nupkg.sha512", + "system.reflection.dispatchproxy.nuspec" ] }, "System.Reflection.Emit/4.0.0": { "sha512": "CqnQz5LbNbiSxN10cv3Ehnw3j1UZOBCxnE0OO0q/keGQ5ENjyFM6rIG4gm/i0dX6EjdpYkAgKcI/mhZZCaBq4A==", "type": "package", + "path": "system.reflection.emit/4.0.0", "files": [ - "System.Reflection.Emit.4.0.0.nupkg.sha512", - "System.Reflection.Emit.nuspec", "lib/DNXCore50/System.Reflection.Emit.dll", "lib/MonoAndroid10/_._", "lib/net45/_._", @@ -14240,15 +14304,16 @@ "ref/dotnet/zh-hans/System.Reflection.Emit.xml", "ref/dotnet/zh-hant/System.Reflection.Emit.xml", "ref/net45/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.reflection.emit.4.0.0.nupkg.sha512", + "system.reflection.emit.nuspec" ] }, "System.Reflection.Emit.ILGeneration/4.0.0": { "sha512": "02okuusJ0GZiHZSD2IOLIN41GIn6qOr7i5+86C98BPuhlwWqVABwebiGNvhDiXP1f9a6CxEigC7foQD42klcDg==", "type": "package", + "path": "system.reflection.emit.ilgeneration/4.0.0", "files": [ - "System.Reflection.Emit.ILGeneration.4.0.0.nupkg.sha512", - "System.Reflection.Emit.ILGeneration.nuspec", "lib/DNXCore50/System.Reflection.Emit.ILGeneration.dll", "lib/net45/_._", "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", @@ -14265,15 +14330,16 @@ "ref/dotnet/zh-hans/System.Reflection.Emit.ILGeneration.xml", "ref/dotnet/zh-hant/System.Reflection.Emit.ILGeneration.xml", "ref/net45/_._", - "ref/wp80/_._" + "ref/wp80/_._", + "system.reflection.emit.ilgeneration.4.0.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" ] }, "System.Reflection.Emit.Lightweight/4.0.0": { "sha512": "DJZhHiOdkN08xJgsJfDjkuOreLLmMcU8qkEEqEHqyhkPUZMMQs0lE8R+6+68BAFWgcdzxtNu0YmIOtEug8j00w==", "type": "package", + "path": "system.reflection.emit.lightweight/4.0.0", "files": [ - "System.Reflection.Emit.Lightweight.4.0.0.nupkg.sha512", - "System.Reflection.Emit.Lightweight.nuspec", "lib/DNXCore50/System.Reflection.Emit.Lightweight.dll", "lib/net45/_._", "lib/netcore50/System.Reflection.Emit.Lightweight.dll", @@ -14290,15 +14356,16 @@ "ref/dotnet/zh-hans/System.Reflection.Emit.Lightweight.xml", "ref/dotnet/zh-hant/System.Reflection.Emit.Lightweight.xml", "ref/net45/_._", - "ref/wp80/_._" + "ref/wp80/_._", + "system.reflection.emit.lightweight.4.0.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" ] }, "System.Reflection.Extensions/4.0.0": { "sha512": "dbYaZWCyFAu1TGYUqR2n+Q+1casSHPR2vVW0WVNkXpZbrd2BXcZ7cpvpu9C98CTHtNmyfMWCLpCclDqly23t6A==", "type": "package", + "path": "system.reflection.extensions/4.0.0", "files": [ - "System.Reflection.Extensions.4.0.0.nupkg.sha512", - "System.Reflection.Extensions.nuspec", "lib/DNXCore50/System.Reflection.Extensions.dll", "lib/net45/_._", "lib/netcore50/System.Reflection.Extensions.dll", @@ -14322,27 +14389,29 @@ "ref/win8/_._", "ref/wp80/_._", "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll" + "runtimes/win8-aot/lib/netcore50/System.Reflection.Extensions.dll", + "system.reflection.extensions.4.0.0.nupkg.sha512", + "system.reflection.extensions.nuspec" ] }, "System.Reflection.Metadata/1.0.22": { "sha512": "ltoL/teiEdy5W9fyYdtFr2xJ/4nHyksXLK9dkPWx3ubnj7BVfsSWxvWTg9EaJUXjhWvS/AeTtugZA1/IDQyaPQ==", "type": "package", + "path": "system.reflection.metadata/1.0.22", "files": [ - "System.Reflection.Metadata.1.0.22.nupkg.sha512", - "System.Reflection.Metadata.nuspec", "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" + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.1.0.22.nupkg.sha512", + "system.reflection.metadata.nuspec" ] }, "System.Reflection.Primitives/4.0.0": { "sha512": "n9S0XpKv2ruc17FSnaiX6nV47VfHTZ1wLjKZlAirUZCvDQCH71mVp+Ohabn0xXLh5pK2PKp45HCxkqu5Fxn/lA==", "type": "package", + "path": "system.reflection.primitives/4.0.0", "files": [ - "System.Reflection.Primitives.4.0.0.nupkg.sha512", - "System.Reflection.Primitives.nuspec", "lib/DNXCore50/System.Reflection.Primitives.dll", "lib/net45/_._", "lib/netcore50/System.Reflection.Primitives.dll", @@ -14366,15 +14435,16 @@ "ref/win8/_._", "ref/wp80/_._", "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll" + "runtimes/win8-aot/lib/netcore50/System.Reflection.Primitives.dll", + "system.reflection.primitives.4.0.0.nupkg.sha512", + "system.reflection.primitives.nuspec" ] }, "System.Reflection.TypeExtensions/4.0.0": { "sha512": "YRM/msNAM86hdxPyXcuZSzmTO0RQFh7YMEPBLTY8cqXvFPYIx2x99bOyPkuU81wRYQem1c1HTkImQ2DjbOBfew==", "type": "package", + "path": "system.reflection.typeextensions/4.0.0", "files": [ - "System.Reflection.TypeExtensions.4.0.0.nupkg.sha512", - "System.Reflection.TypeExtensions.nuspec", "lib/DNXCore50/System.Reflection.TypeExtensions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -14398,15 +14468,16 @@ "ref/net46/System.Reflection.TypeExtensions.dll", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll" + "runtimes/win8-aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.0.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" ] }, "System.Resources.ResourceManager/4.0.0": { "sha512": "qmqeZ4BJgjfU+G2JbrZt4Dk1LsMxO4t+f/9HarNY6w8pBgweO6jT+cknUH7c3qIrGvyUqraBhU45Eo6UtA0fAw==", "type": "package", + "path": "system.resources.resourcemanager/4.0.0", "files": [ - "System.Resources.ResourceManager.4.0.0.nupkg.sha512", - "System.Resources.ResourceManager.nuspec", "lib/DNXCore50/System.Resources.ResourceManager.dll", "lib/net45/_._", "lib/netcore50/System.Resources.ResourceManager.dll", @@ -14430,15 +14501,16 @@ "ref/win8/_._", "ref/wp80/_._", "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll" + "runtimes/win8-aot/lib/netcore50/System.Resources.ResourceManager.dll", + "system.resources.resourcemanager.4.0.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" ] }, "System.Runtime/4.0.20": { "sha512": "X7N/9Bz7jVPorqdVFO86ns1sX6MlQM+WTxELtx+Z4VG45x9+LKmWH0GRqjgKprUnVuwmfB9EJ9DQng14Z7/zwg==", "type": "package", + "path": "system.runtime/4.0.20", "files": [ - "System.Runtime.4.0.20.nupkg.sha512", - "System.Runtime.nuspec", "lib/DNXCore50/System.Runtime.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -14462,15 +14534,16 @@ "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.dll" + "runtimes/win8-aot/lib/netcore50/System.Runtime.dll", + "system.runtime.4.0.20.nupkg.sha512", + "system.runtime.nuspec" ] }, "System.Runtime.Extensions/4.0.10": { "sha512": "5dsEwf3Iml7d5OZeT20iyOjT+r+okWpN7xI2v+R4cgd3WSj4DeRPTvPFjDpacbVW4skCAZ8B9hxXJYgkCFKJ1A==", "type": "package", + "path": "system.runtime.extensions/4.0.10", "files": [ - "System.Runtime.Extensions.4.0.10.nupkg.sha512", - "System.Runtime.Extensions.nuspec", "lib/DNXCore50/System.Runtime.Extensions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -14494,15 +14567,16 @@ "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll" + "runtimes/win8-aot/lib/netcore50/System.Runtime.Extensions.dll", + "system.runtime.extensions.4.0.10.nupkg.sha512", + "system.runtime.extensions.nuspec" ] }, "System.Runtime.Handles/4.0.0": { "sha512": "638VhpRq63tVcQ6HDb3um3R/J2BtR1Sa96toHo6PcJGPXEPEsleCuqhBgX2gFCz0y0qkutANwW6VPPY5wQu1XQ==", "type": "package", + "path": "system.runtime.handles/4.0.0", "files": [ - "System.Runtime.Handles.4.0.0.nupkg.sha512", - "System.Runtime.Handles.nuspec", "lib/DNXCore50/System.Runtime.Handles.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -14526,15 +14600,16 @@ "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll" + "runtimes/win8-aot/lib/netcore50/System.Runtime.Handles.dll", + "system.runtime.handles.4.0.0.nupkg.sha512", + "system.runtime.handles.nuspec" ] }, "System.Runtime.InteropServices/4.0.20": { "sha512": "ZgDyBYfEnjWoz/viS6VOswA6XOkDSH2DzgbpczbW50RywhnCgTl+w3JEvtAiOGyIh8cyx1NJq80jsNBSUr8Pig==", "type": "package", + "path": "system.runtime.interopservices/4.0.20", "files": [ - "System.Runtime.InteropServices.4.0.20.nupkg.sha512", - "System.Runtime.InteropServices.nuspec", "lib/DNXCore50/System.Runtime.InteropServices.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -14558,15 +14633,16 @@ "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll" + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.dll", + "system.runtime.interopservices.4.0.20.nupkg.sha512", + "system.runtime.interopservices.nuspec" ] }, "System.Runtime.InteropServices.WindowsRuntime/4.0.0": { "sha512": "K5MGSvw/sGPKQYdOVqSpsVbHBE8HccHIDEhUNjM1lui65KGF/slNZfijGU87ggQiVXTI802ebKiOYBkwiLotow==", "type": "package", + "path": "system.runtime.interopservices.windowsruntime/4.0.0", "files": [ - "System.Runtime.InteropServices.WindowsRuntime.4.0.0.nupkg.sha512", - "System.Runtime.InteropServices.WindowsRuntime.nuspec", "lib/net45/_._", "lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll", "lib/win8/_._", @@ -14589,15 +14665,16 @@ "ref/win8/_._", "ref/wp80/_._", "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll" + "runtimes/win8-aot/lib/netcore50/System.Runtime.InteropServices.WindowsRuntime.dll", + "system.runtime.interopservices.windowsruntime.4.0.0.nupkg.sha512", + "system.runtime.interopservices.windowsruntime.nuspec" ] }, "System.Runtime.Numerics/4.0.0": { "sha512": "aAYGEOE01nabQLufQ4YO8WuSyZzOqGcksi8m1BRW8ppkmssR7en8TqiXcBkB2gTkCnKG/Ai2NQY8CgdmgZw/fw==", "type": "package", + "path": "system.runtime.numerics/4.0.0", "files": [ - "System.Runtime.Numerics.4.0.0.nupkg.sha512", - "System.Runtime.Numerics.nuspec", "lib/dotnet/System.Runtime.Numerics.dll", "lib/net45/_._", "lib/netcore50/System.Runtime.Numerics.dll", @@ -14618,15 +14695,16 @@ "ref/netcore50/System.Runtime.Numerics.dll", "ref/netcore50/System.Runtime.Numerics.xml", "ref/win8/_._", - "ref/wpa81/_._" + "ref/wpa81/_._", + "system.runtime.numerics.4.0.0.nupkg.sha512", + "system.runtime.numerics.nuspec" ] }, "System.Runtime.Serialization.Json/4.0.0": { "sha512": "emhWMQP3sdtkAhD0TOeP3FfjS57sfQMQ2sqA6f2Yj5Gd9jkHV4KsQ2TsoJjghca6d8fur7+REQ6ILBXVdGf/0g==", "type": "package", + "path": "system.runtime.serialization.json/4.0.0", "files": [ - "System.Runtime.Serialization.Json.4.0.0.nupkg.sha512", - "System.Runtime.Serialization.Json.nuspec", "lib/DNXCore50/System.Runtime.Serialization.Json.dll", "lib/net45/_._", "lib/netcore50/System.Runtime.Serialization.Json.dll", @@ -14650,15 +14728,16 @@ "ref/win8/_._", "ref/wp80/_._", "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll" + "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Json.dll", + "system.runtime.serialization.json.4.0.0.nupkg.sha512", + "system.runtime.serialization.json.nuspec" ] }, "System.Runtime.Serialization.Primitives/4.0.10": { "sha512": "NPc8DZIomf5tGjYtz/KTHI01IPcVlypfhCux32AbLPDjTotdvL8TpKRwMyQJ6Kh08yprRVH7uBD1PdJiuoFzag==", "type": "package", + "path": "system.runtime.serialization.primitives/4.0.10", "files": [ - "System.Runtime.Serialization.Primitives.4.0.10.nupkg.sha512", - "System.Runtime.Serialization.Primitives.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/dotnet/System.Runtime.Serialization.Primitives.dll", @@ -14680,15 +14759,16 @@ "ref/dotnet/zh-hant/System.Runtime.Serialization.Primitives.xml", "ref/net46/_._", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.runtime.serialization.primitives.4.0.10.nupkg.sha512", + "system.runtime.serialization.primitives.nuspec" ] }, "System.Runtime.Serialization.Xml/4.0.10": { "sha512": "xsy7XbH8RTpKoDPNcibSGCOpujsmwUmOWAby3PssqkZFpLBXUbDO2s6JKITRjxejET2g0PK8t+mdIvu3xmUuKA==", "type": "package", + "path": "system.runtime.serialization.xml/4.0.10", "files": [ - "System.Runtime.Serialization.Xml.4.0.10.nupkg.sha512", - "System.Runtime.Serialization.Xml.nuspec", "lib/DNXCore50/System.Runtime.Serialization.Xml.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -14712,15 +14792,16 @@ "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll" + "runtimes/win8-aot/lib/netcore50/System.Runtime.Serialization.Xml.dll", + "system.runtime.serialization.xml.4.0.10.nupkg.sha512", + "system.runtime.serialization.xml.nuspec" ] }, "System.Runtime.WindowsRuntime/4.0.10": { "sha512": "9w6ypdnEw8RrLRlxTbLAYrap4eL1xIQeNoOaumQVOQ8TTD/5g9FGrBtY3KLiGxAPieN9AwAAEIDkugU85Cwuvg==", "type": "package", + "path": "system.runtime.windowsruntime/4.0.10", "files": [ - "System.Runtime.WindowsRuntime.4.0.10.nupkg.sha512", - "System.Runtime.WindowsRuntime.nuspec", "lib/netcore50/System.Runtime.WindowsRuntime.dll", "lib/win81/_._", "lib/wpa81/_._", @@ -14739,15 +14820,16 @@ "ref/netcore50/System.Runtime.WindowsRuntime.xml", "ref/win81/_._", "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll" + "runtimes/win8-aot/lib/netcore50/System.Runtime.WindowsRuntime.dll", + "system.runtime.windowsruntime.4.0.10.nupkg.sha512", + "system.runtime.windowsruntime.nuspec" ] }, "System.Runtime.WindowsRuntime.UI.Xaml/4.0.0": { "sha512": "2GY3fkXBMQOyyO9ovaH46CN6MD2ck/Gvk4VNAgVDvtmfO3HXYFNd+bB05WhVcJrHKbfKZNwfwZKpYZ+OsVFsLw==", "type": "package", + "path": "system.runtime.windowsruntime.ui.xaml/4.0.0", "files": [ - "System.Runtime.WindowsRuntime.UI.Xaml.4.0.0.nupkg.sha512", - "System.Runtime.WindowsRuntime.UI.Xaml.nuspec", "lib/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll", "lib/win8/_._", "lib/wpa81/_._", @@ -14765,15 +14847,16 @@ "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.dll", "ref/netcore50/System.Runtime.WindowsRuntime.UI.Xaml.xml", "ref/win8/_._", - "ref/wpa81/_._" + "ref/wpa81/_._", + "system.runtime.windowsruntime.ui.xaml.4.0.0.nupkg.sha512", + "system.runtime.windowsruntime.ui.xaml.nuspec" ] }, "System.Security.Claims/4.0.0": { "sha512": "94NFR/7JN3YdyTH7hl2iSvYmdA8aqShriTHectcK+EbizT71YczMaG6LuqJBQP/HWo66AQyikYYM9aw+4EzGXg==", "type": "package", + "path": "system.security.claims/4.0.0", "files": [ - "System.Security.Claims.4.0.0.nupkg.sha512", - "System.Security.Claims.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/dotnet/System.Security.Claims.dll", @@ -14795,15 +14878,16 @@ "ref/dotnet/zh-hant/System.Security.Claims.xml", "ref/net46/System.Security.Claims.dll", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.security.claims.4.0.0.nupkg.sha512", + "system.security.claims.nuspec" ] }, "System.Security.Principal/4.0.0": { "sha512": "FOhq3jUOONi6fp5j3nPYJMrKtSJlqAURpjiO3FaDIV4DJNEYymWW5uh1pfxySEB8dtAW+I66IypzNge/w9OzZQ==", "type": "package", + "path": "system.security.principal/4.0.0", "files": [ - "System.Security.Principal.4.0.0.nupkg.sha512", - "System.Security.Principal.nuspec", "lib/dotnet/System.Security.Principal.dll", "lib/net45/_._", "lib/netcore50/System.Security.Principal.dll", @@ -14826,15 +14910,16 @@ "ref/netcore50/System.Security.Principal.xml", "ref/win8/_._", "ref/wp80/_._", - "ref/wpa81/_._" + "ref/wpa81/_._", + "system.security.principal.4.0.0.nupkg.sha512", + "system.security.principal.nuspec" ] }, "System.ServiceModel.Duplex/4.0.0": { "sha512": "JFeDn+IsiwAVJkNNnM7MLefJOnzYhovaHnjk3lzEnUWkYZJeAKrcgLdK6GE2GNjb5mEV8Pad/E0JcA8eCr3eWQ==", "type": "package", + "path": "system.servicemodel.duplex/4.0.0", "files": [ - "System.ServiceModel.Duplex.4.0.0.nupkg.sha512", - "System.ServiceModel.Duplex.nuspec", "lib/DNXCore50/System.ServiceModel.Duplex.dll", "lib/net45/_._", "lib/netcore50/System.ServiceModel.Duplex.dll", @@ -14853,15 +14938,16 @@ "ref/net45/_._", "ref/netcore50/System.ServiceModel.Duplex.dll", "ref/netcore50/System.ServiceModel.Duplex.xml", - "ref/win8/_._" + "ref/win8/_._", + "system.servicemodel.duplex.4.0.0.nupkg.sha512", + "system.servicemodel.duplex.nuspec" ] }, "System.ServiceModel.Http/4.0.10": { "sha512": "Vyl7lmvMlXJamtnDugoXuAgAQGSqtA7omK3zDBYByhbYeBC2hRBchgyXox7e5vEO+29TeB1IpoLWQGb7tO9h6A==", "type": "package", + "path": "system.servicemodel.http/4.0.10", "files": [ - "System.ServiceModel.Http.4.0.10.nupkg.sha512", - "System.ServiceModel.Http.nuspec", "lib/DNXCore50/System.ServiceModel.Http.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -14884,15 +14970,16 @@ "ref/dotnet/zh-hant/System.ServiceModel.Http.xml", "ref/net46/_._", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.servicemodel.http.4.0.10.nupkg.sha512", + "system.servicemodel.http.nuspec" ] }, "System.ServiceModel.NetTcp/4.0.0": { "sha512": "lV2Cdcso9jOS0KBtgHZHzTLe/Lx/ERdPcvF4dlepUie6/+BOMYTOgg2C7OdpIjp3fwUNXq8nhU+IilmEyjuf/A==", "type": "package", + "path": "system.servicemodel.nettcp/4.0.0", "files": [ - "System.ServiceModel.NetTcp.4.0.0.nupkg.sha512", - "System.ServiceModel.NetTcp.nuspec", "lib/DNXCore50/System.ServiceModel.NetTcp.dll", "lib/net45/_._", "lib/netcore50/System.ServiceModel.NetTcp.dll", @@ -14911,15 +14998,16 @@ "ref/net45/_._", "ref/netcore50/System.ServiceModel.NetTcp.dll", "ref/netcore50/System.ServiceModel.NetTcp.xml", - "ref/win8/_._" + "ref/win8/_._", + "system.servicemodel.nettcp.4.0.0.nupkg.sha512", + "system.servicemodel.nettcp.nuspec" ] }, "System.ServiceModel.Primitives/4.0.0": { "sha512": "uF5VYQWR07LgiZkzUr8qjwvqOaIAfwU566MneD4WuC14d8FLJNsAgCJUYhBGB7COjH7HTqnP9ZFmr6c+L83Stg==", "type": "package", + "path": "system.servicemodel.primitives/4.0.0", "files": [ - "System.ServiceModel.Primitives.4.0.0.nupkg.sha512", - "System.ServiceModel.Primitives.nuspec", "lib/DNXCore50/System.ServiceModel.Primitives.dll", "lib/net45/_._", "lib/netcore50/System.ServiceModel.Primitives.dll", @@ -14938,15 +15026,16 @@ "ref/net45/_._", "ref/netcore50/System.ServiceModel.Primitives.dll", "ref/netcore50/System.ServiceModel.Primitives.xml", - "ref/win8/_._" + "ref/win8/_._", + "system.servicemodel.primitives.4.0.0.nupkg.sha512", + "system.servicemodel.primitives.nuspec" ] }, "System.ServiceModel.Security/4.0.0": { "sha512": "sPVzsnd8w/TJsW/4sYA9eIGP+RtlpN0AhKLGKf9ywdGGmHPi0kkuX2mx412dM3GN0e4oifuISwvZqby/sI8Feg==", "type": "package", + "path": "system.servicemodel.security/4.0.0", "files": [ - "System.ServiceModel.Security.4.0.0.nupkg.sha512", - "System.ServiceModel.Security.nuspec", "lib/DNXCore50/System.ServiceModel.Security.dll", "lib/net45/_._", "lib/netcore50/System.ServiceModel.Security.dll", @@ -14965,15 +15054,16 @@ "ref/net45/_._", "ref/netcore50/System.ServiceModel.Security.dll", "ref/netcore50/System.ServiceModel.Security.xml", - "ref/win8/_._" + "ref/win8/_._", + "system.servicemodel.security.4.0.0.nupkg.sha512", + "system.servicemodel.security.nuspec" ] }, "System.Text.Encoding/4.0.10": { "sha512": "fNlSFgy4OuDlJrP9SFFxMlaLazq6ipv15sU5TiEgg9UCVnA/OgoVUfymFp4AOk1jOkW5SVxWbeeIUptcM+m/Vw==", "type": "package", + "path": "system.text.encoding/4.0.10", "files": [ - "System.Text.Encoding.4.0.10.nupkg.sha512", - "System.Text.Encoding.nuspec", "lib/DNXCore50/System.Text.Encoding.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -14997,15 +15087,16 @@ "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll" + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.dll", + "system.text.encoding.4.0.10.nupkg.sha512", + "system.text.encoding.nuspec" ] }, "System.Text.Encoding.CodePages/4.0.0": { "sha512": "ZHBTr1AXLjY9OuYR7pKx5xfN6QFye1kgd5QAbGrvfCOu7yxRnJs3VUaxERe1fOlnF0mi/xD/Dvb3T3x3HNuPWQ==", "type": "package", + "path": "system.text.encoding.codepages/4.0.0", "files": [ - "System.Text.Encoding.CodePages.4.0.0.nupkg.sha512", - "System.Text.Encoding.CodePages.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/dotnet/System.Text.Encoding.CodePages.dll", @@ -15025,15 +15116,16 @@ "ref/dotnet/zh-hans/System.Text.Encoding.CodePages.xml", "ref/dotnet/zh-hant/System.Text.Encoding.CodePages.xml", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.text.encoding.codepages.4.0.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec" ] }, "System.Text.Encoding.Extensions/4.0.10": { "sha512": "TZvlwXMxKo3bSRIcsWZLCIzIhLbvlz+mGeKYRZv/zUiSoQzGOwkYeBu6hOw2XPQgKqT0F4Rv8zqKdvmp2fWKYg==", "type": "package", + "path": "system.text.encoding.extensions/4.0.10", "files": [ - "System.Text.Encoding.Extensions.4.0.10.nupkg.sha512", - "System.Text.Encoding.Extensions.nuspec", "lib/DNXCore50/System.Text.Encoding.Extensions.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -15057,15 +15149,16 @@ "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll" + "runtimes/win8-aot/lib/netcore50/System.Text.Encoding.Extensions.dll", + "system.text.encoding.extensions.4.0.10.nupkg.sha512", + "system.text.encoding.extensions.nuspec" ] }, "System.Text.RegularExpressions/4.0.10": { "sha512": "0vDuHXJePpfMCecWBNOabOKCvzfTbFMNcGgklt3l5+RqHV5SzmF7RUVpuet8V0rJX30ROlL66xdehw2Rdsn2DA==", "type": "package", + "path": "system.text.regularexpressions/4.0.10", "files": [ - "System.Text.RegularExpressions.4.0.10.nupkg.sha512", - "System.Text.RegularExpressions.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/dotnet/System.Text.RegularExpressions.dll", @@ -15087,15 +15180,16 @@ "ref/dotnet/zh-hant/System.Text.RegularExpressions.xml", "ref/net46/_._", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.text.regularexpressions.4.0.10.nupkg.sha512", + "system.text.regularexpressions.nuspec" ] }, "System.Threading/4.0.10": { "sha512": "0w6pRxIEE7wuiOJeKabkDgeIKmqf4ER1VNrs6qFwHnooEE78yHwi/bKkg5Jo8/pzGLm0xQJw0nEmPXt1QBAIUA==", "type": "package", + "path": "system.threading/4.0.10", "files": [ - "System.Threading.4.0.10.nupkg.sha512", - "System.Threading.nuspec", "lib/DNXCore50/System.Threading.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -15119,15 +15213,16 @@ "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Threading.dll" + "runtimes/win8-aot/lib/netcore50/System.Threading.dll", + "system.threading.4.0.10.nupkg.sha512", + "system.threading.nuspec" ] }, "System.Threading.Overlapped/4.0.0": { "sha512": "X5LuQFhM5FTqaez3eXKJ9CbfSGZ7wj6j4hSVtxct3zmwQXLqG95qoWdvILcgN7xtrDOBIFtpiyDg0vmoI0jE2A==", "type": "package", + "path": "system.threading.overlapped/4.0.0", "files": [ - "System.Threading.Overlapped.4.0.0.nupkg.sha512", - "System.Threading.Overlapped.nuspec", "lib/DNXCore50/System.Threading.Overlapped.dll", "lib/net46/System.Threading.Overlapped.dll", "lib/netcore50/System.Threading.Overlapped.dll", @@ -15142,15 +15237,16 @@ "ref/dotnet/ru/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" + "ref/net46/System.Threading.Overlapped.dll", + "system.threading.overlapped.4.0.0.nupkg.sha512", + "system.threading.overlapped.nuspec" ] }, "System.Threading.Tasks/4.0.10": { "sha512": "NOwJGDfk79jR0bnzosbXLVD/PdI8KzBeESoa3CofEM5v9R5EBfcI0Jyf18stx+0IYV9okmDIDxVtxq9TbnR9bQ==", "type": "package", + "path": "system.threading.tasks/4.0.10", "files": [ - "System.Threading.Tasks.4.0.10.nupkg.sha512", - "System.Threading.Tasks.nuspec", "lib/DNXCore50/System.Threading.Tasks.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -15174,29 +15270,31 @@ "ref/net46/_._", "ref/xamarinios10/_._", "ref/xamarinmac20/_._", - "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll" + "runtimes/win8-aot/lib/netcore50/System.Threading.Tasks.dll", + "system.threading.tasks.4.0.10.nupkg.sha512", + "system.threading.tasks.nuspec" ] }, "System.Threading.Tasks.Dataflow/4.5.25": { "sha512": "Y5/Dj+tYlDxHBwie7bFKp3+1uSG4vqTJRF7Zs7kaUQ3ahYClffCTxvgjrJyPclC+Le55uE7bMLgjZQVOQr3Jfg==", "type": "package", + "path": "system.threading.tasks.dataflow/4.5.25", "files": [ - "System.Threading.Tasks.Dataflow.4.5.25.nupkg.sha512", - "System.Threading.Tasks.Dataflow.nuspec", "lib/dotnet/System.Threading.Tasks.Dataflow.XML", "lib/dotnet/System.Threading.Tasks.Dataflow.dll", "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.XML", "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.dll", "lib/portable-net45+win8+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.dll", + "system.threading.tasks.dataflow.4.5.25.nupkg.sha512", + "system.threading.tasks.dataflow.nuspec" ] }, "System.Threading.Tasks.Parallel/4.0.0": { "sha512": "GXDhjPhF3nE4RtDia0W6JR4UMdmhOyt9ibHmsNV6GLRT4HAGqU636Teo4tqvVQOFp2R6b1ffxPXiRaoqtzGxuA==", "type": "package", + "path": "system.threading.tasks.parallel/4.0.0", "files": [ - "System.Threading.Tasks.Parallel.4.0.0.nupkg.sha512", - "System.Threading.Tasks.Parallel.nuspec", "lib/dotnet/System.Threading.Tasks.Parallel.dll", "lib/net45/_._", "lib/netcore50/System.Threading.Tasks.Parallel.dll", @@ -15217,15 +15315,16 @@ "ref/netcore50/System.Threading.Tasks.Parallel.dll", "ref/netcore50/System.Threading.Tasks.Parallel.xml", "ref/win8/_._", - "ref/wpa81/_._" + "ref/wpa81/_._", + "system.threading.tasks.parallel.4.0.0.nupkg.sha512", + "system.threading.tasks.parallel.nuspec" ] }, "System.Threading.Timer/4.0.0": { "sha512": "BIdJH5/e4FnVl7TkRUiE3pWytp7OYiRUGtwUbyLewS/PhKiLepFetdtlW+FvDYOVn60Q2NMTrhHhJ51q+sVW5g==", "type": "package", + "path": "system.threading.timer/4.0.0", "files": [ - "System.Threading.Timer.4.0.0.nupkg.sha512", - "System.Threading.Timer.nuspec", "lib/DNXCore50/System.Threading.Timer.dll", "lib/net451/_._", "lib/netcore50/System.Threading.Timer.dll", @@ -15247,15 +15346,16 @@ "ref/netcore50/System.Threading.Timer.xml", "ref/win81/_._", "ref/wpa81/_._", - "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll" + "runtimes/win8-aot/lib/netcore50/System.Threading.Timer.dll", + "system.threading.timer.4.0.0.nupkg.sha512", + "system.threading.timer.nuspec" ] }, "System.Xml.ReaderWriter/4.0.10": { "sha512": "VdmWWMH7otrYV7D+cviUo7XjX0jzDnD/lTGSZTlZqfIQ5PhXk85j+6P0TK9od3PnOd5ZIM+pOk01G/J+3nh9/w==", "type": "package", + "path": "system.xml.readerwriter/4.0.10", "files": [ - "System.Xml.ReaderWriter.4.0.10.nupkg.sha512", - "System.Xml.ReaderWriter.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/dotnet/System.Xml.ReaderWriter.dll", @@ -15277,15 +15377,16 @@ "ref/dotnet/zh-hant/System.Xml.ReaderWriter.xml", "ref/net46/_._", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.xml.readerwriter.4.0.10.nupkg.sha512", + "system.xml.readerwriter.nuspec" ] }, "System.Xml.XDocument/4.0.10": { "sha512": "+ej0g0INnXDjpS2tDJsLO7/BjyBzC+TeBXLeoGnvRrm4AuBH9PhBjjZ1IuKWOhCkxPkFognUOKhZHS2glIOlng==", "type": "package", + "path": "system.xml.xdocument/4.0.10", "files": [ - "System.Xml.XDocument.4.0.10.nupkg.sha512", - "System.Xml.XDocument.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/dotnet/System.Xml.XDocument.dll", @@ -15307,15 +15408,16 @@ "ref/dotnet/zh-hant/System.Xml.XDocument.xml", "ref/net46/_._", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.xml.xdocument.4.0.10.nupkg.sha512", + "system.xml.xdocument.nuspec" ] }, "System.Xml.XmlDocument/4.0.0": { "sha512": "H5qTx2+AXgaKE5wehU1ZYeYPFpp/rfFh69/937NvwCrDqbIkvJRmIFyKKpkoMI6gl9hGfuVizfIudVTMyowCXw==", "type": "package", + "path": "system.xml.xmldocument/4.0.0", "files": [ - "System.Xml.XmlDocument.4.0.0.nupkg.sha512", - "System.Xml.XmlDocument.nuspec", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", "lib/dotnet/System.Xml.XmlDocument.dll", @@ -15337,15 +15439,16 @@ "ref/dotnet/zh-hant/System.Xml.XmlDocument.xml", "ref/net46/System.Xml.XmlDocument.dll", "ref/xamarinios10/_._", - "ref/xamarinmac20/_._" + "ref/xamarinmac20/_._", + "system.xml.xmldocument.4.0.0.nupkg.sha512", + "system.xml.xmldocument.nuspec" ] }, "System.Xml.XmlSerializer/4.0.10": { "sha512": "OKhE6vruk88z/hl0lmfrMvXteTASgJUagu6PT6S10i9uLbvDR3pTwB6jVgiwa2D2qtTB+eneZbS9jljhPXhTtg==", "type": "package", + "path": "system.xml.xmlserializer/4.0.10", "files": [ - "System.Xml.XmlSerializer.4.0.10.nupkg.sha512", - "System.Xml.XmlSerializer.nuspec", "lib/DNXCore50/System.Xml.XmlSerializer.dll", "lib/MonoAndroid10/_._", "lib/MonoTouch10/_._", @@ -15370,7 +15473,9 @@ "ref/xamarinios10/_._", "ref/xamarinmac20/_._", "runtime.json", - "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll" + "runtimes/win8-aot/lib/netcore50/System.Xml.XmlSerializer.dll", + "system.xml.xmlserializer.4.0.10.nupkg.sha512", + "system.xml.xmlserializer.nuspec" ] } }, @@ -15378,6 +15483,59 @@ "": [ "Microsoft.NETCore.UniversalWindowsPlatform >= 5.0.0" ], - "UAP,Version=v10.0": [] + "UAP,Version=v10.0.10240": [] + }, + "packageFolders": { + "C:\\Users\\srdja\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackagesFallback\\": {} + }, + "project": { + "restore": { + "projectUniqueName": "C:\\ws\\git\\ufr-examples-windows-iot-c_sharp\\Test_uFCoder_lib.csproj", + "projectName": "Test_uFCoder_lib", + "projectPath": "C:\\ws\\git\\ufr-examples-windows-iot-c_sharp\\Test_uFCoder_lib.csproj", + "projectJsonPath": "C:\\ws\\git\\ufr-examples-windows-iot-c_sharp\\project.json", + "packagesPath": "C:\\Users\\srdja\\.nuget\\packages\\", + "outputPath": "C:\\ws\\git\\ufr-examples-windows-iot-c_sharp\\obj\\", + "projectStyle": "ProjectJson", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackagesFallback\\" + ], + "configFilePaths": [ + "C:\\Users\\srdja\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.Fallback.config" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + } + }, + "dependencies": { + "Microsoft.NETCore.UniversalWindowsPlatform": "[5.0.0, )" + }, + "frameworks": { + "uap10.0.10240": {} + }, + "runtimes": { + "win10-arm": { + "#import": [] + }, + "win10-arm-aot": { + "#import": [] + }, + "win10-x64": { + "#import": [] + }, + "win10-x64-aot": { + "#import": [] + }, + "win10-x86": { + "#import": [] + }, + "win10-x86-aot": { + "#import": [] + } + } } } \ No newline at end of file diff --git a/uFCoder-arm.dll b/uFCoder-arm.dll index 34e64e83ccf46d5b04677c0625a9d4c43dc122c4..50be2c19ee786dfd200bde8d5e966f0d3e4d30f7 100644 Binary files a/uFCoder-arm.dll and b/uFCoder-arm.dll differ diff --git a/uFCoder-x86.dll b/uFCoder-x86.dll new file mode 100644 index 0000000000000000000000000000000000000000..182ef7cdf78ee2701639a537f02bf43a38de3b1a Binary files /dev/null and b/uFCoder-x86.dll differ diff --git a/uFCoder-x86_64.dll b/uFCoder-x86_64.dll new file mode 100644 index 0000000000000000000000000000000000000000..422cd7738f219a260acaf984d5c99585a49ebff8 Binary files /dev/null and b/uFCoder-x86_64.dll differ diff --git a/uFCoder.cs b/uFCoder.cs index 984df24e86fd8c7d3c1f62d9d232fb2f71b150c5..1d468aeed0bebd519e68fbc8b4a3d504b4900e20 100644 --- a/uFCoder.cs +++ b/uFCoder.cs @@ -141,12 +141,12 @@ namespace DL_uFCoder public static class uFCoder { //-------------------------------------------------------------------------------------------------------------- -#if _WIN32 - const string DLL_NAME = "uFCoder-x86.dll"; // for x86 target -#elif _WIN64 - const string DLL_NAME = "uFCoder-x86_64.dll"; // for x64 target -#else // #elif _ARM - const string DLL_NAME = "uFCoder-arm.dll"; // for ARM target +#if _WIN32 // define in project configuration for x86 target + const string DLL_NAME = "uFCoder-x86.dll"; +#elif _WIN64 // define in project configuration for x64 target + const string DLL_NAME = "uFCoder-x86_64.dll"; +#else // define in project configuration for ARM target + const string DLL_NAME = "uFCoder-arm.dll"; #endif //-------------------------------------------------------------------------------------------------------------- diff --git a/win_iot_serial.dll b/win_iot_serial.dll deleted file mode 100644 index 5b85cec9f50294481c2f6bda5cfa5d9c8d313bfd..0000000000000000000000000000000000000000 Binary files a/win_iot_serial.dll and /dev/null differ diff --git a/win_serial-arm.dll b/win_serial-arm.dll new file mode 100644 index 0000000000000000000000000000000000000000..e5805b0f1946650979fb1d4b374117a271e61ab9 Binary files /dev/null and b/win_serial-arm.dll differ diff --git a/win_serial-x86.dll b/win_serial-x86.dll new file mode 100644 index 0000000000000000000000000000000000000000..5ec745bbd2483794b66f15889d8df9ab08adaa78 Binary files /dev/null and b/win_serial-x86.dll differ diff --git a/win_serial-x86_64.dll b/win_serial-x86_64.dll new file mode 100644 index 0000000000000000000000000000000000000000..38d15369d78e7aba1cb836e4953f64beb51e3424 Binary files /dev/null and b/win_serial-x86_64.dll differ